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

Firm-Power Availability Forecasting

L7 forecasts how much firm power each unit can guarantee over the horizon by fusing twin health estimates, maintenance plans, and fuel availability.

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.

Forecasting availability, not weather

A fusion source is not intermittent like wind or solar, so forecasting is not about weather; it is about the machine. The question is: over the next hours to weeks, how much export can this unit firmly commit to, and with what confidence? L7 answers by combining the L3 twin's health and confidence estimates, the maintenance service loop's planned outages, and fuel (helium-3) availability into a probabilistic availability forecast.

Inputs to the forecast

python
# probabilistic availability for unit i over horizon h
# returns firm level p_firm with confidence 1-alpha
def firm_forecast(i, h, alpha=0.05):
    base   = twin_capacity(i, h)                 # nominal export
    derate = rul_derate(i, h)                     # from RUL models
    outage = planned_outage_mask(i, h)           # service loop
    fuel   = min(1.0, he3_available(i,h)/he3_need(i,h))
    samples = monte_carlo(base, derate, outage, fuel, trip_dist(i))
    p_firm  = quantile(samples, alpha)            # conservative commit level
    return p_firm, confidence(samples)

The forecast is deliberately conservative: the firm level is a low quantile of the sampled availability distribution, so committing to it is safe even when several risks land together. The expected level is reported separately, but only the firm level is offered to the grid as a guarantee.

Forecast errors feed back. When actual availability diverges from forecast, the residual updates the trip distribution and de-rate models via fleet learning, so the forecast sharpens as the fleet accumulates operating hours. Early units contribute the most learning; by NOAK and BOAK the availability distribution is tighter.

Today the forecast runs on twin-simulated operation and historical device analogues; it reports availability as design-stage until real units exist. This keeps the firm-power promise honest: no availability is claimed for hardware that has not been built and run.

Content reviewed August 2026 · design-and-simulation stage