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

MTBF, MTTR and Spares

The reliability and repair statistics that feed every availability model, and how spares provisioning cuts effective repair time.

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.

The two numbers behind availability

Availability rests on two statistics per component: mean time between failures (MTBF, how often it breaks) and mean time to repair (MTTR, how long to fix). A = MTBF / (MTBF + MTTR). Raising MTBF and lowering MTTR are the only two ways to raise availability, and every resiliency technique acts through one of them.

Estimating them honestly

Pre-FOAK, MTBF for many fusion-specific components has no operating history, so it is estimated from component tests, physics-of-failure models, and analog systems, with wide uncertainty. MTTR depends on access, tooling, and spares. We report both as ranges, which is a primary reason the plant availability comes out as the 0.86-0.995 envelope rather than a single figure.

python
def effective_mttr(diagnose_h, procure_h, repair_h, verify_h, spare_on_hand):
    # a staged spare removes procurement lead time from the repair path
    procure = 0.0 if spare_on_hand else procure_h
    return diagnose_h + procure + repair_h + verify_h

def availability(mtbf_h, mttr_h):
    return mtbf_h / (mtbf_h + mttr_h)

Spares are MTTR insurance

For the burner plug coil there is effectively no spare-swap MTTR because a 26.49 T coil is not a shelf item; this is why the plug is treated as a redundancy-and-derate problem, not a spares problem. Spares strategy is an input to availability modeling and scales at the fleet level. This page quantifies only time, never economics, by rule.

Content reviewed August 2026 · design-and-simulation stage