pub fn maximum_static_friction(
coefficient_static_friction: f64,
normal_force: f64,
) -> Option<f64>Expand description
Computes the maximum available static friction.
Formula: f_s,max = μ_s * N.
§Examples
use use_statics::maximum_static_friction;
assert_eq!(maximum_static_friction(0.5, 100.0), Some(50.0));