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 › L2 · Data Fabric
L2 · Data Fabric

Flux-Coordinate Normalization

Mapping breeder diagnostics onto normalized poloidal flux makes profiles shot-invariant and gives the equilibrium PINN its natural coordinate.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L2 · DATA FABRICTelemetry, validation, and the machine's memory.160+ Port Telemetrysensor bus2Signal Validationrange & sanity3Feature Engineeringderived signals4Time-Series Archivefull history5Feature Storetraining-ready6Vector DBembeddings for RAGMACHINE TIEIngests from diagnostics; serves the twin (L3) and copilots (L5).KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORDATA FABRICSHEET 04REV. 2026-08L2 · AI-NATIVE STACK
L2 · Data Fabric — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

Normalized flux as the ruler

In the breeder (Hyperion), the confinement geometry is set by nested flux surfaces. Normalized poloidal flux psi_N runs from 0 on the magnetic axis to 1 at the last closed flux surface. Expressing every profile diagnostic against psi_N — rather than against machine radius — removes the ambiguity introduced when the plasma shifts, breathes, or changes its negative-triangularity shape (delta -0.30).

Why the shape makes this hard

Negative triangularity pulls the outboard edge inward, and at aspect ratio 2.5 the flux surfaces are strongly shaped. A naive radial mapping would misplace edge diagnostics badly. The normalization uses the reconstructed equilibrium to place each sample on the correct surface, so an edge pressure sample lands at the right psi_N even as the boundary moves shot to shot.

Coupled to the equilibrium solver

Flux-coordinate normalization and equilibrium reconstruction are mutually dependent: the mapping needs the equilibrium, and the equilibrium fit uses normalized magnetics. The fabric provides a fast, calibrated first mapping from magnetics; the L3 PINN that solves Grad-Shafranov then refines it. The fabric records which equilibrium version produced a given normalization.

python
# place a profile sample on a flux surface
def to_psi_n(R, Z, equilibrium):
    psi   = equilibrium.psi(R, Z)          # interpolated flux
    psi_n = (psi - equilibrium.psi_axis) / (
             equilibrium.psi_lcfs - equilibrium.psi_axis)
    return max(0.0, min(1.0, psi_n))

Payoff

Content reviewed August 2026 · design-and-simulation stage