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 › L7 · Ecosystem & Strategy
L7 · Ecosystem & Strategy

Tritium Offtake and Logistics

Exportable tritium from the breeder is scheduled, assayed, and moved under full chain of custody, with self-consumption and decay accounted before anything ships.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L7 · ECOSYSTEM & STRATEGYThe plant in its world — integrated through one unified API.1Unified API Layerone door in/out2Grid Integrationdispatch & firm supply3Supply Chainfuel, parts, isotopes4Maintenanceservice & spares loops5Regulatorycompliance & reporting6Fleet Strategymulti-unit planningMACHINE TIEConnects the machine to grid, suppliers, and regulators — the outermost loop.KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORECOSYSTEM & STRATEGYSHEET 09REV. 2026-08L7 · AI-NATIVE STACK
L7 · Ecosystem & Strategy — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

From breeding surplus to shipment

The breeder's headline product is tritium, near the ~4 kg/yr class depending on the TBR lever. Tritium is valuable, radioactive, and decays (half-life ~12.3 years), so offtake logistics must account for time as a first-class variable. L7 schedules offtake from the true surplus (bred minus self-consumption minus decay and process loss) and never from gross breeding.

Assay, custody, and decay accounting

Each shipment is assayed for quantity and purity, tagged with an isotopic composition, and entered into a chain of custody that follows it from the plant boundary onward. Because tritium decays continuously, the recorded quantity is stamped with its measurement time, and any quoted delivery quantity is decay-corrected to the delivery date so the customer receives what was promised, not a stale figure.

python
import math
LAMBDA = math.log(2) / (12.32*365.25*24*3600)  # tritium decay const (1/s)
def decay_correct(q0, t0, t_deliver):
    dt = (t_deliver - t0).total_seconds()
    return q0 * math.exp(-LAMBDA * dt)          # quantity at delivery
# exportable surplus = bred - self_burn - process_loss, then decay-corrected
surplus = bred - self_burn - process_loss
quote   = decay_correct(surplus, now, delivery_date)

Offtake scheduling is coupled to plant operation. Tritium inventory must never fall below the level the breeder needs to sustain its own burn and startup reserve; L7 enforces this floor as a hard constraint on how much may be committed for export. A customer order that would breach the floor is queued to a later window, not fulfilled from operating inventory.

Every tritium movement is a byproduct-material event under the compliance framework. The offtake record and the byproduct-material accountancy record are the same underlying data, so a shipment cannot leave without a complete, auditable compliance entry attached.

No tritium is offered for delivery before the breeder produces it. Through construction (from Q2 2027) and up to FOAK first tritium ~2030, offtake logistics run against twin-projected surplus so the process, custody chain, and decay accounting are proven before the first real gram exists.

Content reviewed August 2026 · design-and-simulation stage