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

Vertical Displacement Arrest

An elongated negative-triangularity plasma is vertically unstable; the position loop must catch a growing displacement faster than it can run away.

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.

Catching a runaway before it runs

The breeder plasma is shaped with negative triangularity (δ = −0.30) and is vertically elongated, which makes it vertically unstable: a small vertical displacement grows exponentially unless actively opposed. The vertical position loop drives the fast poloidal-field coils to arrest the displacement, and it must have enough bandwidth and enough control authority to win the race against the growth rate.

python
import math
def controllable(gamma_s, loop_bw_hz, u_available, u_needed):
    # need both fast enough loop AND enough control authority
    fast_enough = loop_bw_hz >= 5.0 * (gamma_s / (2*math.pi))
    strong_enough = u_available >= u_needed
    return fast_enough and strong_enough

# growth rate gamma sets the minimum loop bandwidth
assert controllable(gamma_s=700.0, loop_bw_hz=1200.0,
                    u_available=1.0, u_needed=0.7)

Two failure modes, two guards

The loop is designed with explicit reserve authority so that a routine disturbance never runs the coils to saturation; the reserve exists specifically for the off-nominal kick. When both the bandwidth and the authority reserve are consumed, the design does not chase a lost cause — it recognizes the incipient displacement event and hands off to mitigation while a controlled termination is still possible, converting a failed catch into a mitigated shutdown rather than a full disruption.

The loop period is derived from the growth rate in control-loop timing math, and the authority margin is part of stability margins and control headroom. When both margins are exhausted, the failsafe recognizes an imminent VDE and arms the disruption mitigation reflex before the plasma is lost, so a failed catch degrades to a mitigated shutdown rather than an uncontrolled one.

Content reviewed August 2026 · design-and-simulation stage