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 › Mathematical Foundations
Mathematical Foundations

Observability and State Estimation

Whether the twin can infer the internal state from external diagnostics is a precise property - observability - that governs where estimates are trustworthy.

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.

Can the state be seen?

Before trusting any estimator, one must ask whether the measurements even determine the state. Observability is that property: a system is observable if its full internal state can be reconstructed from the output history. For the breeder, magnetics alone leave the internal current profile weakly observable - the formal reason kinetic diagnostics are needed.

text
Linear observability (discrete):

  Observability matrix
    O = [ H ; H F ; H F^2 ; ... ; H F^{n-1} ]

  System observable  <=>  rank(O) = n (full)

Observability Gramian (informativeness):
  W_o = sum_{k=0}^{inf} (F')^k H' H F^k
  eigenvalues of W_o -> how strongly each mode is observed

Degrees of observability

Observability is not just yes/no. The observability Gramian's eigenvalues quantify how strongly each state direction is seen; small eigenvalues mark near-unobservable modes where estimates rest on the model, not data. The stack maps these weak directions so the twin knows which parts of its state are diagnostic-backed and which are model-inferred - and widens uncertainty accordingly.

python
# observability check + weak-direction map
O = observability_matrix(F, H)
assert matrix_rank(O) == n            # full observability?
Wo = observability_gramian(F, H)
w, V = eigh(Wo)
weak = V[:, w < w.max()*ratio]        # poorly-observed directions
# widen twin uncertainty along 'weak'; flag to MPC

Sensor placement and honesty

Observability drives diagnostic design: sensors are placed to make the safety-critical states - shape descriptors, stability margins, plug potential - strongly observable. Where coverage is inherently thin, the stack does not pretend otherwise; it reports a degraded-observability condition rather than a confident but unsupported estimate. On the burner, whole regions are only model-observable given the absence of a comparable device, which is stated plainly.

Observability analysis is the bridge from raw diagnostics to trustworthy state: it tells the estimator, and the operators, exactly how much of the machine they can actually see.

Content reviewed August 2026 · design-and-simulation stage