en:cs:modelling_multi-phased_electrical_system_interconnexion

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
en:cs:modelling_multi-phased_electrical_system_interconnexion [2021/04/12 09:34] – [Typescript code sketches] fraggleen:cs:modelling_multi-phased_electrical_system_interconnexion [2021/04/12 09:52] – [Typescript code sketches] fraggle
Ligne 69: Ligne 69:
  * Targeted to AC related values calculation.  * Targeted to AC related values calculation.
  */  */
-export default class ACElectricUtils {+export class ACElectricUtils {
   static amperageTotal(nbOfPhases: number, Iph: number): number {   static amperageTotal(nbOfPhases: number, Iph: number): number {
     return nbOfPhases * Iph;     return nbOfPhases * Iph;
Ligne 155: Ligne 155:
     Iph: Math.min(Car.Iph, ChargingStation.Iph),     Iph: Math.min(Car.Iph, ChargingStation.Iph),
     V: Math.min(Car.V, ChargingStation.V),     V: Math.min(Car.V, ChargingStation.V),
-    I: ACElectricityUtils.calculateAmpTotal(this.nPhases, this.Iph), +    I: ACElectricUtils.amperageTotal(this.nPhases, this.Iph), 
-    P: ACElectricityUtils.calculatePowerTotal(this.nPhases, this.Iph, this.V),+    P: ACElectricUtils.powerTotal(this.nPhases, this.Iph, this.V),
   };   };
 } }
  • en/cs/modelling_multi-phased_electrical_system_interconnexion.txt
  • Dernière modification : 2021/12/27 18:25
  • de 127.0.0.1