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

The Ballooning Mode Equation and s-alpha Space

High-toroidal-number pressure-driven modes reduce to a 1D ODE along the field line; its stability chart in shear-alpha space bounds the breeder's pressure gradient.

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.

Ballooning transformation

At high toroidal mode number n the two-dimensional stability problem separates: the mode localizes on a flux surface and varies rapidly across it but slowly along the field line. The ballooning transformation converts the eigenproblem into a single ordinary differential equation along the extended poloidal angle. This is the workhorse limit for the breeder's edge stability, where negative triangularity does its work.

text
Ballooning equation (along field-line coordinate theta):

  d/dtheta [ (1 + Lambda^2) dF/dtheta ]
      + alpha [ cos theta + Lambda sin theta ] F  =  0

  Lambda = s*theta - alpha*sin(theta)
  s     = (r/q) dq/dr             (magnetic shear)
  alpha = -(2 mu0 R q^2 / B^2) dp/dr   (normalized pressure gradient)

  Marginal stability -> boundary curve in the (s, alpha) plane

The s-alpha stability chart

Solving the ballooning ODE for marginal stability over a grid of shear s and normalized pressure gradient alpha produces the classic s-alpha diagram: a stable region, a first unstable region, and at high shear a second stable region. Where the breeder's edge sits on this chart determines whether the pressure pedestal is ballooning-limited.

python
# marginal ballooning boundary by shooting method
def ballooning_growth(s, alpha):
    def rhs(theta, y):
        F, dF = y
        Lam = s*theta - alpha*sin(theta)
        coef = 1 + Lam**2
        d2F = -(alpha*(cos(theta)+Lam*sin(theta))*F
                + dLam_terms(...)*dF) / coef
        return [dF, d2F]
    y = integrate(rhs, span=(-Nturns*pi, Nturns*pi), y0=[1,0])
    return decay_rate(y)     # bounded -> stable ; growing -> unstable

Negative triangularity in this chart

Negative triangularity (delta -0.30) modifies the local magnetic geometry entering the coefficients, moving the edge operating point relative to the ballooning boundary and enabling good edge confinement without a steep, ELM-prone pedestal. The stack encodes the marginal curve as a differentiable constraint so scenario optimization keeps the edge pressure gradient inside the stable region by construction.

These boundaries are computed offline in simulation and used as design constraints; they will be re-validated against edge diagnostics once the breeder operates.

Content reviewed August 2026 · design-and-simulation stage