refactor(simulator): factor out default ATG configuration
[e-mobility-charging-stations-simulator.git] / src / utils / ElectricUtils.ts
index 9f0c680ac890ed02e2b277776c63e66c3c7f9ea8..7b91344296009c4e10c093774a8cdb905eb33f2c 100644 (file)
@@ -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
@@ -50,6 +50,10 @@ export class ACElectricUtils {
  * Targeted to DC related values calculation.
  */
 export class DCElectricUtils {
+  private constructor() {
+    // This is intentional
+  }
+
   static power(V: number, I: number): number {
     return V * I;
   }