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 › Security & Zero-Trust
Security & Zero-Trust

Anomaly Detection on the OT Network and Process

Continuous monitoring learns the plant's normal network and process behavior so deviations - a new flow, an odd command pattern - are flagged for response.

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.

Detection complements prevention

Prevention (segmentation, identity, attestation) reduces the odds of compromise; detection assumes some attempts get through and aims to notice them fast. OT is an unusually good place for anomaly detection because the plant's behavior is highly regular: the same controllers talk to the same peers with the same cadence, and a discharge follows known sequences. Anything outside that baseline is suspicious in a way it would not be on a chaotic IT network.

Two layers of baseline

python
# Score a flow against the learned baseline; escalate on high anomaly
def monitor(flow, mode):
    s = baseline.score(flow, context=mode)      # 0..1, higher = stranger
    if s > policy.alert_threshold:
        alert(flow, s)
        record(flow, s)                         # into the audit log
    if s > policy.contain_threshold:
        propose_isolation(flow.src_id)          # human-confirmed, fail-safe

Careful about automated response

On a machine holding a live plasma, automated isolation is dangerous: cutting off a control node mid-discharge could itself be unsafe. So containment actions that touch control are proposed to operators and gated, while the independent safety path handles the physical safe state. Detection informs response; it does not blindly yank controllers offline during operation.

Design status: network and process baselining run against twin-generated traffic and simulated discharges. Tuning false-positive rates on real plant behavior is FOAK-era work; no live reactor traffic exists to learn from yet.

Content reviewed August 2026 · design-and-simulation stage