Swarm Track Fusion N=5 dense splitting

ADVANTAGES1 · dim 35

SolvSRK 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 →

5-target coordinated-turn tracking with proximity-based dynamic coupling. Per-target state [x,y,z,vx,vy,vz,omega] (dim=35). Dense initial spacing (100.0m). Maneuver: splitting. 4 noise channels/target.

Defense autonomy

Problem definition

Bar-Shalom, Willett & Tian, 'Tracking and Data Fusion', Ch. 6; Blackman & Popoli, 'Design and Analysis of Modern Tracking Systems'

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: float, y: np.ndarray) -> np.ndarray:
    d = np.zeros(dim)

    # ── Per-target coordinated-turn dynamics ─────────────────
    positions = np.empty((N_targets, 3))
    for i in range(N_targets):
        b = i * _STATES_PER_TARGET
        vx, vy, vz = y[b + 3], y[b + 4], y[b + 5]
        omega = y[b + 6]

        d[b + 0] = vx
        d[b + 1] = vy
        d[b + 2] = vz
        d[b + 3] = -omega * vy
        d[b + 4] = omega * vx
        d[b + 5] = 0.0
        d[b + 6] = 0.0

        positions[i, 0] = y[b + 0]
        positions[i, 1] = y[b + 1]
        positions[i, 2] = y[b + 2]

        # Process noise (interpolated)
        ch = 4 * i
        d[b + 3] += np.interp(t, noise_ts, noise_table[ch + 0])
        d[b + 4] += np.interp(t, noise_ts, noise_table[ch + 1])
        d[b + 5] += np.interp(t, noise_ts, noise_table[ch + 2])
        d[b + 6] += sigma_omega * np.interp(t, noise_ts, noise_table[ch + 3])

    # ── Proximity-based dynamic coupling ──────────────────────
    for i in range(N_targets):
        bi = i * _STATES_PER_TARGET
        for j in range(i + 1, N_targets):
            bj = j * _STATES_PER_TARGET
            dx = positions[j, 0] - positions[i, 0]
            dy = positions[j, 1] - positions[i, 1]
            dz = positions[j, 2] - positions[i, 2]
            dist_sq = dx * dx + dy * dy + dz * dz

            if dist_sq < gate_sq:
                # Soft association weight (Gaussian decay within gate)
                w = coupling_strength * np.exp(-0.5 * dist_sq / (gate_sq * 0.25))
                inv_dist = 1.0 / np.sqrt(dist_sq + _EPS)
                ux, uy, uz = dx * inv_dist, dy * inv_dist, dz * inv_dist

                # Symmetric velocity perturbation (proximity-induced track confusion)
                d[bi + 3] += w * ux
                d[bi + 4] += w * uy
                d[bi + 5] += w * uz
                d[bj + 3] -= w * ux
                d[bj + 4] -= w * uy
                d[bj + 5] -= w * uz

                # Cross-coupling bleeds into turn-rate estimates
                bearing_ij = np.arctan2(dy, dx + _EPS)
                d[bi + 6] += 0.1 * w * np.sin(bearing_ij)
                d[bj + 6] -= 0.1 * w * np.sin(bearing_ij)

    return d
Parameters
  • N_targets = 5
  • _EPS = 1e-12
  • _STATES_PER_TARGET = 7
  • coupling_strength = 0.5
  • dim = 35
  • gate_sq = 22500
  • noise_table = [0.188024595522, -1.48699849871, -1.84345075252, -0.915451651335, 0.44039024694, -2.01923636708, …] [shape=(20, 601), min=-7.79884346011, max=7.89109937305]
  • noise_ts = [0, 0.05, 0.1, 0.15, 0.2, 0.25, …] [shape=(601,), min=0, max=30]
  • sigma_omega = 0.01
Initial condition
y(0) = [50, 0, 102.514604422, 19.563497756, 1.25460639678, -1.94754994142, …] [shape=(35,), min=-121.352549156, max=107.231901098]
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: extreme

Default noise: medium

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: Swarm Track Fusion N=5 dense splitting (swarm-track-fusion-n-5-dense-splitting)

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

#SolverSurvivalSCDnfevWallScore
1SolvSRK
100%
9.591,7422.74 s0.845
2FBDFexternal
100%
6.258,09410.49 s0.766
3SciPy RadauSciPy
100%
6.195,4966.98 s0.764
4SciPy RK23SciPy
100%
5.936,0621.93 s0.760
5SciPy LSODASciPy
100%
5.940,6461.96 s0.759
6CVODE BDFexternal
100%
5.943,7912.28 s0.758
7SciPy BDFSciPy
100%
5.537,4193.14 s0.750
8Vern9external
100%
5.5200,69021.96 s0.750
9CVODE Adamsexternal
100%
5.528,2281.45 s0.749
10SciPy DOP853SciPy
100%
5.2114,2545.79 s0.743
11Vern7external
100%
4.7135,16216.24 s0.730
12Tsit5external
100%
4.478,71411.08 s0.723
13SciPy RK45SciPy
100%
4.351,3502.63 s0.723
14TRBDF2external
100%
4.031,6867.82 s0.714

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 →

SolvScout · free

Profile your problem for free

This page shows one published benchmark cell. SolvScout fingerprints your ODE, compares it to the full corpus, and recommends a solver with the same survival / precision / speed ranking you see here — including when a SciPy arm wins.

SolvSRK · 30-day trial

Run the winner on your machine

SolvSRK is the stiffness-adaptive integrator behind the SolvSRK column in these tables. Create an account, activate a machine, and take a 30-day trial — same binary you'd ship after purchase.

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_swarm_track_fusion_n_5_dense_splitting_2026,
  title        = {Resonix Evidence Portal: Swarm Track Fusion N=5 dense splitting},
  author       = {{Resonix Labs (Canada) Inc.}},
  year         = {2026},
  howpublished = {\url{https://resonix.tech/evidence/problems/swarm-track-fusion-n-5-dense-splitting}},
  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