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

ADC Quantization & Dynamic Range

Digitization trades continuous voltage for discrete counts; the fabric sizes bit depth and range so quantization noise never limits a physics inference.

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.

Quantization as noise

An N-bit converter over a full-scale range V_fs has a least-significant step q = V_fs / 2^N. Ideal quantization adds noise of standard deviation q/sqrt(12), giving a ceiling on signal-to-noise. The fabric chooses N and V_fs per channel so this ceiling sits well above the sensor's own noise, ensuring the ADC is never the limiting element in a diagnostic.

python
import math
def quant_snr_db(N):
    # ideal SNR of an N-bit converter, full-scale sine
    return 6.02*N + 1.76

def lsb(v_fs, N):
    return v_fs / (2**N)

print(round(quant_snr_db(16),1), 'dB')   # 98.1 dB
print(lsb(10.0, 16))                      # ~153 uV per count

Dynamic range budget

Dynamic range is the span between the smallest resolvable change and the largest un-clipped excursion. A Mirnov channel must resolve a small precursor oscillation yet survive a large disruption transient without saturating. The front end sets gain so both live inside the converter's range; the calibration record ties counts back to physical units.

Effective bits, not nameplate bits

Why it matters for the twin

Equilibrium and pressure-map inversions amplify input noise. If quantization noise entered at the ADC, it would propagate into the core pressure map and the instantaneous Q estimate. Sizing the converter correctly keeps the twin's inputs honest for both the breeder's magnetics and the burner's potential and density diagnostics.

Content reviewed August 2026 · design-and-simulation stage