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

Quench Protection Reflex Chain

A superconducting magnet losing superconductivity must be detected and de-energized in milliseconds; the quench chain is the fastest shared reflex on both machines.

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.

From detection to a de-energized magnet

Both machines run high-field superconducting magnets — the breeder at up to 16.84 T peak field, the burner at 26.49 T plug and 17 T throat. If any conductor loses superconductivity (a quench), the local resistive heating can damage the magnet unless the stored magnetic energy is extracted fast. The quench protection chain detects the normal zone, confirms it, and drives the energy into external dump resistors within the magnet's safe hot-spot time.

python
def quench_chain(normal_zone_voltage, threshold_V, confirm_windows, dump):
    if normal_zone_voltage <= threshold_V:
        return 'permit'
    # brief confirmation to reject noise, then irreversible dump
    if confirm_windows >= 2:
        dump.fire()
        return 'DUMP fired -> energy to resistors'
    return 'arming'

def hotspot_ok(detect_ms, dump_time_ms, allowable_ms):
    return (detect_ms + dump_time_ms) <= allowable_ms

The budget that must be met

The whole chain — detect, briefly confirm, fire the dump, extract the current — must complete inside the conductor's allowable hot-spot time, or the local temperature exceeds safe limits. Detection therefore favors fast, robust indicators; confirmation is just long enough to reject noise; and the dump path is pre-armed so firing is immediate.

The chain is the fastest shared reflex on both machines, so it sets a floor on the whole reflex-tier timing design: whatever budget the hot-spot time allows becomes the target the detection, confirmation, and dump stages must fit inside with margin. Every microsecond spent confirming a quench to reject noise is a microsecond taken from the dump, so the confirmation window is tuned to the minimum that rejects known transients and no longer, and the dump path is pre-armed so firing adds no mechanical delay.

Detection timing specifics are in REBCO quench detection timing, and the extraction hardware in magnet energy extraction. The chain shares its budget-and-margin methodology with disruption mitigation latency; both race a physical clock.

Content reviewed August 2026 · design-and-simulation stage