/// <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)); }
public static MassFlow operator *(MolarMass left, CatalyticActivity right) { return(MassFlow.FromKilogramsPerSecond(left.kilogramsPerMole * right.katals)); }
/// <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)); }
/// <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)); }
/// <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)); }
/// <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)); }