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

PINN Formulation for Grad-Shafranov

The breeder's equilibrium PINN encodes Delta* psi with the true source and negative-triangularity boundary, giving a mesh-free solver fast enough for the twin.

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.

Setting up the equilibrium PINN

The breeder equilibrium PINN represents psi(R,Z) as a network and drives its Grad-Shafranov residual to zero over collocation points inside the plasma, while matching the negative-triangularity boundary. Because the source depends on psi through the free profiles p'(psi) and F F'(psi), the loss couples the network to those profile parameterizations.

text
PINN loss for Grad-Shafranov:

  L = w_pde * mean_i | Delta* psi_theta(x_i)
                       + mu0 R_i^2 p'(psi_theta)
                       + F F'(psi_theta) |^2
    + w_bc  * mean_j | psi_theta(x_j) - psi_b |^2   (LCFS, delta -0.30)
    + w_ax  * | psi_theta(x_axis) - psi_axis |^2

  Delta* from autodiff (see PINN fundamentals)

Encoding the operating point

The breeder's canonical parameters enter through normalization and the profile parameterization: 9.66 MA total current fixes the integral of J_phi, 16.84 T peak field and 8 T on-axis fix F near axis, and the boundary term carries delta -0.30. Non-dimensionalizing R, Z, and psi keeps the loss terms comparably scaled, which conditioning demands.

python
# equilibrium PINN training step (schematic)
def step(net, prof, coll_pts, bdy_pts):
    r_pde = gs_residual(net, coll_pts, prof.pprime, prof.ffprime)
    r_bc  = net(bdy_pts) - psi_boundary            # delta -0.30 shape
    Ip    = integrate_Jphi(net, prof) - 9.66e6     # current constraint
    L = w1*mse(r_pde) + w2*mse(r_bc) + w3*Ip**2
    return L                                       # backprop -> theta

Role in the loop

Once trained over a family of profiles and shapes, the PINN evaluates a full equilibrium in one forward pass, feeding the KRONOS-CTRL twin's MHD module inside the 1-100 ms L3 budget. It is retrained offline against the FEM solver, and its per-point residual is exposed as a confidence field so the twin can down-weight regions where the PINN is straining.

This equilibrium PINN is a design-and-simulation tool validated against FEM; it will be re-anchored to reconstructed equilibria after FOAK first tritium ~2030, but it makes no net-gain claim.

Training the profile family

The PINN is not trained on a single equilibrium but on a parameterized family: profiles p'(psi) and F F'(psi) are drawn across their admissible ranges, and boundary shape descriptors are varied around delta -0.30. The network conditions on these parameters as extra inputs, so one trained model spans the operating space rather than a single point. This is what lets the twin query equilibria for candidate scenarios without retraining.

Curriculum helps: training starts on smooth, well-behaved profiles and progressively introduces steeper edge gradients and stronger shaping, so the network builds up the hard features rather than facing them cold. The current constraint against 9.66 MA and the axis and boundary conditions are enforced throughout, keeping every intermediate model a physically admissible equilibrium.

Content reviewed August 2026 · design-and-simulation stage