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

Graph Neural Networks for Coupled Subsystems

The plant's physics couples magnet, plasma, blanket, and conversion train; a GNN over that coupling graph learns cross-subsystem dynamics the twin needs.

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.

Coupling is a graph

The machines are strongly coupled: the MHD equilibrium sets the neutron source, neutronics deposits heat, thermomechanics deforms geometry, and (on the burner) direct energy conversion sets the potential that changes confinement. Represent each subsystem as a node and each physical coupling as an edge, and the whole plant is a graph a GNN can model as a dynamical system.

text
Coupled-subsystem graph (nodes / edges):

  nodes: {plasma/MHD, neutronics, thermomechanics, magnets,
          power/DEC, fuel-cycle}
  edges: physical couplings, each with a transfer relation

  State update per twin step (learned message passing):
    s_v(t+1) = f_v( s_v(t), AGG_{u~v} g_{uv}( s_u(t), s_v(t) ) )

Learning the coupling operators

Rather than hand-couple full solvers every step, the GNN learns the edge transfer relations from the offline high-fidelity coupled simulations. Each edge function g_uv approximates how one subsystem's state perturbs its neighbor. The node update integrates incoming influences, giving a fast surrogate for the weakly-coupled fixed-point solve KRONOS-CTRL otherwise runs.

python
# coupled-subsystem step as a GNN (schematic)
def twin_step(state, graph):
    msgs = {}
    for (u, v) in graph.edges:
        msgs.setdefault(v, []).append(g_edge[u,v](state[u], state[v]))
    new = {}
    for v in graph.nodes:
        new[v] = f_node[v](state[v], aggregate(msgs.get(v, [])))
    return new     # one coupled advance, faster than nested solves

Physics guardrails

A learned coupling can violate conservation. The stack constrains the GNN to respect the invariants that must hold: energy and particle balance across edges, and sign conventions on transfers. Where a learned edge disagrees with the reference solver beyond tolerance, the twin falls back to the true coupled solve for that step. This keeps speed without abandoning conservation.

On the burner the DEC-to-confinement edge carries the extrapolation caveat: its transfer relation is drawn from a regime 166-830x beyond any device, so that edge's uncertainty dominates the coupled state and is reported.

Content reviewed August 2026 · design-and-simulation stage