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 › MLOps & Learning
MLOps & Learning

Regime Drift Detection on Plasma State

Regime monitors detect when the machine crosses into a plasma operating regime outside a model's validated envelope and gate that model accordingly.

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.

Staying inside the validated envelope

Every deployed model has an explicit validity envelope: the region of operating space over which it was trained and validated. Regime drift detection watches the live plasma state vector and asks a single question each cycle: is the machine still inside the envelope of the model currently relying on this state? Outside it, the model's predictions are extrapolations and must not carry authority.

For the breeder this envelope is expressed in confinement and stability coordinates (normalized beta, q95, Greenwald fraction, triangularity around the canonical negative delta -0.30). For the burner it is expressed in mirror-confinement coordinates (plug field toward the 26.49 T design point, mirror ratio, ambipolar potential). Crossing a boundary is not an error; it is expected as campaigns explore. The response is to gate, not to force the model.

Envelope representation

python
def in_envelope(state, mu, cov_inv, d_max):
    d = mahalanobis(state, mu, cov_inv)
    return d <= d_max          # else: model output is extrapolation

# On breach: model.authority = 0 ; fall to certified fallback ;
# log operating point as an active-learning candidate for L0

Regime breaches are gold for active learning: they mark exactly the operating points where the model is weakest and new data is most valuable. The breach both protects the machine now and schedules the L0 work that will extend the envelope later, closing the continual-learning loop.

Content reviewed August 2026 · design-and-simulation stage