X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FElectricUtils.ts;h=9f0c680ac890ed02e2b277776c63e66c3c7f9ea8;hb=0638ddd26038a2a45707bc3d43460f09bd95701b;hp=448d11ebb1dc205716f2e3bf3d2bd5c53c852fa0;hpb=c8eeb62b00988601b40e599745329acb67197750;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/ElectricUtils.ts b/src/utils/ElectricUtils.ts index 448d11eb..9f0c680a 100644 --- a/src/utils/ElectricUtils.ts +++ b/src/utils/ElectricUtils.ts @@ -8,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; }