X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FElectricUtils.ts;h=9f0c680ac890ed02e2b277776c63e66c3c7f9ea8;hb=9d73266c8bb85d7e2bc1fab9954a76910fd689eb;hp=5adf4bc783cdbfe09cde884336704b082e4b0ae8;hpb=431c489c2b4b442ffad31573222b910780887495;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/ElectricUtils.ts b/src/utils/ElectricUtils.ts index 5adf4bc7..9f0c680a 100644 --- a/src/utils/ElectricUtils.ts +++ b/src/utils/ElectricUtils.ts @@ -1,3 +1,5 @@ +// Copyright Jerome Benoit. 2021. All Rights Reserved. + /** * Rationale: https://wiki.piment-noir.org/doku.php/en:cs:modelling_multi-phased_electrical_system_interconnexion */ @@ -6,6 +8,10 @@ * Targeted to AC related values calculation. */ export class ACElectricUtils { + private constructor() { + // This is intentional + } + static amperageTotal(nbOfPhases: number, Iph: number): number { return nbOfPhases * Iph; }