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

Physics-Informed Neural Networks: Fundamentals

A PINN represents a field as a neural network and trains it to satisfy a PDE via automatic differentiation, turning solving into optimization.

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.

The core idea

A physics-informed neural network (PINN) approximates the solution of a PDE, say psi(R,Z) for the breeder equilibrium, by a neural network psi_theta with weights theta. Instead of fitting data alone, it is trained so its own derivatives satisfy the governing equation at sampled collocation points. Automatic differentiation gives those derivatives exactly, so the PDE residual becomes a loss to minimize.

text
PDE:            N[psi](x) = 0   on domain Omega
Boundary:       B[psi](x) = 0   on boundary dOmega

PINN ansatz:    psi ~ psi_theta(x)   (neural network)

Residual at x:  r_theta(x) = N[psi_theta](x)
  computed with exact autodiff derivatives of psi_theta

Why autodiff makes it work

The differential operator is applied to the network itself. For Grad-Shafranov the loss needs second derivatives of psi_theta with respect to R and Z; autodiff produces these to machine precision, not by finite differences. This is what lets a mesh-free network satisfy an elliptic PDE. The same mechanism handles the burner's axial ambipolar operator.

python
# PDE residual via automatic differentiation (schematic)
def gs_residual(net, R, Z, pprime, ffprime):
    psi = net(R, Z)
    psi_R  = grad(psi, R)
    psi_RR = grad(psi_R, R)
    psi_ZZ = grad(grad(psi, Z), Z)
    delta_star = psi_RR - psi_R / R + psi_ZZ
    return delta_star + mu0*R**2*pprime(psi) + ffprime(psi)

Universal approximation, with caveats

Neural networks are universal approximators, so in principle psi_theta can represent the true solution. In practice PINNs have well-known training pathologies: stiff loss landscapes, spectral bias toward low frequencies, and competition between residual and boundary terms. The stack treats these seriously - covered on the loss-construction, conditioning, and hard-constraint pages - because an under-trained PINN is a wrong equilibrium, not just an inaccurate one.

In the Kronos stack PINNs are always validated against the FEM ground truth and carry a residual-based confidence score; they accelerate the twin but never bypass the offline verification path.

Content reviewed August 2026 · design-and-simulation stage