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

Anomaly Detection from Telemetry

Catching the fault you did not enumerate - unsupervised detection of behavior the plant has never shown before.

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.

Beyond the fault dictionary

FMEA and FDI catch the faults you anticipated. Anomaly detection catches the ones you did not. It learns the manifold of normal plant behavior from telemetry and flags departures from it, without needing a labeled example of each fault. On machines operating in un-characterized regimes - the burner especially - this is essential, because the fault dictionary is necessarily incomplete.

Reconstruction-residual method

A common approach trains a model to reconstruct normal telemetry; on anomalous data it reconstructs poorly, and the reconstruction error is the anomaly score. A threshold on the score, calibrated to a false-alarm budget, raises a flag that routes to human review or conservative derate rather than an immediate trip.

python
def anomaly_score(x, model):
    x_hat = model.reconstruct(x)
    return float(((x - x_hat) ** 2).mean())

def triage(score, warn, alarm):
    if score > alarm: return 'derate_and_review'
    if score > warn:  return 'flag_for_operator'
    return 'nominal'

Discipline required

Because the burner plug regime is 166-830x beyond any device, anomaly detection there is operating far outside its training support; its outputs are treated as low-confidence and always defer to the honest plug gate. Confirmed anomalies feed FDI and postmortem.

Content reviewed August 2026 · design-and-simulation stage