Exemplo n.º 1
0
 public static Inductance operator *(Resistance left, Time right)
 {
     return(Inductance.FromHenrys(left.ohm * right.seconds));
 }
Exemplo 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="Inductance"/> that is the result from the division.</returns>
 public static Inductance operator /(Time left, ElectricalConductance right)
 {
     return(Inductance.FromHenrys(left.seconds / right.siemens));
 }
Exemplo n.º 3
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="Inductance"/> that is the result from the division.</returns>
 public static Inductance operator /(Resistance left, Frequency right)
 {
     return(Inductance.FromHenrys(left.ohms / right.hertz));
 }
Exemplo n.º 4
0
 public static Inductance operator /(MagneticFlux left, Current right)
 {
     return(Inductance.FromHenrys(left.webers / right.amperes));
 }