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

Markov Availability Models

State-based reliability modeling that captures degraded modes and repair dynamics an RBD cannot, including graceful-degradation rungs.

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.

When structure is not enough

Reliability block diagrams assume components are simply up or down. Real plants have in-between states: degraded operation, awaiting-repair, in-repair, redundancy-exhausted. Markov models represent these as states with transition rates (failures and repairs), letting us compute the long-run fraction of time in each - including the degraded-but-serving states that graceful degradation creates.

A minimal model

Consider a unit with states UP, DERATE, DOWN. Failures move it down the ladder at rates driven by MTBF; repairs move it back up at rates driven by MTTR. The stationary distribution gives availability as time in UP plus a partial credit for time in DERATE.

rate matrix Q (from x to)
-lam_udlam_uDmu_du-lam_dDmu_Dumu_Dd-
python
import numpy as np
def stationary(Q):
    # solve pi Q = 0, sum(pi)=1  (Q rows sum to zero)
    n = Q.shape[0]
    A = np.vstack([Q.T, np.ones(n)])
    b = np.zeros(n + 1); b[-1] = 1.0
    pi, *_ = np.linalg.lstsq(A, b, rcond=None)
    return pi

def availability(pi, credit=(1.0, 0.5, 0.0)):
    return float(sum(p * c for p, c in zip(pi, credit)))  # DERATE gets 0.5

Why it matters for the gate

Because graceful degradation keeps the plant partly serving, a pure up/down model understates true availability while a naive model can overstate it. The Markov model credits derated service honestly, which is essential when arguing how close a fleet gets to the 0.99982 Tier III target. It still cannot make a single stressed-plug burner reach that target; it shows exactly how far short and why.

These transition rates come from MTBF/MTTR and the derate rungs from graceful degradation; the results feed the plant Monte-Carlo and fleet model.

Content reviewed August 2026 · design-and-simulation stage