Package com.powsybl.iidm.network
Interface ReactiveLimits
-
- All Known Subinterfaces:
MinMaxReactiveLimits
,ReactiveCapabilityCurve
public interface ReactiveLimits
Base class forGenerator
reactive limits.- Author:
- Geoffroy Jamgotchian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReactiveLimitsKind
getKind()
double
getMaxQ(double p)
Get the reactive power maximum value at a given active power value.double
getMinQ(double p)
Get the reactive power minimum value at a given active power value.
-
-
-
Method Detail
-
getKind
ReactiveLimitsKind getKind()
-
getMinQ
double getMinQ(double p)
Get the reactive power minimum value at a given active power value.- Parameters:
p
- the active power
-
getMaxQ
double getMaxQ(double p)
Get the reactive power maximum value at a given active power value.- Parameters:
p
- the active power
-
-