__init__(self,
billingMultiplierApplied=False,
kWMultiplier=0,
demandMultiplier=0.0,
demandMultiplierApplied=False,
transformerRatiosApplied=False,
voltageRating=0.0,
billingMultiplier=0.0,
transformerVTRatio=0.0,
kWhMultiplier=0,
transformerCTRatio=0.0,
currentRating=0.0,
*args,
**kw_args)
(Constructor)
|
|
Initialises a new 'ElectricMeteringFunction' instance.
- Parameters:
billingMultiplierApplied - True if the billingMultiplier ratio has already been applied to
the associated quantities.
kWMultiplier - Meter kW (pulse) multiplier, used as a multiplier for a meter
register reading to determine the actual amount of usage for
which to bill a customer.
demandMultiplier - An additional multiplier that may be used for normalization of
the demand value to an hourly value. For example, if the demand
interval were set to 15 min, the demand multiplier would be 4. If
the meter design is such that the demand value reported and
displayed is compensated for by the meter itself and no
additional scaling is required outside of the meter, the value of
the demand multiplier should be '1'.
demandMultiplierApplied - True if the demandMultiplier ratio has already been applied to
the associated quantities.
transformerRatiosApplied - True if transformer ratios have been already applied to the
associated quantities.
voltageRating - The service voltage at which the meter is designed to operate.
Typical voltage ratings in North America are 120 V, 240 V, 277 V
or 480 V.
billingMultiplier - Customer billing value = meter multiplier * transformer ratios *
reading value. The multiplier identifies the scaling value to
apply to the reported value after delivery of the tagged item.
transformerVTRatio - Voltage transformer ratio used to convert associated quantities
to real measurements.
kWhMultiplier - Meter kWh multiplier, used as a multiplier for a meter register
reading to determine the actual amount of usage for which to bill
a customer.
transformerCTRatio - Current transformer ratio used to convert associated quantities
to real measurements.
currentRating - The current class of the meter. Typical current classes in North
America are 10 A, 20 A, 100 A, 200 A, or 320 A.
- Overrides:
object.__init__
|