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
Prochaine révisionLes deux révisions suivantes
en:cs:modelling_multi-phased_electrical_system_interconnexion [2021/04/12 09:36] – [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: ACElectricUtils.amperapeTotal(this.nPhases, this.Iph),+    I: ACElectricUtils.amperageTotal(this.nPhases, this.Iph),
     P: ACElectricUtils.powerTotal(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 : il y a 10 heures
  • de fraggle