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 › Physical Interfaces
Physical Interfaces

Analog Front-End and Calibration Interface

Between raw sensor and digital sample sits the analog front end; its interface defines conditioning, ADC quantization, and the calibration chain.

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.

Turning volts into trusted numbers

Every physical interface ultimately produces a voltage that must be conditioned, digitized, and calibrated before any layer trusts it. The analog front end (AFE) sets gain, filtering, and anti-alias limits; the ADC sets resolution and dynamic range; the calibration chain makes the number traceable. This is the interface that decides a reading's noise floor and its truth.

The chain

python
# raw voltage -> engineering unit (per channel)
v_cond = afe_gain[ch]*(v_raw - offset[ch])       # condition
v_filt = antialias_filter(v_cond, f_cut[ch])     # before sampling
code   = adc_sample(v_filt, bits[ch])            # quantize
value  = calib_poly[ch](code) * unit[ch]         # traceable EU
value  = drift_correct(value, cal_epoch[ch])     # apply latest cal

Two design choices dominate: the anti-alias filter must sit below the Nyquist limit for the channel's sample rate, and the ADC dynamic range must cover both quiescent noise and the largest transient without clipping. A channel that clips during a disruption is worse than useless because it corrupts the reconstruction.

Calibration and drift

Owner: L2 for the AFE/ADC and calibration store. Every downstream layer consumes engineering-unit values that carry their calibration provenance, so the twin and copilots never reason on an uncalibrated or stale number. Design-and-simulation specification, applied identically across both machines' 60+ port channels.

Content reviewed August 2026 · design-and-simulation stage