pub fn dynamic_pressure(density: f64, velocity: f64) -> Option<f64>Expand description
Computes dynamic pressure from density and flow velocity.
Formula: q = 0.5 * ρ * v²
Returns None when density is negative, when any input is not finite, or when the
computed result is not finite.