pub struct PerPhase<T> {
pub l1: T,
pub l2: T,
pub l3: T,
}Expand description
A value measured or commanded per outer conductor.
The unbalance rule of VDE-AR-N 4100 is stated per phase, so anything that has to satisfy it — a single-phase wallbox, a heating rod, the site as a whole — carries its numbers in here rather than as a scalar.
Fields§
§l1: TValue on L1.
l2: TValue on L2.
l3: TValue on L3.
Implementations§
Source§impl<T: Copy> PerPhase<T>
impl<T: Copy> PerPhase<T>
Source§impl PerPhase<Power>
impl PerPhase<Power>
Sourcepub fn unbalance(&self) -> ApparentPower
pub fn unbalance(&self) -> ApparentPower
The Unsymmetrieleistung: the largest difference between any two outer conductors, expressed as apparent power.
VDE-AR-N 4100 Abschnitt 5.5.2 caps it at 4,6 kVA for a customer
installation — the figure metering::power_quality::UNSYMMETRIE_LIMIT_KVA
carries with its derivation, and the same limit as the 20 A per
Außenleiter the VDE FNN Hinweis states it as.
Which devices count. The requirement reaches only equipment that can
feed in or store — generation, storage, charge points — so the caller
sums those and not the household’s own load. See
Asset::symmetry_relevant.
kVA, not kW. The limit is apparent power, and an inverter at cos φ < 1 — which VDE-AR-N 4105 requires it to be capable of — moves more kVA than kW. This is computed from active power because that is what a household driver reports, so it understates the unbalance exactly when the grid has asked for reactive support. A meter that reports apparent power per conductor should be used as it stands.