Exemple #1
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="MassFlow"/> that is the result from the division.</returns>
 public static MassFlow operator /(Force left, Speed right)
 {
     return(MassFlow.FromKilogramsPerSecond(left.newtons / right.metresPerSecond));
 }
Exemple #2
0
 public static MassFlow operator *(MolarMass left, CatalyticActivity right)
 {
     return(MassFlow.FromKilogramsPerSecond(left.kilogramsPerMole * right.katals));
 }
Exemple #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="MassFlow"/> that is the result from the division.</returns>
 public static MassFlow operator /(Momentum left, Length right)
 {
     return(MassFlow.FromKilogramsPerSecond(left.newtonSecond / right.metres));
 }
Exemple #4
0
 /// <summary>
 /// Multiplies <paramref name="left"/> with <paramref name="right"/>
 /// </summary>
 /// <param name="left">The left value</param>
 /// <param name="right">The right value</param>
 /// <returns>The <see cref="MassFlow"/> that is the result from the multiplication.</returns>
 public static MassFlow operator *(Momentum left, Wavenumber right)
 {
     return(MassFlow.FromKilogramsPerSecond(left.newtonSecond * right.reciprocalMetres));
 }
Exemple #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="MassFlow"/> that is the result from the division.</returns>
 public static MassFlow operator /(Energy left, KinematicViscosity right)
 {
     return(MassFlow.FromKilogramsPerSecond(left.joules / right.squareMetresPerSecond));
 }
Exemple #6
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="MassFlow"/> that is the result from the division.</returns>
 public static MassFlow operator /(Power left, SpecificEnergy right)
 {
     return(MassFlow.FromKilogramsPerSecond(left.watts / right.joulesPerKilogram));
 }