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

Magnet Energy Extraction and Dump

When a magnet must be de-energized fast, its stored energy is driven into external resistors along a fail-safe path that defaults to dumping on loss of control.

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.

Getting the energy out safely

A high-field magnet stores a large amount of energy in its field. On a quench or overstress trip that energy must leave the magnet quickly and land somewhere safe — external dump resistors — rather than depositing in the fault. The extraction path is the actuator end of the quench and coil-stress reflexes, and it is engineered to fail toward dumping, not toward holding current.

python
def dump_time_constant(inductance_H, dump_resistance_ohm):
    return inductance_H / dump_resistance_ohm     # L/R decay

def peak_dump_voltage(current_A, dump_resistance_ohm):
    return current_A * dump_resistance_ohm        # must stay within insulation

# larger R -> faster dump but higher voltage: a bounded trade
tau = dump_time_constant(inductance_H=5.0, dump_resistance_ohm=0.5)  # 10 s
assert peak_dump_voltage(current_A=10_000, dump_resistance_ohm=0.5) < 6000

The dump-rate trade

A larger dump resistance extracts energy faster (shorter L/R time) but raises the peak voltage across the coil, which the insulation must survive. The dump resistance is sized to extract energy fast enough to protect the hot spot while keeping voltage within the insulation limit. This is a bounded, pre-computed trade, not a runtime decision.

The extraction path is engineered fail-safe from the switch outward: the current is held by an element that opens on loss of power, loss of hold, or an explicit trip, so any failure of the controlling logic diverts current into the dump rather than trapping it in the magnet. This inversion — where doing nothing means dumping, and holding requires active, healthy control — is what lets the extraction path sit behind the ML-independent failsafe and be trusted to act when everything upstream has gone dark.

Extraction is invoked by the quench protection chain and by plug-coil overstress protection, and it is a component of the fail-safe state for both machines. Its fail-safe-by-default behavior is what lets it sit behind the ML-independent failsafe.

Content reviewed August 2026 · design-and-simulation stage