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

Failure Response Decision Table

Every anticipated fault maps in advance to a defined response and a defined safe state, so the reflex tier looks up the answer instead of computing it under duress.

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.

Decide before, not during

Under a fast fault there is no time to reason about the right response. Kronos decides every anticipated fault's response in advance and encodes it as a decision table the reflex tier consults. The table maps fault class to action, target safe state, and which layer owns the response. Novel or unclassified faults default to the most conservative action: trip to safe state.

Representative entries

FaultOwning layerActionTarget state
quench detectedreflexdump magnetde-energized
imminent VDEreflexmitigate + terminatemitigated shutdown
plug coil overstressreflexcap/dump currentlow-stress hold
ambipolar collapsereflexcontrolled ride-downbenign relax
stale supervisory linkreflexholding lawsafe hold
unclassified faultfailsafetripdefined safe state
python
def respond(fault_class, table):
    # look up, don't reason; default to the safest action
    return table.get(fault_class, ('failsafe', 'trip', 'safe_state'))

The table is not a runtime optimizer; it is a pre-agreed contract between the physics analysis, the safety authority, and the control system. Each row is justified by hazard analysis and validated by fault injection in commissioning. Adding a machine capability means adding and validating rows, not teaching a model to improvise.

Keeping the response predefined also makes the whole safety system testable: each row is a case that can be injected and checked, and the table's coverage of the hazard analysis can be audited directly. Novelty is handled conservatively rather than cleverly — an unrecognized fault falls through to the failsafe default and trips, because a safe pause on an unfamiliar event is always preferable to an improvised response computed under time pressure with incomplete information. Extending the machine's capability therefore means adding and validating rows, subject to the same hazard analysis and fault injection as the rest, rather than teaching a model to react to situations no one designed for.

The table ties the whole category together: it names the safe states each fault targets, assigns faults to the reflex or supervisory tier, and its conservative default is the ML-independent failsafe. Every response it prescribes is recorded for the safety case.

Content reviewed August 2026 · design-and-simulation stage