Package com.powsybl.ucte.network
Class UctePhaseRegulation
- java.lang.Object
-
- com.powsybl.ucte.network.UctePhaseRegulation
-
public class UctePhaseRegulation extends Object
- Author:
- Geoffroy Jamgotchian
-
-
Constructor Summary
Constructors Constructor Description UctePhaseRegulation(double du, Integer n, Integer np, double u)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDu()
Gets δu (%).Integer
getN()
Gets number of taps.Integer
getNp()
Gets tap position.double
getU()
Gets on load tap changer voltage target for node 2 (V2 or UL) (kV) (optional).void
setDu(double du)
Sets δu (%).void
setN(Integer n)
Sets number of taps.void
setNp(Integer np)
Sets tap position.void
setU(double u)
Sets on load tap changer voltage target for node 2 (V2 or UL) (kV) (optional).
-
-
-
Method Detail
-
getDu
public double getDu()
Gets δu (%).- Returns:
- δu (%)
-
setDu
public void setDu(double du)
Sets δu (%).- Parameters:
du
- δu (%)
-
getN
public Integer getN()
Gets number of taps.Counted the following way: it is the difference between the intermediate position (neutral) and the positive or negative ultimate position (e.g. a transformer with total 27 taps (+13,neutral,-13) is given as n = 13 in the UCTE format).
- Returns:
- number of taps
-
setN
public void setN(Integer n)
Sets number of taps.Counted the following way: it is the difference between the intermediate position (neutral) and the positive or negative ultimate position (e.g. a transformer with total 27 taps (+13,neutral,-13) is given as n = 13 in the UCTE format).
- Parameters:
n
- number of taps
-
getNp
public Integer getNp()
Gets tap position.- Returns:
- tap position
-
setNp
public void setNp(Integer np)
Sets tap position.- Parameters:
np
- tap position
-
getU
public double getU()
Gets on load tap changer voltage target for node 2 (V2 or UL) (kV) (optional).- Returns:
- on load tap changer voltage target for node 2
-
setU
public void setU(double u)
Sets on load tap changer voltage target for node 2 (V2 or UL) (kV) (optional).- Parameters:
u
- on load tap changer voltage target for node 2
-
-