pub fn correction_dv_m_s(dv_perturbation_m_s: f64) -> f64Expand description
Course-correction ΔV needed to compensate for a perturbation.
For an impulsive correction at time t_corr after the perturbation, the required ΔV equals the original perturbation (for optimal immediate correction). For delayed correction: Δv_corr = miss_distance / remaining_time_after_correction
For immediate correction (best case), Δv_corr ≈ Δv_perturbation.
§Arguments
dv_perturbation_m_s- Velocity perturbation to correct (m/s)
Returns required correction ΔV in m/s.