X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=src%2Futils%2FElectricUtils.ts;h=b0f8dff412ba6984f5443155339d40f0b4ec5691;hb=bc0f4d8f4973f36baa3f468848fe4d7af25c9a9c;hp=b779bf1dffa1d83470ae19ed3754e167b3b1b149;hpb=17e9e8cef1f7d1cbc4ec6aa4c95d8f3d93c593a6;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/ElectricUtils.ts b/src/utils/ElectricUtils.ts index b779bf1d..b0f8dff4 100644 --- a/src/utils/ElectricUtils.ts +++ b/src/utils/ElectricUtils.ts @@ -1,4 +1,4 @@ -// Copyright Jerome Benoit. 2021. All Rights Reserved. +// Copyright Jerome Benoit. 2021-2023. All Rights Reserved. /** * Rationale: https://wiki.piment-noir.org/doku.php/en:cs:modelling_multi-phased_electrical_system_interconnexion @@ -12,8 +12,8 @@ export class ACElectricUtils { // This is intentional } - static amperageTotal(nbOfPhases: number, Iph: number): number { - return nbOfPhases * Iph; + static powerTotal(nbOfPhases: number, V: number, Iph: number, cosPhi = 1): number { + return nbOfPhases * ACElectricUtils.powerPerPhase(V, Iph, cosPhi); } static powerPerPhase(V: number, Iph: number, cosPhi = 1): number { @@ -24,8 +24,8 @@ export class ACElectricUtils { return Math.round(powerPerPhase); } - static powerTotal(nbOfPhases: number, V: number, Iph: number, cosPhi = 1): number { - return nbOfPhases * ACElectricUtils.powerPerPhase(V, Iph, cosPhi); + static amperageTotal(nbOfPhases: number, Iph: number): number { + return nbOfPhases * Iph; } static amperageTotalFromPower(P: number, V: number, cosPhi = 1): number {