public static SpecificEnergy operator *(Frequency left, KinematicViscosity right) { return(SpecificEnergy.FromJoulesPerKilogram(left.hertz * right.squareMetresPerSecond)); }
/// <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)); }
/// <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)); }
public static SpecificEnergy operator /(Energy left, Mass right) { return(SpecificEnergy.FromJoulesPerKilogram(left.joules / right.kilograms)); }
/// <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)); }
public static SpecificEnergy operator /(Acceleration left, Wavenumber right) { return(SpecificEnergy.FromJoulesPerKilogram(left.metresPerSecondSquared / right.reciprocalMetres)); }
public static SpecificEnergy operator *(Acceleration left, Length right) { return(SpecificEnergy.FromJoulesPerKilogram(left.metresPerSecondSquared * right.metres)); }
/// <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)); }
/// <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)); }