Package com.powsybl.iidm.network
Interface MutableLineCharacteristics<T>
-
- All Superinterfaces:
LineCharacteristics
- All Known Subinterfaces:
Line
- All Known Implementing Classes:
LineAdapter
public interface MutableLineCharacteristics<T> extends LineCharacteristics
- Author:
- Geoffroy Jamgotchian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
setB1(double b1)
Set the first side shunt susceptance in S.T
setB2(double b2)
Set the second side shunt susceptance in S.T
setG1(double g1)
Set the first side shunt conductance in S.T
setG2(double g2)
Set the second side shunt conductance in S.T
setR(double r)
Set the series resistance in Ω.T
setX(double x)
Set the series reactance in Ω.
-
-
-
Method Detail
-
setR
T setR(double r)
Set the series resistance in Ω.
-
setX
T setX(double x)
Set the series reactance in Ω.
-
setG1
T setG1(double g1)
Set the first side shunt conductance in S.
-
setG2
T setG2(double g2)
Set the second side shunt conductance in S.
-
setB1
T setB1(double b1)
Set the first side shunt susceptance in S.
-
setB2
T setB2(double b2)
Set the second side shunt susceptance in S.
-
-