public static SpecificEnergy operator *(Frequency left, KinematicViscosity right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.hertz * right.squareMetresPerSecond));
 }
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="SpecificEnergy"/> that is the result from the division.</returns>
 public static SpecificEnergy operator /(Pressure left, Density right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.pascals / right.kilogramsPerCubicMetre));
 }
Esempio n. 3
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="SpecificEnergy"/> that is the result from the multiplication.</returns>
 public static SpecificEnergy operator *(Pressure left, SpecificVolume right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.pascals * right.cubicMetresPerKilogram));
 }
Esempio n. 4
0
 public static SpecificEnergy operator /(Energy left, Mass right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.joules / right.kilograms));
 }
Esempio n. 5
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="SpecificEnergy"/> that is the result from the multiplication.</returns>
 public static SpecificEnergy operator *(Speed left, Speed right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.metresPerSecond * right.metresPerSecond));
 }
Esempio n. 6
0
 public static SpecificEnergy operator /(Acceleration left, Wavenumber right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.metresPerSecondSquared / right.reciprocalMetres));
 }
Esempio n. 7
0
 public static SpecificEnergy operator *(Acceleration left, Length right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.metresPerSecondSquared * right.metres));
 }
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="SpecificEnergy"/> that is the result from the division.</returns>
 public static SpecificEnergy operator /(Stiffness left, AreaDensity right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.newtonsPerMetre / right.kilogramsPerSquareMetre));
 }
 /// <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="SpecificEnergy"/> that is the result from the division.</returns>
 public static SpecificEnergy operator /(KinematicViscosity left, Time right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.squareMetresPerSecond / right.seconds));
 }
Esempio n. 10
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="SpecificEnergy"/> that is the result from the division.</returns>
 public static SpecificEnergy operator /(Power left, MassFlow right)
 {
     return(SpecificEnergy.FromJoulesPerKilogram(left.watts / right.kilogramsPerSecond));
 }