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

DEC Fault Isolation and Ride-Through

The burner's direct energy conversion couples the plasma to an electrical load; the reflex tier isolates load-side faults before they perturb the plasma.

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.

Two systems that must not drag each other down

The burner uses direct energy conversion (DEC) to turn escaping charged-particle energy into electricity, coupling plasma physics to a power-electronics load. That coupling is a fault path in both directions: a load-side fault (a short, a grid disturbance) could perturb the plasma, and a plasma-side transient could stress the converter. The reflex tier isolates the two so a fault on one side is contained, not transmitted.

python
def dec_action(load_fault, dv_dt, plasma_ok, limits):
    # isolate first, ask questions later
    if load_fault or abs(dv_dt) > limits['dv_dt']:
        return 'ISOLATE load -> ride-through on plasma side'
    if not plasma_ok:
        return 'DECOUPLE DEC -> controlled ride-down'
    return 'run'

Ride-through, then decide

The dv/dt limit is the fast trigger: a rapid collector-voltage swing is the earliest sign of trouble on either side, and the reflex trips on it before slower protections would react. This is the same fast-slow split used across the reflex tier — act on the fastest robust indicator, defer the reasoning to the supervisory layer.

DEC fault isolation is part of the burner safe-state definition: a safe burner is one where the DEC has ridden down in a controlled way and the plasma is on a benign holding path. It does not touch the confinement gates, but it must never be the thing that trips the plasma — hence the isolation-first design. Grid-side behavior and availability are discussed under the honest availability gate.

Content reviewed August 2026 · design-and-simulation stage