-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge content of preventive stop criterion into type
Signed-off-by: Pauline Jean-Marie <[email protected]>
- Loading branch information
Pauline Jean-Marie
committed
Oct 2, 2024
1 parent
7f7e969
commit fd71fe6
Showing
132 changed files
with
192 additions
and
275 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
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
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
3 changes: 1 addition & 2 deletions
3
ra-optimisation/rao-api/src/test/resources/RaoParametersWithExtension_v2.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
3 changes: 1 addition & 2 deletions
3
ra-optimisation/rao-api/src/test/resources/RaoParametersWithLoopFlowError_v2.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
81 changes: 81 additions & 0 deletions
81
ra-optimisation/rao-api/src/test/resources/RaoParametersWithObjFuncTypeError_v2.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,81 @@ | ||
{ | ||
"version" : "2.5", | ||
"objective-function" : { | ||
"type" : "WRONG", | ||
"curative-min-obj-improvement" : 0.0 | ||
}, | ||
"range-actions-optimization" : { | ||
"max-mip-iterations" : 10, | ||
"pst-penalty-cost" : 0.01, | ||
"pst-sensitivity-threshold" : 1.0E-6, | ||
"pst-model" : "CONTINUOUS", | ||
"hvdc-penalty-cost" : 0.001, | ||
"hvdc-sensitivity-threshold" : 1.0E-6, | ||
"injection-ra-penalty-cost" : 0.001, | ||
"injection-ra-sensitivity-threshold" : 1.0E-6, | ||
"linear-optimization-solver" : { | ||
"solver" : "CBC", | ||
"relative-mip-gap" : 1.0E-4, | ||
"solver-specific-parameters" : null | ||
} | ||
}, | ||
"topological-actions-optimization" : { | ||
"max-preventive-search-tree-depth" : 2147483647, | ||
"max-auto-search-tree-depth" : 2147483647, | ||
"max-curative-search-tree-depth" : 2147483647, | ||
"predefined-combinations" : [ ], | ||
"relative-minimum-impact-threshold" : 0.0, | ||
"absolute-minimum-impact-threshold" : 0.0, | ||
"skip-actions-far-from-most-limiting-element" : false, | ||
"max-number-of-boundaries-for-skipping-actions" : 2 | ||
}, | ||
"second-preventive-rao" : { | ||
"execution-condition" : "DISABLED", | ||
"re-optimize-curative-range-actions" : false, | ||
"hint-from-first-preventive-rao" : false | ||
}, | ||
"not-optimized-cnecs" : { | ||
"do-not-optimize-curative-cnecs-for-tsos-without-cras" : false | ||
}, | ||
"load-flow-and-sensitivity-computation" : { | ||
"load-flow-provider" : "OpenLoadFlow", | ||
"sensitivity-provider" : "OpenLoadFlow", | ||
"sensitivity-failure-overcost" : 10000.0, | ||
"sensitivity-parameters" : { | ||
"version" : "1.0", | ||
"load-flow-parameters" : { | ||
"version" : "1.8", | ||
"voltageInitMode" : "UNIFORM_VALUES", | ||
"transformerVoltageControlOn" : false, | ||
"phaseShifterRegulationOn" : false, | ||
"useReactiveLimits" : true, | ||
"twtSplitShuntAdmittance" : false, | ||
"shuntCompensatorVoltageControlOn" : false, | ||
"readSlackBus" : true, | ||
"writeSlackBus" : true, | ||
"dc" : false, | ||
"distributedSlack" : true, | ||
"balanceType" : "PROPORTIONAL_TO_GENERATION_P_MAX", | ||
"dcUseTransformerRatio" : true, | ||
"countriesToBalance" : [ ], | ||
"connectedComponentMode" : "MAIN", | ||
"hvdcAcEmulation" : true | ||
} | ||
} | ||
}, | ||
"multi-threading" : { | ||
"contingency-scenarios-in-parallel" : 1, | ||
"preventive-leaves-in-parallel" : 1, | ||
"auto-leaves-in-parallel" : 1, | ||
"curative-leaves-in-parallel" : 1 | ||
}, | ||
"extensions" : { | ||
"loop-flow-parameters" : { | ||
"acceptable-increase" : 0.0, | ||
"ptdf-approximation" : "FIXED_PTDF", | ||
"constraint-adjustment-coefficient" : 0.0, | ||
"violation-cost" : 0.0, | ||
"countries" : [ ] | ||
} | ||
} | ||
} |
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
3 changes: 1 addition & 2 deletions
3
ra-optimisation/rao-api/src/test/resources/RaoParametersWithWrongField_v2.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
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
3 changes: 1 addition & 2 deletions
3
ra-optimisation/rao-api/src/test/resources/RaoParameters_config_withOLFParams.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
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
3 changes: 1 addition & 2 deletions
3
ra-optimisation/rao-api/src/test/resources/RaoParameters_default_v2.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
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
3 changes: 1 addition & 2 deletions
3
ra-optimisation/rao-api/src/test/resources/RaoParameters_v2.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
1 change: 0 additions & 1 deletion
1
ra-optimisation/rao-api/src/test/resources/config_withExtensions.yml
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
2 changes: 1 addition & 1 deletion
2
ra-optimisation/rao-api/src/test/resources/config_withPartialExtensions.yml
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
1 change: 0 additions & 1 deletion
1
ra-optimisation/rao-api/src/test/resources/config_withoutExtensions.yml
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
Oops, something went wrong.