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

Control-Loop Timing Math

Loop period is not chosen by convenience; it is derived from the closed-loop bandwidth required to stabilize the fastest mode the loop must 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.

From physics bandwidth to loop period

Each control loop must sample fast enough to observe and act on the dominant mode it stabilizes. A common engineering rule places the sampling rate at 20–40× the closed-loop bandwidth so that the discrete controller behaves like its continuous design and the added phase lag stays small.

python
import math
def loop_period(f_bw_hz, oversample=30):
    # sample well above the closed-loop bandwidth to bound phase lag
    fs = oversample * f_bw_hz
    return 1.0 / fs                      # loop period, seconds

def phase_lag_deg(T_loop, f_bw_hz):
    # half-sample computational delay -> phase lag at bandwidth
    return 360.0 * f_bw_hz * (T_loop/2.0)

T = loop_period(2_000)                   # 2 kHz mode -> ~17 us period
print(round(phase_lag_deg(T, 2_000),1)) # ~6 deg lag at bandwidth

Vertical stability sets the pace

On the breeder, the vertical instability of an elongated, negative-triangularity (δ = −0.30) plasma is the fastest mode the position loop must catch. Its growth rate sets the required loop bandwidth, which sets the period, which the timing budget must then honor with margin.

python
def stabilizable(growth_rate_s, loop_bw_hz, margin=5.0):
    # loop bandwidth must exceed the instability growth rate
    gamma_hz = growth_rate_s / (2*math.pi)
    return loop_bw_hz >= margin * gamma_hz

assert stabilizable(growth_rate_s=800.0, loop_bw_hz=1500.0)

Oversampling far above the closed-loop bandwidth also buys robustness to the model error the loop was designed against: the discrete controller stays close to its continuous prototype, so the phase and gain margins computed on paper survive discretization. Under-sampling to save compute is self-defeating here, because the phase lag it introduces is spent from the same stability budget that model uncertainty and transport delay already draw down. The period is therefore chosen from physics first and hardware second, and a loop that cannot be run fast enough on the available fabric is redesigned or re-partitioned rather than run at an unsafe cadence, because a loop sampled too slowly is not a slower controller but an unstable one.

The same derivation runs for the burner's ambipolar potential and end-plug density loops. Where a mode is faster than any digital loop can chase, control is not attempted — the fault is instead handled by a hardware reflex or a passive stabilizing structure. See stability margins and control headroom and vertical displacement arrest.

Content reviewed August 2026 · design-and-simulation stage