pub fn final_angular_velocity(
initial_angular_velocity: f64,
angular_acceleration: f64,
time: f64,
) -> Option<f64>Expand description
Computes final angular velocity using ω_final = ω_initial + αt.
Returns None when time is negative, when any input is not finite, or when the computed
angular velocity is not finite.