Swarm Track Fusion N=7 sparse splitting

ADVANTAGES1 · dim 49

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 →

7-target coordinated-turn tracking with proximity-based dynamic coupling. Per-target state [x,y,z,vx,vy,vz,omega] (dim=49). Sparse initial spacing (300.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 = 7
  • _EPS = 1e-12
  • _STATES_PER_TARGET = 7
  • coupling_strength = 0.5
  • dim = 49
  • gate_sq = 22500
  • noise_table = [0.71074541808, -1.30765721884, -0.259227267386, 1.56795094012, 2.98686229044, -2.51813106421, …] [shape=(28, 601), min=-8.04631729511, 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) = [150, 0, 102.514604422, 19.563497756, 1.25460639678, -1.94754994142, …] [shape=(49,), min=-438.717560482, max=438.717560482]
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=7 sparse splitting (swarm-track-fusion-n-7-sparse-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%
10.0100,3887.34 s0.857
2SciPy LSODASciPy
100%
7.739,2632.80 s0.802
3SciPy RK23SciPy
100%
7.035,3872.70 s0.787
4CVODE BDFexternal
100%
6.947,7133.58 s0.782
5FBDFexternal
100%
6.757,63113.04 s0.780
6SciPy BDFSciPy
100%
6.536,6103.92 s0.775
7CVODE Adamsexternal
100%
6.532,4332.46 s0.773
8SciPy RadauSciPy
100%
6.392,4389.14 s0.769
9SciPy DOP853SciPy
100%
5.8113,2468.31 s0.757
10Vern9external
100%
5.6194,19429.71 s0.751
11Vern7external
100%
5.5130,52221.08 s0.749
12SciPy RK45SciPy
100%
5.351,0083.78 s0.746
13Tsit5external
100%
5.178,91813.08 s0.740
14TRBDF2external
100%
4.432,7679.68 s0.723

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