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 › Resiliency & Operations
Resiliency & Operations

End-to-End Timing Model

The nested timescales the stack must respect, from sub-millisecond plasma control to multi-year campaigns, and how each loop is budgeted.

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.

Timescales are nested

Fusion plants are governed by physics that spans more than twelve orders of magnitude in time. Resiliency requires that each control loop closes fast enough for the phenomenon it governs, and that slower loops never block faster ones. The stack is organized as a hierarchy of loops, each with a deadline and a fallback if the deadline is missed.

Loop x (deadline, phenomenon)
Magnet quench detect/protect~1-10 mscoil normal-zone growthPlasma vertical/shape control~0.1-1 msMHD, vertical displacementDisruption prediction/mitigation~1-30 msprecursor to terminationActuator command (heating, fueling)~1-10 mskinetic profile steeringTwin state estimate~10-100 msreconstruct plasma stateSupervisory sequencing~0.1-1 sshot phase transitionsPredictive maintenancehours-daysdegradation trendsCampaign / duty schedulingdays-yearsfleet availability

The budget principle

A loop's latency budget is the sum of sensing, transport, inference, decision, and actuation. The rule is that the worst-case path (WCET) plus jitter must be less than the phenomenon's characteristic time with margin. For the breeder, vertical stability of an elongated, negative-triangularity plasma is the tightest hard-real-time constraint; for the burner, plug-field and RF stability dominate.

python
def loop_ok(sense_ms, xport_ms, infer_ms, act_ms, jitter_ms, deadline_ms, margin=2.0):
    wcet = sense_ms + xport_ms + infer_ms + act_ms + jitter_ms
    return wcet, wcet * margin <= deadline_ms

# vertical control example (must beat ~1 ms with 2x margin)
print(loop_ok(0.05, 0.05, 0.20, 0.10, 0.05, deadline_ms=1.0))
# (0.45, True)  -> 0.45 ms wcet, 0.90 ms with margin < 1 ms

Fast loops run on deterministic hardware (FPGA / real-time control nodes); slow loops run on the twin and fleet layers. A missed slow-loop deadline degrades optimization quality; a missed fast-loop deadline triggers a protective action. See Control Loop Latency Budget and Quench Detection.

Content reviewed August 2026 · design-and-simulation stage