Package com.powsybl.iidm.network
Interface LoadAdder
-
- All Superinterfaces:
IdentifiableAdder<LoadAdder>
,InjectionAdder<LoadAdder>
- All Known Implementing Classes:
LoadAdderAdapter
public interface LoadAdder extends InjectionAdder<LoadAdder>
To create a load, from aVoltageLevel
instance call theVoltageLevel.newLoad()
method to get a load builder instance.Example:
VoltageLevel vl = ... Load l = vl.newLoad() .setId("l1") ... .add();
- Author:
- Geoffroy Jamgotchian
- See Also:
Load
,VoltageLevel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Load
add()
LoadAdder
setLoadType(LoadType loadType)
LoadAdder
setP0(double p0)
LoadAdder
setQ0(double q0)
-
Methods inherited from interface com.powsybl.iidm.network.IdentifiableAdder
setEnsureIdUnicity, setFictitious, setId, setName
-
Methods inherited from interface com.powsybl.iidm.network.InjectionAdder
setBus, setConnectableBus, setNode
-
-