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

High-Frequency Noise Filtering

Digital filtering removes out-of-band pickup and electromagnetic noise from each channel while preserving the fast physics the control loop needs.

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.

Noise in a high-field machine

The electromagnetic environment of a 16.84 T machine carrying 9.66 MA is hostile. Switching transients, the ICE-PISTON preload cycle, and coupling between the megampere plasma current and low-level diagnostics all inject noise. Analog rejection at the front end handles most common-mode pickup; digital filtering after sampling removes what remains without discarding real signal.

Filter design against physics bandwidth

Each channel has a known physics bandwidth. The filter is designed to pass that band and reject above it: a linear-phase FIR where group-delay flatness matters (magnetics used for phase-sensitive mode analysis), an IIR where latency must be minimal. Cutoffs are stored with the channel so any later analysis knows the exact band retained.

python
import numpy as np
# simple linear-phase FIR low-pass (windowed sinc)
def fir_lowpass(fc, fs, ntaps=129):
    n = np.arange(ntaps) - (ntaps-1)/2
    h = np.sinc(2*fc/fs * n) * np.hamming(ntaps)
    return h / h.sum()

# preserve 500 kHz Mirnov content at 2 MHz sampling
h = fir_lowpass(500e3, 2e6)

What filtering must not do

Coupled to validation

Filtering is one stage of validation. A channel that needs aggressive filtering to look sane is flagged for drift or fault; the data-quality score reflects the filtering effort applied. Both machines share the filtering framework, tuned per diagnostic and per machine bandwidth.

Content reviewed August 2026 · design-and-simulation stage