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

Bayesian Optimization for Scenario Design

Choosing operating points and profiles is expensive to evaluate; Bayesian optimization finds good scenarios in few costly simulations by balancing exploration and exploitation.

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.

Optimizing an expensive black box

Designing a scenario - the profiles, shape, and actuator schedule that meet targets while respecting stability - means optimizing an objective that costs a full simulation to evaluate. Bayesian optimization (BO) is built for exactly this: it fits a probabilistic surrogate (usually a GP) to past evaluations and uses it to choose the next most-informative point, minimizing the number of expensive runs.

text
Bayesian optimization loop:
  1. Fit GP surrogate to data { (x_i, y_i) }
  2. Maximize acquisition a(x) to pick next x*
  3. Evaluate expensive objective y* = F(x*)
  4. Augment data; repeat

Expected Improvement acquisition:
  EI(x) = E[ max(0, f_best - f(x)) ]
        = (f_best-mu) Phi(z) + sigma phi(z),  z=(f_best-mu)/sigma

Acquisition functions balance the trade

The acquisition function turns the surrogate's mean and variance into a score for where to sample next. Expected improvement, upper-confidence-bound, and knowledge-gradient all trade exploitation (sample where the mean is good) against exploration (sample where variance is high). This is how BO avoids wasting simulations while still discovering better regions of scenario space.

python
# one BO iteration (schematic)
gp.fit(X, y)
def acq(x):                      # upper confidence bound
    mu, sd = gp.predict(x)
    return mu + beta*sd          # exploit + explore
x_next = maximize(acq, bounds)   # cheap inner optimization
y_next = expensive_simulation(x_next)
X, y = append(X, x_next), append(y, y_next)

Constraints and honesty

Scenario design is constrained: stability margins, actuator limits, and the operating envelope. Constrained BO models feasibility with its own surrogate and weights the acquisition by the probability of satisfying constraints, so it searches only admissible scenarios. For the burner, the surrogate's variance stays large across the 166-830x regime, so BO is honest that it is exploring an untested space - it proposes candidates for study, not validated operating points, and never optimizes away the four gates.

BO is the outer optimizer over scenarios; trajectory optimization then refines the time-dependent path within a chosen scenario, and MPC executes it in the loop.

Content reviewed August 2026 · design-and-simulation stage