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

Neural Operators: DeepONet and Fourier Neural Operators

Neural operators learn mappings between function spaces, so one trained model returns a whole equilibrium or field for a new profile, not a single point solution.

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.

Learning operators, not functions

A PINN solves one PDE instance; a neural operator learns the solution operator itself - the map from input functions (profiles, boundary data, coil currents) to output functions (the full field). Once trained, it returns an entire breeder equilibrium or burner potential profile for a new input in one pass, ideal for scenario sweeps and the twin's fast path.

text
Operator learning target:

  G : a(x)  ->  u(x)      (input function -> solution function)

  DeepONet:  G(a)(y) = sum_k  b_k(a) * t_k(y)
     branch b_k : encodes input function a (sampled)
     trunk  t_k : encodes query location y

  Fourier Neural Operator (one layer):
     u <- sigma( W u + F^-1( R . F u ) )
     F : FFT ,  R : learned spectral weights (low modes)

DeepONet structure

A DeepONet factorizes the operator into a branch network that reads the input function and a trunk network that reads the query coordinate; their inner product gives the output at that point. This separation lets it evaluate the solution at any location and generalize across input functions drawn from the training distribution of breeder profiles.

Fourier neural operators

An FNO parameterizes the operator in the spectral domain: it transforms the field, multiplies low Fourier modes by learned weights, and transforms back. Because it acts on modes rather than a fixed grid, it is discretization-invariant - trainable at one resolution and evaluable at another - and efficient for the smooth, globally-coupled structure of equilibrium fields.

python
# FNO spectral convolution layer (schematic)
def fno_layer(u, R, W):
    u_hat = rfft(u)
    u_hat[:modes] = R @ u_hat[:modes]   # learned weights, low modes
    return relu(irfft(u_hat) + W @ u)   # spectral + local mixing

Role in the stack

Neural operators are the twin's reduced-order accelerators for whole-field predictions and the engine behind fast scenario sweeps. Like PINNs they are benchmarked against FEM and carry uncertainty; on the burner their outputs inherit the 166-830x regime caveat. They speed exploration; they do not replace the verified offline solvers or the honesty attached to burner physics.

Operator learning is where the stack gets the most speed per model: one operator covers a family of solves the twin would otherwise iterate one by one.

Content reviewed August 2026 · design-and-simulation stage