Esempio n. 1
0
 public static Current operator *(ElectricalConductance left, Voltage right)
 {
     return(Current.FromAmperes(left.siemens * right.volts));
 }
Esempio n. 2
0
 /// <summary>
 /// Divides <paramref name="left"/> by <paramref name="right"/>
 /// </summary>
 /// <param name="left">The left value</param>
 /// <param name="right">The right value</param>
 /// <returns>The <see cref="Current"/> that is the result from the division.</returns>
 public static Current operator /(Energy left, MagneticFlux right)
 {
     return(Current.FromAmperes(left.joules / right.webers));
 }
 public static Current operator /(ElectricCharge left, Time right)
 {
     return(Current.FromAmperes(left.coulombs / right.seconds));
 }
 public static Current operator *(Frequency left, ElectricCharge right)
 {
     return(Current.FromAmperes(left.hertz * right.coulombs));
 }
Esempio n. 5
0
 /// <summary>
 /// Divides <paramref name="left"/> by <paramref name="right"/>
 /// </summary>
 /// <param name="left">The left value</param>
 /// <param name="right">The right value</param>
 /// <returns>The <see cref="Current"/> that is the result from the division.</returns>
 public static Current operator /(Stiffness left, MagneticFieldStrength right)
 {
     return(Current.FromAmperes(left.newtonsPerMetre / right.teslas));
 }
 public static Current operator *(ElectricCharge left, Frequency right)
 {
     return(Current.FromAmperes(left.coulombs * right.hertz));
 }
Esempio n. 7
0
 public static Current operator /(MagneticFlux left, Inductance right)
 {
     return(Current.FromAmperes(left.webers / right.henrys));
 }
Esempio n. 8
0
 /// <summary>
 /// Divides <paramref name="left"/> by <paramref name="right"/>
 /// </summary>
 /// <param name="left">The left value</param>
 /// <param name="right">The right value</param>
 /// <returns>The <see cref="Current"/> that is the result from the division.</returns>
 public static Current operator /(Voltage left, Resistance right)
 {
     return(Current.FromAmperes(left.volts / right.ohms));
 }
Esempio n. 9
0
 /// <summary>
 /// Divides <paramref name="left"/> by <paramref name="right"/>
 /// </summary>
 /// <param name="left">The left value</param>
 /// <param name="right">The right value</param>
 /// <returns>The <see cref="Current"/> that is the result from the division.</returns>
 public static Current operator /(Power left, Voltage right)
 {
     return(Current.FromAmperes(left.watts / right.volts));
 }