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 › Resiliency & Operations
Resiliency & Operations

Quench Detection and Protection

The millisecond loop that catches a spreading normal zone in the superconducting coils and dumps stored energy safely.

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.

Why quench is special

In a superconducting magnet a quench is the transition of part of the winding to a resistive (normal) state. If the normal zone spreads faster than protection acts, the coil's own stored energy heats that spot and can damage it. For the breeder at 16.84 T peak field this is the highest-severity fast fault; for the burner the stressed 26.49 T plug makes it more acute still. Detection must happen in milliseconds and protection must be independent of the supervisory network.

Detection

The signature is a resistive voltage that cannot be explained by inductance. Co-wound voltage taps and bridge arrangements subtract the inductive component so the resistive residual stands out. The AI contribution is discriminating a true quench from noise, ramp transients, and sensor artifacts fast enough to avoid both false dumps and missed quenches.

python
def quench_detect(taps, L, dIdt, R_lead, I, thresh_V, persist_ms, dt_ms):
    V_res = taps.total() - (L * dIdt + R_lead * I)
    if V_res > thresh_V:
        quench_detect.count += dt_ms
    else:
        quench_detect.count = 0
    return quench_detect.count >= persist_ms   # require brief persistence
quench_detect.count = 0

Protection

The protection path is hard-wired and supervisor-independent so it acts even if the control plane is down - this is why quench protection anchors the safe-state guarantee. Slow precursors to quench (cooling-margin erosion) are tracked as RUL so many quenches become scheduled interventions instead.

Content reviewed August 2026 · design-and-simulation stage