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 › L6 · Experience
L6 · Experience

Visualizing Uncertainty So Operators Can Judge It

The AI's confidence is never hidden behind a single number: distributions, bands, and hatching let operators see how much to trust each estimate on both machines.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L6 · EXPERIENCE & VISUALIZATIONHow people see, steer, and review the plant.1Control-Room 3D Twinlive overlays2Plant-Floor SCADAoperations HMI3Mobile Engineeringfield access4Alerting UXtriage & escalation5DashboardsKPIs & health6Replayincident reviewMACHINE TIESurfaces the L3 twin state and L5 copilots to human operators.KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATOREXPERIENCE & VISUALIZATIONSHEET 08REV. 2026-08L6 · AI-NATIVE STACK
L6 · Experience & Visualization — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

Uncertainty is first-class, not a footnote

An estimate without its uncertainty is a trap: it looks equally authoritative whether the twin is confident or guessing. Every quantitative L6 surface therefore carries visible uncertainty. The twin's surrogate models and PINNs produce both a value and an uncertainty (via ensembles, dropout, or predictive variance), and L6 renders that uncertainty in a form matched to the display.

Encodings by context

WhereUncertainty encoding
Time series / trendsshaded confidence band around the line
3D twin overlaydesaturation + diagonal hatch on low-confidence regions
KPI tilesmargin-to-limit shown with a band, not a point
Forecasts (predictive shadow)fan chart widening with horizon
Anomaly alertsexplicit model confidence 0..1 on the card

Aleatoric uncertainty (irreducible measurement noise) and epistemic uncertainty (the model being out of its training distribution) are shown differently, because they demand different responses. Wide aleatoric bands mean a noisy sensor; growing epistemic uncertainty means the machine has drifted into a regime the model has not seen — a cue to weight the AI less and physics/operator judgment more.

python
# ensemble gives value + both uncertainty kinds for display
preds = [m(x) for m in ensemble]        # K surrogate members
mu    = mean(preds)
epi   = var(preds)                       # spread across members -> epistemic
alea  = mean([m.noise_var(x) for m in ensemble])  # per-member noise -> aleatoric
return dict(value=mu, band=sqrt(epi+alea), epistemic=epi, aleatoric=alea)

Calibration matters more than magnitude

A confidence display is only useful if it is calibrated — if 80% confidence is right about 80% of the time. Calibration is tracked continuously (reliability diagrams computed offline) and a miscalibrated model's confidence is visibly flagged so operators do not over-trust it. This ties directly to trust and override UX: the whole point of showing uncertainty is to make the override decision well-informed.

The encoding is also matched to how fast a decision must be made. A wide band on a slow process trend invites investigation; a wide band on the disruption-risk forecast demands immediate weighting of the human's own read of the plasma. Uncertainty is never rendered as a single scalar tucked in a corner, because a corner number is ignored under load. It is drawn on the same axes as the value it qualifies, at the same visual weight, so the operator cannot read the estimate without also reading its doubt. Provenance completes the picture — see confidence and provenance display.

Content reviewed August 2026 · design-and-simulation stage