-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from trolie/168-rt-slim
add slim RT limits snapshot and proposal
- Loading branch information
Showing
11 changed files
with
134 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
docs/_data/components/schemas/array-max-emergency-ratings.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
slim: | ||
type: array | ||
title: Slim Period | ||
minItems: 1 | ||
maxItems: 11 # 1 continuous + 10 max emergency durations | ||
items: | ||
type: number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
proposal: | ||
type: object | ||
description: > | ||
Real-time ratings data for a segment. | ||
allOf: | ||
- type: object | ||
properties: | ||
resource-id: | ||
$ref: ./resource-id.yaml | ||
- $ref: ./limit-proposal.yaml | ||
required: | ||
- resource-id | ||
- continuous-operating-limit | ||
- emergency-operating-limits |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
docs/example-narratives/examples/realtime-limit-set-slim.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"snapshot-header": { | ||
"snapshot-provenance": { | ||
"provider": "X-AMPL", | ||
"last-updated": "2023-07-12T15:05:43.044267100-07:00", | ||
"origin-id": "//trolie.example.com/snapshots/2024-08-05T11%3a00%3a00-07%3a00" | ||
}, | ||
"default-emergency-durations": [ | ||
{ | ||
"name": "emergency", | ||
"duration-minutes": 240 | ||
} | ||
], | ||
"power-system-resources": [ | ||
{ "resource-id": "8badf00d", | ||
"alternate-identifiers": [ | ||
{ "name": "segmentX", "authority": "TO-NERC-ID" }, | ||
{ "name": "LINE1 SEG-X", "authority": "RC-NERC-ID", "mrid": "8badf00d" } | ||
] | ||
}, | ||
{ "resource-id": "f34d3d", | ||
"alternate-identifiers": [ | ||
{ "name": "segmentY", "authority": "TO-NERC-ID" }, | ||
{ "name": "LINE2 SEG-Y", "authority": "RC-NERC-ID", "mrid": "8badf00d" } | ||
] | ||
} | ||
] | ||
}, | ||
"limits": [ | ||
[ 160, 170 ], | ||
[ 155, 160 ] | ||
] | ||
} |
33 changes: 33 additions & 0 deletions
33
docs/example-narratives/examples/realtime-proposal-slim-patch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"proposal-header" : { | ||
"source": { | ||
"last-updated": "2025-10-31T15:05:43.044267100-07:00", | ||
"provider": "UTILITY-A", | ||
"origin-id": "5aeacb25-9b65-4738-8a00-ac10afa63640" | ||
}, | ||
"default-emergency-durations": [ | ||
{ | ||
"name": "emergency", | ||
"duration-minutes": 240 | ||
} | ||
], | ||
"power-system-resources": [ | ||
{ "resource-id": "8badf00d", | ||
"alternate-identifiers": [ | ||
{"name": "segmentX", "authority": "TO-NERC-ID"}, | ||
{"name": "LINE1 SEG-X", "authority": "RC-NERC-ID", "mrid": "8badf00d"} | ||
] | ||
}, | ||
{ "resource-id": "f34d3d", | ||
"alternate-identifiers": [ | ||
{"name": "segmentY", "authority": "TO-NERC-ID"}, | ||
{"name": "LINE2 SEG-Y", "authority": "RC-NERC-ID", "mrid": "8badf00d"} | ||
] | ||
} | ||
] | ||
}, | ||
"ratings": [ | ||
[160, 170], | ||
[155, 160] | ||
] | ||
} |