-
Notifications
You must be signed in to change notification settings - Fork 41
Migration guide v4.6.0
From this version, the method PropertyBags dcTerminalsTP()
of the interface CgmesModel
does not exist anymore. Please delete the implementation if you are using a custom implementation of CgmesModel
.
From this version, a new method boolean removeProperty(String key)
has been added on the interface Identifiable
. Please add an implementation for this method if you are using a custom implementation for IIDM modeling.
From this version, the parameter readSlackBus
in LoadFlowParameters
is set to true
by default: a load-flow relying on this parameter would now read the slack bus of the network if present by default.
From this version, CGMES specifications for tap changers are now stored in extensions and not in properties anymore. You will need to implement these extensions if you use a custom IIDM implementation and CGMES import.
From this version, in order to create extensions, you can use:
equipment.new[ExtensionName]....add()
or
equipment.[extensionName]Builder()....add()
which will allow you not to use the explicit package name. If you are using a custom network extension, think about implementing the getExtensionName()
method in the ExtensionProviderAdder
.