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

Plant State Machine

The explicit plant-wide states and the guarded transitions between them - the backbone that makes every other resiliency behavior legible.

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.

One authoritative state

Resiliency starts with a single, authoritative plant state. Ambiguity about what mode the machine is in is itself a failure mode. The stack defines a finite set of plant modes with guarded transitions; only one supervisor may command a transition, and every transition has explicit entry conditions and a defined fallback. Both machines share the same skeleton with machine-specific guards.

Mode x (energy, admits)
OFFLINEcoldmaintenance accessSTANDBYcryo readyarm requestsARMEDfields upstart sequenceOPERATEplasmacontrol loopsDERATEreducedpartial serviceSAFINGdrainingprotective actionsFAULTlatchedoperator review

Guarded transitions

A transition fires only when its guard evaluates true against the twin state. Illegal transitions are refused, not attempted. The most important edges are the ones toward lower energy: OPERATE to DERATE, DERATE to SAFING, and any mode to FAULT, which are always reachable and take priority over productive commands.

python
EDGES = {
  ('STANDBY','ARMED'): guard_interlocks_ready,
  ('ARMED','OPERATE'): guard_scenario_converged,
  ('OPERATE','DERATE'): guard_degradation_detected,
  ('DERATE','SAFING'): guard_limit_approaching,
  ('*','FAULT'): guard_protective_trip,   # always available
}
def step(cur, req, twin):
    g = EDGES.get((cur, req)) or EDGES.get(('*', req))
    return req if (g and g(twin)) else cur

Why it aids resiliency

A well-defined state machine makes failover, degradation, and safing composable: each is just a set of edges. It also makes postmortem exact, because the state trace is unambiguous. The safe-ward edges are detailed in Safe States and the degraded edges in Graceful Degradation.

Content reviewed August 2026 · design-and-simulation stage