Problem definition
Zarchan Ch. 8 (augmented PN with target maneuver)
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]
vx_t, vy_t = y[4], y[5]
d = np.empty(6)
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 - vx_t
vy_rel = vy_i - vy_t
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_tgt_now = A_tgt * np.sin(omega_evade * t)
a_cmd = N_eff * V_c * lam_dot + 0.5 * N_eff * a_tgt_now
perp_x = -np.sin(lam)
perp_y = np.cos(lam)
wx = np.interp(t, _noise_ts, wind_noise[0])
wy = np.interp(t, _noise_ts, wind_noise[1])
d[0] = vx_i - vx_t
d[1] = vy_i - vy_t
d[2] = a_cmd * perp_x + wx
d[3] = a_cmd * perp_y + wy
d[4] = -a_tgt_now * np.sin(lam)
d[5] = a_tgt_now * np.cos(lam)
return d- Parameters
- A_tgt = 50
- N_eff = 4
- _LOS_RATE_CLAMP = 0.5
- _RANGE_GUARD = 0.1
- _noise_ts = [0, 0.01, 0.02, 0.03, 0.04, 0.05, …] [shape=(2501,), min=0, max=25]
- omega_evade = 3.14159265359
- wind_noise = [0.0628651105467, -0.0660524316457, 0.320211325222, 0.0524500585765, -0.267834686581, 0.180797527455, …] [shape=(2, 2501), min=-1.94971086503, max=1.62859953736]
- Initial condition
- y(0) = [5000, 2000, -250, 0, -200, 0]
- Horizon
- t ∈ [0, 25]
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_apn_with_evasive_target_2026,
title = {Resonix Evidence Portal: 2D APN with Evasive Target},
author = {{Resonix Labs (Canada) Inc.}},
year = {2026},
howpublished = {\url{https://resonix.tech/evidence/problems/2d-apn-with-evasive-target}},
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