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 Conditioning and Training Dynamics

PINNs fail in characteristic ways - spectral bias and unbalanced gradients; the neural-tangent-kernel view explains why and guides fixes.

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.

Why PINNs are hard to train

PINN losses are notoriously stiff. Two pathologies dominate: spectral bias, where the network learns low-frequency structure long before sharp gradients like the edge pedestal; and gradient imbalance, where the PDE and boundary terms pull the shared weights at very different magnitudes. Understanding these prevents shipping a confidently wrong equilibrium into the twin.

text
Neural tangent kernel (NTK) view:

  d(residual)/dt  ~  -K * residual

  K : NTK matrix; its eigenvalues set convergence rates per mode
  Large spread in eig(K) -> stiff training, slow high-freq modes

  Spectral bias: high-frequency error decays slowly
  Cure directions: feature scaling, Fourier features, weighting

Diagnostics

The stack monitors the eigenvalue spread of the NTK (or a cheap proxy: per-term gradient-norm ratios) during training. A widening spread signals the boundary and residual terms decoupling, which is when adaptive weighting and learning-rate rebalancing are applied. Loss curves alone hide these failures, so gradient diagnostics are logged.

python
# gradient-imbalance diagnostic
gn_pde = grad_norm(L_pde, theta)
gn_bc  = grad_norm(L_bc,  theta)
ratio  = gn_pde / (gn_bc + eps)
if ratio > hi or ratio < lo:
    rebalance_weights()      # restore comparable gradient scales

Architectural remedies

Fourier feature embeddings inject high-frequency basis functions so the network escapes spectral bias and can resolve steep edge gradients. Input normalization keeps R, Z, psi order-one. Adaptive activation and residual connections improve the loss landscape. These are applied deliberately for the breeder's steep-pedestal and the burner's sharp axial potential gradients.

A PINN that will not condition is not forced into service; the stack falls back to the FEM solver or a reduced-order surrogate rather than trust an ill-trained network in the control twin.

Content reviewed August 2026 · design-and-simulation stage