Trajectory Classifier (FST.GNT)
ADVANTAGES0 · dim 27SolvSRK wins. At the comparison noise level, SolvSRK beats the best baseline by at least 10 percentage points of survival, or by at least 0.05 balanced score when survival is tied. Use SolvSRK for this class of problem. All verdicts →
Trajectory Classifier (FST.GNT) benchmark in the defense-autonomy domain.
Problem definition
Canonical benchmark implementation
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 rhs(t, y):
d = np.empty(27)
# Smooth interpolation of noise (avoids piecewise-constant discontinuities)
n0 = np.interp(t, _noise_ts, cmd_noise[0])
n1 = np.interp(t, _noise_ts, cmd_noise[1])
n2 = np.interp(t, _noise_ts, cmd_noise[2])
# Pseudo-target command (shared input, each model responds differently)
ax_cmd = maneuver_amp * np.sin(_TWO_PI * maneuver_freq * t) + 0.5 * n0
ay_cmd = maneuver_amp * np.cos(_TWO_PI * maneuver_freq * t * 0.7) + 0.5 * n1
az_cmd = 0.5 * n2
# Model A: Multi-rotor (agile, can hover)
s = 0
vx_a, vy_a, vz_a = y[s + 3], y[s + 4], y[s + 5]
ax_a, ay_a, az_a = y[s + 6], y[s + 7], y[s + 8]
d[s + 0] = vx_a
d[s + 1] = vy_a
d[s + 2] = vz_a
d[s + 3] = ax_a
d[s + 4] = ay_a
d[s + 5] = az_a - _G # gravity in NED
d[s + 6] = (ax_cmd - ax_a) / tau_mr
d[s + 7] = (ay_cmd - ay_a) / tau_mr
d[s + 8] = (az_cmd - az_a) / tau_mr
# Model B: Fixed-wing (constrained by stall speed, wider turns)
s = 9
vx_b, vy_b, vz_b = y[s + 3], y[s + 4], y[s + 5]
ax_b, ay_b, az_b = y[s + 6], y[s + 7], y[s + 8]
V_b = np.sqrt(vx_b**2 + vy_b**2 + vz_b**2 + 0.01)
stall_factor = np.tanh(max(V_b - V_stall, 0.0) / 5.0)
d[s + 0] = vx_b
d[s + 1] = vy_b
d[s + 2] = vz_b
d[s + 3] = ax_b
d[s + 4] = ay_b
d[s + 5] = az_b - _G
d[s + 6] = (ax_cmd * stall_factor - ax_b) / tau_fw
d[s + 7] = (ay_cmd * stall_factor * 0.5 - ay_b) / tau_fw
d[s + 8] = (az_cmd * 0.3 - az_b) / tau_fw
# Model C: VTOL hybrid (intermediate response)
s = 18
vx_c, vy_c, vz_c = y[s + 3], y[s + 4], y[s + 5]
ax_c, ay_c, az_c = y[s + 6], y[s + 7], y[s + 8]
V_c = np.sqrt(vx_c**2 + vy_c**2 + vz_c**2 + 0.01)
transition = np.clip(V_c / V_cruise, 0.0, 1.0) # 0=hover, 1=wing-borne
tau_eff = tau_mr * (1.0 - transition) + tau_fw * transition
d[s + 0] = vx_c
d[s + 1] = vy_c
d[s + 2] = vz_c
d[s + 3] = ax_c
d[s + 4] = ay_c
d[s + 5] = az_c - _G
d[s + 6] = (ax_cmd * (1.0 - 0.3 * transition) - ax_c) / tau_eff
d[s + 7] = (ay_cmd * (1.0 - 0.5 * transition) - ay_c) / tau_eff
d[s + 8] = (az_cmd - az_c) / tau_eff
return d- Parameters
- V_cruise = 40
- V_stall = 18
- _G = 9.81
- _TWO_PI = 6.28318530718
- _noise_ts = [0, 0.01, 0.02, 0.03, 0.04, 0.05, …] [shape=(3001,), min=0, max=30]
- cmd_noise = [0.125730221093, -0.132104863291, 0.640422650443, 0.104900117153, -0.535669373161, 0.361595054909, …] [shape=(3, 3001), min=-3.89942173005, max=3.25719907472]
- maneuver_amp = 1
- maneuver_freq = 0.2
- tau_fw = 1.5
- tau_mr = 0.3
- Initial condition
- y(0) = [0, 0, -100, 40, 0, 0, …] [shape=(27,), min=-100, max=40]
- Horizon
- t ∈ [0, 30]
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.
Fingerprint
Spread: high
Default noise: low
Recommendation snapshot
Clean best: SolvSRK
Noisy best: SolvSRK
Coverage
14 solver arms · clean + 5 noise levels
Ranked on survival, precision, and speed
Versions & freeze
Methodology →- Freeze
- 2026-08-13
- libsolvsrk
- 2.3.0
- SciPy
- 1.14
- SUNDIALS
- CVODE (bundled backend)
20 seeds/cell default · 14 arms · TRL 4–5 · simulation-lab validated · this page: Trajectory Classifier (FST.GNT) (trajectory-classifier-fst-gnt)
Governed SolvTune benchmark freeze; per-arm medians only. RHS definitions and raw trial rows are not published.
Self-reported by Resonix Labs · not independently verified
Results matrix
Pick an objective and a noise level to rank all arms on survival, median SCD, median nfev, and median wall time. Medians across seeds.
Objective
Best overall trade-off of survival, precision, and speed.
Noise level
| # | Solver | Survival | SCD | nfev | Wall | Score |
|---|---|---|---|---|---|---|
| 1 | SolvSRK | 100% | 11.4 | 411,238 | 6.95 s | 0.890 |
| 2 | SciPy LSODASciPy | 100% | 8.7 | 173,431 | 2.71 s | 0.825 |
| 3 | SciPy RK23SciPy | 100% | 8.3 | 155,495 | 3.24 s | 0.816 |
| 4 | CVODE BDFexternal | 100% | 8.2 | 176,018 | 3.54 s | 0.814 |
| 5 | SciPy BDFSciPy | 100% | 8.1 | 162,777 | 7.91 s | 0.812 |
| 6 | CVODE Adamsexternal | 100% | 7.6 | 107,611 | 2.10 s | 0.800 |
| 7 | SciPy DOP853SciPy | 100% | 6.9 | 482,438 | 8.70 s | 0.783 |
| 8 | SciPy RK45SciPy | 100% | 6.7 | 191,450 | 3.58 s | 0.780 |
| 9 | FBDFexternal | 100% | 6.7 | 242,680 | 19.07 s | 0.778 |
| 10 | TRBDF2external | 100% | 5.6 | 92,662 | 10.49 s | 0.753 |
| - | SciPy RadauSciPy | 0% | - | - | - | - |
| - | Tsit5external | 0% | - | - | - | - |
| - | Vern7external | 0% | - | - | - | - |
| - | Vern9external | 0% | - | - | - | - |
At Clean, best balanced arm is SolvSRK.
Values are medians across seeds, measured by Resonix Labs on Resonix hardware and not independently verified; nfev and wall are on reference lab hardware (indicative). Under injected noise only SolvSRK and the SciPy arms are run. How we measure accuracy → · Verification status →
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_trajectory_classifier_fst_gnt_2026,
title = {Resonix Evidence Portal: Trajectory Classifier (FST.GNT)},
author = {{Resonix Labs (Canada) Inc.}},
year = {2026},
howpublished = {\url{https://resonixusa.com/evidence/problems/trajectory-classifier-fst-gnt}},
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.}
}Related
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