__init__(self,
pFrequencyExponent=0.0,
qFrequencyExponent=0.0,
pConstantPower=0.0,
pConstantCurrent=0.0,
pVoltageExponent=0.0,
pConstantImpedance=0.0,
qConstantImpedance=0.0,
qConstantPower=0.0,
qVoltageExponent=0.0,
exponentModel=False,
qConstantCurrent=0.0,
EnergyConsumer=None,
*args,
**kw_args)
(Constructor)
|
|
Initialises a new 'LoadResponseCharacteristic' instance.
- Parameters:
pFrequencyExponent - Exponent of per unit frequency effecting active power
qFrequencyExponent - Exponent of per unit frequency effecting reactive power
pConstantPower - Portion of active power load modeled as constant power. Used only
if the useExponentModel is false. This value is noralized
against the sum of pZ, pI, and pP.
pConstantCurrent - Portion of active power load modeled as constant current. Used
only if the useExponentModel is false. This value is noralized
against the sum of pZ, pI, and pP.
pVoltageExponent - Exponent of per unit voltage effecting real power. This model
used only when 'useExponentModel' is true.
pConstantImpedance - Portion of active power load modeled as constant impedance. Used
only if the useExponentModel is false. This value is noralized
against the sum of pZ, pI, and pP.
qConstantImpedance - Portion of reactive power load modeled as constant impedance.
Used only if the useExponentModel is false. This value is
noralized against the sum of qZ, qI, and qP.
qConstantPower - Portion of reactive power load modeled as constant power. Used
only if the useExponentModel is false. This value is noralized
against the sum of qZ, qI, and qP.
qVoltageExponent - Exponent of per unit voltage effecting reactive power. This
model used only when 'useExponentModel' is true.
exponentModel - Indicates the exponential voltage dependency model
(pVoltateExponent and qVoltageExponent) is to be used. If
false, the coeficient model (consisting of pConstantImpedance,
pConstantCurrent, pConstantPower, qConstantImpedance,
qConstantCurrent, and qConstantPower) is to be used.
qConstantCurrent - Portion of reactive power load modeled as constant current. Used
only if the useExponentModel is false. This value is noralized
against the sum of qZ, qI, and qP.
EnergyConsumer - The set of loads that have the response characteristics.
- Overrides:
object.__init__
|