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

Operating Narrative: Cold Start

A plain sequence from a fully cold machine to first plasma, and every point where the stack can hold, abort, or safe the plant.

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.

From cold iron to first plasma

A cold start is the highest-risk routine operation because nearly every subsystem transitions state at once. The stack sequences it as a guarded state machine: each phase has entry conditions, an abort path, and a timeout. Nothing advances until the twin confirms the prior phase converged. This narrative applies to the breeder (Hyperion); the burner variant is in the burner narrative.

Ordered phases

python
PHASES = ['vacuum','cooldown','energize','breakdown','ramp','flattop']
def cold_start(twin):
    for ph in PHASES:
        enter(ph)
        if not twin.converged(ph, timeout=phase_timeout[ph]):
            return safe_abort(ph)      # hold in last safe state
    return 'flattop_ok'

Where it can stop

At any phase the twin can raise a hold (recoverable pause), an abort (retreat to the prior safe state), or a safe (drive the whole plant to a defined low-energy configuration). Magnet energization is the most consequential gate: a normal-zone signature during the ramp triggers a protective discharge rather than a retry. See Quench Detection and Safe States.

Because Hyperion is a design-and-simulation study before FOAK ~2030, cold-start is exercised entirely against the digital twin with injected faults at each phase boundary, building the guard logic that will run on hardware.

Content reviewed August 2026 · design-and-simulation stage