test: add ElectricUtils.ts tests
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 1 Nov 2023 09:56:59 +0000 (10:56 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 1 Nov 2023 09:56:59 +0000 (10:56 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/ElectricUtils.ts

index 7b91344296009c4e10c093774a8cdb905eb33f2c..b0f8dff412ba6984f5443155339d40f0b4ec5691 100644 (file)
@@ -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 {