Interface LoadAsymmetrical
-
- All Known Implementing Classes:
LoadAsymmetricalImpl
public interface LoadAsymmetrical extends Extension<Load>
- Author:
- Jean-Baptiste Heyberger
, Geoffroy Jamgotchian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LoadConnectionType
getConnectionType()
double
getDeltaPa()
DeltaPa is used to extend the modelling of load P0 for load with a phase asymmetry.double
getDeltaPb()
DeltaPb is used to extend the modelling of load P0 for load with a phase asymmetry.double
getDeltaPc()
DeltaPc is used to extend the modelling of load P0 for load with a phase asymmetry.double
getDeltaQa()
DeltaQa is used to extend the modelling of load Q0 for load with a phase asymmetry.double
getDeltaQb()
DeltaQb is used to extend the modelling of load Q0 for load with a phase asymmetry.double
getDeltaQc()
DeltaQc is used to extend the modelling of load Q0 for load with a phase asymmetry.default String
getName()
Return the name of this extension.LoadAsymmetrical
setConnectionType(LoadConnectionType connectionType)
LoadAsymmetrical
setDeltaPa(double deltaPa)
LoadAsymmetrical
setDeltaPb(double deltaPb)
LoadAsymmetrical
setDeltaPc(double deltaPc)
LoadAsymmetrical
setDeltaQa(double deltaQa)
LoadAsymmetrical
setDeltaQb(double deltaQb)
LoadAsymmetrical
setDeltaQc(double deltaQc)
-
Methods inherited from interface com.powsybl.commons.extensions.Extension
getExtendable, setExtendable
-
-
-
-
Field Detail
-
NAME
static final String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
default String getName()
Description copied from interface:Extension
Return the name of this extension.
-
getConnectionType
LoadConnectionType getConnectionType()
-
setConnectionType
LoadAsymmetrical setConnectionType(LoadConnectionType connectionType)
-
getDeltaPa
double getDeltaPa()
DeltaPa is used to extend the modelling of load P0 for load with a phase asymmetry. Using that attribute makes P0 the balanced part of the power of the load. DeltaPa models the additional unbalanced active power part on phase A. Therefore the complete load to be taken into account in calculations for phase A is Pa = P0 + deltaPa
-
setDeltaPa
LoadAsymmetrical setDeltaPa(double deltaPa)
-
getDeltaPb
double getDeltaPb()
DeltaPb is used to extend the modelling of load P0 for load with a phase asymmetry. Using that attribute makes P0 the balanced part of the active power of the load. DeltaPb models the additional unbalanced active power part on phase B. Therefore the complete load to be taken into account in calculations for phase B is Pb = P0 + deltaPb
-
setDeltaPb
LoadAsymmetrical setDeltaPb(double deltaPb)
-
getDeltaPc
double getDeltaPc()
DeltaPc is used to extend the modelling of load P0 for load with a phase asymmetry. Using that attribute makes P0 the balanced part of the active power of the load. DeltaPc models the additional unbalanced active power part on phase C. Therefore the complete load to be taken into account in calculations for phase C is Pc = P0 + deltaPc
-
setDeltaPc
LoadAsymmetrical setDeltaPc(double deltaPc)
-
getDeltaQa
double getDeltaQa()
DeltaQa is used to extend the modelling of load Q0 for load with a phase asymmetry. Using that attribute makes Q0 the balanced part of the reactive power of the load. DeltaQa models the additional unbalanced reactive power part on phase A. Therefore the complete load to be taken into account in calculations for phase A is Qa = Q0 + deltaQa
-
setDeltaQa
LoadAsymmetrical setDeltaQa(double deltaQa)
-
getDeltaQb
double getDeltaQb()
DeltaQb is used to extend the modelling of load Q0 for load with a phase asymmetry. Using that attribute makes Q0 the balanced part of the reactive power of the load. DeltaQb models the additional unbalanced reactive power part on phase B. Therefore the complete load to be taken into account in calculations for phase B is Qb = Q0 + deltaQb
-
setDeltaQb
LoadAsymmetrical setDeltaQb(double deltaQb)
-
getDeltaQc
double getDeltaQc()
DeltaQc is used to extend the modelling of load Q0 for load with a phase asymmetry. Using that attribute makes Q0 the balanced part of the reactive power of the load. DeltaQc models the additional unbalanced reactive power part on phase C. Therefore the complete load to be taken into account in calculations for phase C is Qc = Q0 + deltaQc
-
setDeltaQc
LoadAsymmetrical setDeltaQc(double deltaQc)
-
-