-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All CGMES models after version 3 can be considered node/breaker #2067
Conversation
Signed-off-by: Luma <zamarrenolm@aia.es>
@@ -45,6 +45,7 @@ private CgmesNamespace() { | |||
private static final String CIM_16_SV_PROFILE = "http://entsoe.eu/CIM/StateVariables/4/1"; | |||
private static final String CIM_16_SSH_PROFILE = "http://entsoe.eu/CIM/SteadyStateHypothesis/1/1"; | |||
|
|||
private static final String CGMES_EQ_3_OR_GREATER_PREFIX = "http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this used? Does it exist? (Just for information)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, to check if an EQ file is version 3 or later (when checking if all loaded EQs are CGMES 3), CgmesModelTripleStore::allEqCgmes3OrGreater
cgmes/cgmes-model/src/main/java/com/powsybl/cgmes/model/CgmesNamespace.java
Outdated
Show resolved
Hide resolved
Signed-off-by: VEDELAGO MIORA <miora.ralambotiana@rte-france.com>
Kudos, SonarCloud Quality Gate passed! |
Signed-off-by: Luma <zamarrenolm@aia.es> Co-authored-by: miovd <miora.ralambotiana@rte-france.com>
Signed-off-by: Luma zamarrenolm@aia.es
Please check if the PR fulfills these requirements (please use
'[x]'
to check the checkboxes, or submit the PR and then click the checkboxes)Does this PR already have an issue describing the problem ? If so, link to this issue using
'#XXX'
and skip the restCGMES 3 EQ profile enforces use of
ConnectivityNodes
even for bus/branch models, so it is safe to assume we can process any CGMES 3 or later usingConnectivityNodes
instead of relying onTopologicalNodes
. If model is bus/branch, internal connections between the equipment and the busbar sections associated to connectivity nodes will be created.What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
What is the current behavior? (You can also link to an open issue here)
What is the new behavior (if this is a feature change)?
Does this PR introduce a breaking change or deprecate an API? If yes, check the following:
Other information:
(if any of the questions/checkboxes don't apply, please delete them entirely)