Function mass_flow_rate
pub fn mass_flow_rate(density: f64, volumetric_flow_rate: f64) -> Option<f64>Expand description
Computes mass flow rate from density and volumetric flow rate.
Formula: ṁ = ρ * Q
Returns None when density is negative, when either input is not finite, or when the
computed result is not finite.