Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › Real-Time Control & Safety
Real-Time Control & Safety

Mirror Throat Field Supervision

The 17 T throat field sets the mirror ratio that confines the burner plasma; the supervisor guards both the field and the coil producing it.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

The throat as a confinement gate

In the tandem mirror, the throat field — 17 T at the burner design point, against the 26.49 T plug — sets the mirror ratio that determines which particles are confined and which escape through the loss cone. The throat supervisor monitors this field and the coil producing it, because a throat that sags changes the confinement physics, and a throat coil that overstresses is a structural hazard like the plug coil.

python
def mirror_ratio(B_throat_T, B_center_T):
    return B_throat_T / B_center_T

def throat_permit(B_throat_T, target_T, coil_stress_ratio, tol=0.05):
    field_ok  = abs(B_throat_T - target_T) <= tol * target_T
    stress_ok = coil_stress_ratio < 1.0
    return field_ok and stress_ok

# 17 T throat, 3 T center -> mirror ratio ~5.7 (illustrative)
print(round(mirror_ratio(17.0, 3.0), 2))

Coupled to the plug

The throat and plug fields are not independent knobs: the confinement picture depends on their ratio and profile together. The supervisor therefore cross-checks throat and plug states and trips if their relationship leaves the modeled envelope, not just if either exceeds an individual limit. This coupling is why plug and throat supervision are designed as one subsystem.

Because confinement depends on the plug and throat together, the supervisor treats them as a coupled pair and can trip on their relationship even when each is individually inside its own limit. This catches failure modes that per-signal thresholds miss, such as a throat sag that leaves the mirror ratio too low while every scalar reading still looks nominal. The coupled check is set conservatively for the same reason the plug envelope is: the operating regime is far outside anything experiment can yet corroborate.

Like the plug, the throat coil's stress is enforced with the overstress protection discipline and the energy extraction path. Together with the ambipolar potential envelope, throat supervision completes the burner confinement safety set — all designed to respect the burner's open physics gates rather than assume them away.

Content reviewed August 2026 · design-and-simulation stage