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 › L2 · Data Fabric
L2 · Data Fabric

Interferometry

Interferometry measures line-integrated electron density fast and robustly, the fabric's most dependable density diagnostic across multiple chords.

THE STACK · click to jumpL7Ecosystem & StrategyL6Experience & VisualizationL5Applications & CopilotsL4OrchestrationL3Twin Modeling & AIL2Data FabricL1Control PlaneL0Foundation▲tlmctl▼L2 · DATA FABRICTelemetry, validation, and the machine's memory.160+ Port Telemetrysensor bus2Signal Validationrange & sanity3Feature Engineeringderived signals4Time-Series Archivefull history5Feature Storetraining-ready6Vector DBembeddings for RAGMACHINE TIEIngests from diagnostics; serves the twin (L3) and copilots (L5).KRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORDATA FABRICSHEET 04REV. 2026-08L2 · AI-NATIVE STACK
L2 · Data Fabric — its place in the stack (left, click any layer) and its internal components (right). Telemetry rises; control descends.

Phase carries density

A probing beam through the plasma accumulates phase proportional to the line-integrated electron density along its chord. Measuring that phase gives a fast, robust density signal that rarely fails, which is why interferometry is a workhorse of the constellation. Multiple chords at different impact parameters constrain the density profile when inverted against the geometry.

From chords to local density

Each chord is a line integral; recovering local density is an inversion that uses the reconstructed flux surfaces. The fabric performs this in the normalization stage, cross-checking the result against localized Thomson density. Agreement between the two independent methods is a core validation check.

python
import numpy as np
# invert multi-chord line integrals to a flux-surface density profile
def invert_density(chord_integrals, geometry_matrix, reg=1e-3):
    A = geometry_matrix               # maps profile -> chord integrals
    # regularized least squares (Tikhonov) for a smooth profile
    AtA = A.T @ A + reg*np.eye(A.shape[1])
    return np.linalg.solve(AtA, A.T @ chord_integrals)

Fast enough for control

Both machines

On the breeder, interferometry constrains the density profile feeding the pressure map. On the burner, chords through the central cell and end plugs track the density that the ambipolar potential must confine — end-plug density being one of the burner's central control problems. Chord geometry is versioned per machine.

Content reviewed August 2026 · design-and-simulation stage