Problem definition
Zarchan, 'Tactical and Strategic Missile Guidance' (6th ed., 2012), Ch. 2
Canonical RHS excerpt from the registered callable used for this benchmark cell. Expand it to verify the state equations; it is not a standalone runnable fixture.
Show canonical RHS excerpt
def _clamp(x: float, lo: float, hi: float) -> float:
return max(lo, min(hi, x))
def rhs(t, y):
rx, ry = y[0], y[1]
vx_i, vy_i = y[2], y[3]
d = np.empty(4)
R = np.sqrt(rx * rx + ry * ry)
if R < _RANGE_GUARD:
d[:] = 0.0
return d
lam = np.arctan2(ry, rx)
vx_rel = vx_i - v_tgt_x
vy_rel = vy_i - v_tgt_y
R_dot = (rx * vx_rel + ry * vy_rel) / R
lam_dot = (rx * vy_rel - ry * vx_rel) / (R * R)
lam_dot = _clamp(lam_dot, -_LOS_RATE_CLAMP, _LOS_RATE_CLAMP)
V_c = -R_dot
a_cmd = N * V_c * lam_dot
perp_x = -np.sin(lam)
perp_y = np.cos(lam)
d[0] = vx_i - v_tgt_x
d[1] = vy_i - v_tgt_y
d[2] = a_cmd * perp_x
d[3] = a_cmd * perp_y
return d- Parameters
- N = 3
- _LOS_RATE_CLAMP = 0.5
- _RANGE_GUARD = 0.1
- v_tgt_x = -200
- v_tgt_y = 0
- Initial condition
- y(0) = [5000, 2000, -250, 0]
- Horizon
- t ∈ [0, 20]
Canonical RHS excerpt captured from the same registered callable used for the published benchmark. Frozen closure values are summarized below; helper imports and solver settings are intentionally omitted.
Cite this page
Replace the access date. Pin the freeze ID and library versions when comparing against a later export. Cite it as what it is — a self-reported vendor benchmark, not an independently verified result. The note field says so; please keep it.
@misc{resonix_evidence_2d_proportional_navigation_pure_pn_n_3_2026,
title = {Resonix Evidence Portal: 2D Proportional Navigation (Pure PN, N=3)},
author = {{Resonix Labs (Canada) Inc.}},
year = {2026},
howpublished = {\url{https://resonix.tech/evidence/problems/2d-proportional-navigation-pure-pn-n-3}},
note = {Self-reported vendor benchmark; internally generated by Resonix Labs and not independently verified. Accessed YYYY-MM-DD. Freeze 2026-08-13; libsolvsrk 2.3.0; SciPy 1.14.}
}TRL 4–5 · simulation-lab validated · 398 problems · 14 solver arms · clean + 5 noise levels
Freeze: 2026-08-13 · scipy 1.14 · libsolvsrk 2.3.0 · Methodology
Self-reported by Resonix Labs · not independently verified · Verification status