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

Fault Detection and Isolation

Detecting that something is wrong, then locating which component - the FDI layer that every mitigation depends on.

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.

Detect, then isolate

Fault Detection and Isolation (FDI) answers two questions in order: is the plant behaving abnormally, and if so, which component is responsible. Detection without isolation triggers blunt safing; isolation lets the stack take a targeted, minimal action. FDI runs continuously against both machines and feeds the state machine's degraded and safing edges.

Residual-based detection

The core technique is the residual: the difference between a measured signal and the twin's prediction of it. Under nominal operation residuals are small and noise-like. A structured pattern of residuals across signals is a fault signature. Isolation matches that pattern against a fault dictionary built from the FMEA.

python
import numpy as np
def fdi(meas, pred, cov_inv, signatures, chi2_thresh):
    r = meas - pred                      # residual vector
    score = float(r @ cov_inv @ r)       # normalized magnitude
    if score < chi2_thresh:
        return ('nominal', None)
    # isolate: nearest fault signature by direction
    best = max(signatures, key=lambda s: r @ s.direction / (np.linalg.norm(r)+1e-9))
    return ('fault', best.name)

Isolation matrix

A fault-signature matrix maps which residuals light up for which component fault. A column that is unique isolates cleanly; overlapping columns need more sensors or the twin to break the tie.

residual\fault (col=fault)
100110011001

Once isolated, the fault routes to the smallest sufficient response: a sensor fault to virtual-sensor substitution, an actuator fault to failover, a plasma-physics precursor to disruption mitigation. Ambiguous isolation defaults conservatively toward degradation or safing.

Content reviewed August 2026 · design-and-simulation stage