Skip to content

IIDM & XIIDM 1.8 evolutions

miovd edited this page Jun 16, 2022 · 1 revision

Fictitious injections

It is now possible to store fictitious injection (active and reactive power) at nodes' or buses' level in a network. The attributes' names are fictitiousP0 and fictitiousQ0, and they can be set as below:

// Set 10 MW in active power at the node 0 of the node-breaker view of the voltage level
voltageLevel.getNodeBreakerView().setFictitiousP0(0, 10);

// Set 10 MW in active power at the bus B of the bus-breaker view of the voltage level
Bus bus = voltageLevel.getBusBreakerView().getBus("B");
bus.setFictitiousP0(10);

Please note that these injections are not taken into account in open-loadflow yet.

Use targetP/targetQ instead of p0/q0 for IIDM Battery

p0 and q0 attributes of Battery have been respectively replaced by targetP and targetQ. The previous associated getters and setters have been deprecated.

Clone this wiki locally