-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework missing voltage level test and use a simple network instead of…
… a modified conformity one (#3180) Signed-off-by: Romain Courtier <[email protected]>
- Loading branch information
Showing
4 changed files
with
45 additions
and
4,499 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
40 changes: 40 additions & 0 deletions
40
cgmes/cgmes-completion/src/test/resources/missing_voltagelevel.xml
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,40 @@ | ||
<rdf:RDF xmlns:cim="http://iec.ch/TC57/2013/CIM-schema-cim16#" xmlns:md="http://iec.ch/TC57/61970-552/ModelDescription/1#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | ||
<md:FullModel rdf:about="urn:uuid:ModelID"> | ||
<md:Model.scenarioTime>2021-03-01T23:00:00Z</md:Model.scenarioTime> | ||
<md:Model.created>2021-03-02T10:22:58Z</md:Model.created> | ||
<md:Model.description>Nodes containers mapping</md:Model.description> | ||
<md:Model.version>001</md:Model.version> | ||
<md:Model.profile>http://entsoe.eu/CIM/EquipmentCore/3/1</md:Model.profile> | ||
<md:Model.profile>http://entsoe.eu/CIM/EquipmentOperation/3/1</md:Model.profile> | ||
<md:Model.modelingAuthoritySet>powsybl.org</md:Model.modelingAuthoritySet> | ||
</md:FullModel> | ||
<cim:GeographicalRegion rdf:ID="_GR"> | ||
<cim:IdentifiedObject.name>Geographical region</cim:IdentifiedObject.name> | ||
</cim:GeographicalRegion> | ||
<cim:SubGeographicalRegion rdf:ID="_SGR"> | ||
<cim:IdentifiedObject.name>Subgeographical region</cim:IdentifiedObject.name> | ||
<cim:SubGeographicalRegion.Region rdf:resource="#_GR"/> | ||
</cim:SubGeographicalRegion> | ||
<cim:Substation rdf:ID="_ST"> | ||
<cim:IdentifiedObject.name>Substation</cim:IdentifiedObject.name> | ||
<cim:Substation.Region rdf:resource="#_SGR"/> | ||
</cim:Substation> | ||
<cim:ConnectivityNode rdf:ID="_CN"> | ||
<cim:IdentifiedObject.name>Node</cim:IdentifiedObject.name> | ||
<cim:ConnectivityNode.ConnectivityNodeContainer rdf:resource="#_VL"/> | ||
</cim:ConnectivityNode> | ||
<cim:BusbarSection rdf:ID="_BBS"> | ||
<cim:IdentifiedObject.name>Busbar section</cim:IdentifiedObject.name> | ||
<cim:Equipment.EquipmentContainer rdf:resource="#VL" /> | ||
<cim:ConductingEquipment.BaseVoltage rdf:resource="#_BV" /> | ||
</cim:BusbarSection> | ||
<cim:Terminal rdf:ID="_T_BBS"> | ||
<cim:IdentifiedObject.name>Terminal BBS</cim:IdentifiedObject.name> | ||
<cim:Terminal.ConductingEquipment rdf:resource="#_BBS"/> | ||
<cim:Terminal.ConnectivityNode rdf:resource="#_CN"/> | ||
</cim:Terminal> | ||
<cim:BaseVoltage rdf:ID="_BV"> | ||
<cim:IdentifiedObject.name>110 kV</cim:IdentifiedObject.name> | ||
<cim:BaseVoltage.nominalVoltage>110</cim:BaseVoltage.nominalVoltage> | ||
</cim:BaseVoltage> | ||
</rdf:RDF> |
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.