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

Bootstrap Current and Profile Self-Consistency

The plasma drives part of its own current; closing that self-consistency loop between pressure, current, and equilibrium is a fixed-point problem the twin must solve.

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.

A self-driven current

In a toroidal plasma the pressure gradient drives a neoclassical bootstrap current parallel to the field. This current shapes the q profile, which shapes the equilibrium, which shapes the pressure - a coupled loop. For the breeder, the bootstrap fraction affects how much external current drive the 9.66 MA target needs and where rational surfaces land.

text
Bootstrap current (schematic neoclassical form):

  <J_bs . B> = -I(psi) p * [ L31 (dln p / dpsi)
                            + L32 (dln Te / dpsi)
                            + ... ]

  L31, L32 : neoclassical transport coefficients (collisionality,
             trapped-particle fraction, aspect ratio dependent)
  Bootstrap fraction f_bs = I_bootstrap / I_plasma

The fixed-point coupling

The total current is external (ohmic + auxiliary drive) plus bootstrap. But bootstrap depends on the pressure and the equilibrium, which depend on the total current. A self-consistent equilibrium requires iterating the Grad-Shafranov solve and the bootstrap model to a fixed point.

python
# self-consistent equilibrium + bootstrap fixed point
p_prof, T_prof = initial_profiles()
for it in range(max_it):
    psi   = solve_GS(from(p_prof, j_total))
    q     = q_profile(psi)
    j_bs  = bootstrap(p_prof, T_prof, psi)     # neoclassical
    j_tot = j_ext + j_bs
    if converged(j_tot, q): break
    j_total = relax(j_tot)                     # under-relax to stabilize

Why the AI cares

The bootstrap loop is expensive and stiff, and it must be re-solved whenever profiles change - which is constantly during a scenario. The stack learns a surrogate for the bootstrap-consistent equilibrium map so scenario optimization and MPC can evaluate candidate profiles without a full nested iteration. The surrogate is trained on the offline self-consistent solver and carries an uncertainty band.

Bootstrap fraction is a design lever, not yet a measured quantity; the values used are simulation-based and will be re-anchored against reconstruction once the breeder operates.

Content reviewed August 2026 · design-and-simulation stage