Esempio n. 1
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="Force"/> that is the result from the multiplication.</returns>
 public static Force operator *(Unitless left, ForcePerUnitless right)
 {
     return(Force.FromNewtons(left.scalar * right.newtonsPerUnitless));
 }
Esempio n. 2
0
 public static Force operator *(Speed left, MassFlow right)
 {
     return(Force.FromNewtons(left.metresPerSecond * right.kilogramsPerSecond));
 }
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="Force"/> that is the result from the multiplication.</returns>
 public static Force operator *(Frequency left, Momentum right)
 {
     return(Force.FromNewtons(left.hertz * right.newtonSecond));
 }
Esempio n. 4
0
 public static Force operator *(Mass left, Acceleration right)
 {
     return(Force.FromNewtons(left.kilograms * right.metresPerSecondSquared));
 }
Esempio n. 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="Force"/> that is the result from the division.</returns>
 public static Force operator /(Power left, Speed right)
 {
     return(Force.FromNewtons(left.watts / right.metresPerSecond));
 }
Esempio n. 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="Force"/> that is the result from the division.</returns>
 public static Force operator /(Length left, Flexibility right)
 {
     return(Force.FromNewtons(left.metres / right.metresPerNewton));
 }
Esempio n. 7
0
 public static Force operator /(Energy left, Length right)
 {
     return(Force.FromNewtons(left.joules / right.metres));
 }
Esempio n. 8
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="Force"/> that is the result from the multiplication.</returns>
 public static Force operator *(Length left, Stiffness right)
 {
     return(Force.FromNewtons(left.metres * right.newtonsPerMetre));
 }
Esempio n. 9
0
 public static Force operator *(Pressure left, Area right)
 {
     return(Force.FromNewtons(left.pascals * right.squareMetres));
 }
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="Force"/> that is the result from the division.</returns>
 public static Force operator /(Momentum left, Time right)
 {
     return(Force.FromNewtons(left.newtonSecond / right.seconds));
 }
Esempio n. 11
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="Force"/> that is the result from the multiplication.</returns>
 public static Force operator *(Momentum left, Frequency right)
 {
     return(Force.FromNewtons(left.newtonSecond * right.hertz));
 }
Esempio n. 12
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="Force"/> that is the result from the multiplication.</returns>
 public static Force operator *(Energy left, Wavenumber right)
 {
     return(Force.FromNewtons(left.joules * right.reciprocalMetres));
 }