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 › Physical Interfaces
Physical Interfaces

REBCO Magnet Command Interface

The command path to the REBCO coil supplies carries current-ramp trajectories under hard slew and field-envelope limits, revalidated at the FPGA edge.

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.

What the interface drives

Both machines use high-temperature REBCO magnets: the breeder to reach 16.84 T peak field (8 T on-axis) and hold the negative-triangularity equilibrium; the burner to reach the 26.49 T plug and 17 T throat. The command interface delivers current setpoints and ramp rates to each coil's power supply, never a raw voltage.

Command structure

python
# per-coil command frame (L3 -> L1)
cmd = { 'coil_id': k,
        'I_target': I_k,        # A
        'dIdt_max': slew_k,     # A/s, clamped at edge
        'ramp':     traj_k }    # optional shaped trajectory
# L1 edge revalidation before it reaches the supply
assert I_k <= I_limit[k]
assert slew_k <= dIdt_limit[k]
assert field_envelope_ok(I_vector)   # cross-coil peak-field check

The cross-coil field-envelope check is essential: individual coil currents can each be legal while their combination exceeds the local peak-field limit on a conductor. This check runs at the L1 edge because it must complete before any supply acts.

Interface owner and timing

Setpoints originate in the breeder shape MPC or burner plug controller, but the magnet interface treats them as advisory: a quench trip or field-envelope violation overrides intent immediately. This is a design-and-simulation specification; the supplies are exercised against the twin before hardware commissioning.

Content reviewed August 2026 · design-and-simulation stage