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

Flux Coordinates and the Safety Factor

Straight-field-line flux coordinates turn the tangled 3D field into simple geometry, and the safety factor q(psi) they yield is the master stability parameter for the breeder.

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.

Flux-surface labeling

Once psi is known, nested flux surfaces are its level sets. Physics is naturally expressed in coordinates that follow these surfaces: a radial label (psi or a normalized rho), a poloidal angle, and the toroidal angle. Straight-field-line coordinates choose the poloidal angle so field lines are straight in the angle plane, which simplifies transport, turbulence, and stability analysis used throughout the twin.

text
Safety factor (field-line pitch):

  q(psi) = (1 / 2pi) * Integral_0^2pi  ( B . grad phi ) / ( B . grad theta ) d theta
         = (1 / 2pi) * Contour_int  ( F / R^2 ) * ( dl_p / |grad psi| )

  q = number of toroidal transits per single poloidal transit
  q measures magnetic shear:  s = (rho/q) dq/drho

Why q governs stability

Rational surfaces where q = m/n (m, n integers) are where resonant MHD modes and magnetic islands can grow. The q profile - its edge value q_a, its minimum q_min, and its shear s = (r/q) dq/dr - sets which instabilities are accessible. For the breeder at 9.66 MA the current and q profiles are engineered to keep dangerous rational surfaces out of high-pressure-gradient regions.

python
# safety factor on a flux surface from a traced contour
def q_of_psi(contour, F, psi):
    dl = arc_lengths(contour)                # poloidal arc segments
    gradpsi = grad_psi_on(contour)
    integrand = (F / contour.R**2) / abs(gradpsi)
    return (1/(2*pi)) * sum(integrand * dl)  # single-surface q

Coordinates as the AI substrate

Flux coordinates are also the spatial normalization the data fabric applies before any learning: mapping raw sensor positions onto a common rho grid lets GNNs and PINNs generalize across shots and shapes. A signal at 'rho = 0.8' means the same physical location regardless of how the boundary moved, which is essential for transfer between the breeder's varying equilibria.

The mapping from lab coordinates to flux coordinates is recomputed every reconstruction cycle, so the twin and its learned modules always operate in a geometry consistent with the current equilibrium.

Content reviewed August 2026 · design-and-simulation stage