-
Notifications
You must be signed in to change notification settings - Fork 43
Migration guide v6.1.0
When creating a coupling device, each side of the coupling device is now connected to more bars than previously. The logic depends on whether the sections on which the user asks the coupling device to be connected has a position defined or not:
- If a section has no position defined, the corresponding side of the coupling device will only be connected to this section.
- If a section has a position defined but the opposite side has no position defined, the corresponding side of the coupling device will be connected to all the bars parallel to the section.
- If both sections have positions defined but have different section index, each one will be connected to every bar parallel to the respective section.
- If both sections have positions defined and the same section index, each side will be connected to every bar except one. If the first side corresponds to the first busbar index or the second side corresponds to the last busbar index, the first side will be connected to every bar except the last one while the second side will be connected to every bar except the first one. If not, it will be the opposite.
TODO
TODO
TODO
A LoadFlowResult
introduced a dedicated object to store a slack bus result. In a SlackBusResult
, you have access to the id
of the slack bus used during the calculation and the associated active power mismatch in MW
(getActivePowerMismatch()
). As several slack buses car be used in a single component calculation, a LoadFlowResult
outputs a list of SlackBusResult
.
New status NO_CALCULATION
has been added, meaning that the component was not calculated, e.g. de-energized component without any voltage support. SOLVER_FAILED
status has been removed, please use FAILED
status for non convergence. For more details about status, a dedicated String
field has been added: use getStatusText
for a more detailed description.
And finally, load flow results give access now to the angle reference bus id through the method getReferenceBusId()
.
Methods getSlackBusId()
, getSlackBusActivePowerMismatch()
and isOk()
are deprecated.
TODO or delete
TODO or delete
TODO or delete
The following deprecated methods have been deleted:
TODO()
The following deprecated enum types have been deleted:
TODO