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 › L4 · Orchestration
L4 · Orchestration

Campaign Parameter-Sweep Orchestration

A sweep orchestrator generates comparable shot plans across a parameter grid, submits them by priority, and adapts the grid from results.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L4 · ORCHESTRATIONEvents, workflows, rules, and human routing.1Event Streamingthe backbone2Workflow Enginecampaign procedures3Rules & Safety Boundshard limits4Human-in-the-Loopapproval routing5Schedulerexperiment campaigns6Audit Busfull decision lineageMACHINE TIECoordinates L3 outputs with L5 copilots and human operators.KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORORCHESTRATIONSHEET 06REV. 2026-08L4 · AI-NATIVE STACK
L4 · Orchestration — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

Systematic exploration

A breeder campaign explores how the machine behaves as parameters vary: fuelling, heating waveform, shape, and the tritium breeding ratio design lever across 1.1, 1.5, and 1.8. The sweep orchestrator turns a parameter specification into an ordered set of individual shot plans, each identical in structure so results are directly comparable, and submits them to the scheduler.

Grid to plans

python
grid = product(fuelling=[...], heating=[...], tbr_lever=[1.1,1.5,1.8])
for point in ordered(grid, by=RISK_ASCENDING):   # safe points first
    plan = shot_plan(base=campaign.base, overrides=point)
    plan.priority = P2
    scheduler.submit(plan)                       # each runs on the shot state machine

Safety-ordered execution

Adaptive sweeps

The sweep can be adaptive: results from completed shots (fed by the twin and diagnostics) reshape the remaining grid, concentrating shots where behavior is most informative or refining near a boundary. A copilot (L5) may propose the next point, but that proposal is gated exactly like any other action, so an adaptive sweep never escapes the safety discipline.

Rollup and reproducibility

Per-shot results roll up into the tritium campaign workflow accounting, and the entire sweep, its grid, ordering, and adaptations, is journalled so it is fully replayable. As an engineering program, sweeps are first executed against the twin, so the sweep logic and its safety ordering are proven before the breeder is built.