-
Notifications
You must be signed in to change notification settings - Fork 43
Migration guide v6.6.0
-
Conversion.getFictitiousVoltageLevelForNodeInContainer(String containerId, String nodeId)
was removed.
Instead, useSubstationIdMapping.getFictitiousVoltageLevelForContainer(String containerId, String nodeId)
. -
CgmesModel
has two new methods that should be implemented if you have classes implementing this interface:Optional<String> node(CgmesTerminal t, boolean nodeBreaker);
Optional<CgmesContainer> nodeContainer(String nodeId);
-
SubstationIdMapping
was renamed toNodeContainerMapping
.
As a consequence, methodsubstationIdMapping()
ofcom.powsybl.cgmes.conversion.Context
was renamed tonodeContainerMapping()
.
The following methods of CgmesConformity1ModifiedCatalog
, were removed:
miniGridNodeBreakerMissingVoltageLevel()
miniNodeBreakerCimLine()
miniNodeBreakerSwitchBetweenVoltageLevelsOpen()
miniNodeBreakerJoinVoltageLevelSwitch()
miniNodeBreakerJoinVoltageLevelTx()
miniNodeBreakerSubstationNode()
They were used for unit testing, but they relied on big CGMES files ; this slowed the tests execution. If you still need to use them, you can retrieve the methods at this URL and the corresponding CGMES files in this directory.
Starting from this release, default implementations for addVertexIfNotPresent
and vertexExists
methods have been removed from UndirectedGraph
interface.