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 › Resiliency & Operations
Resiliency & Operations

Redundancy and Voting

How multiple channels combine into one trustworthy decision, and why more channels is not always safer.

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.

Voting over channels

Redundant channels only help if a policy combines them safely. The classic scheme is triple modular redundancy with majority voting: three channels compute the same decision and the majority wins, tolerating any single fault. For protection functions the policy is often asymmetric - any channel may trip, but consensus is needed to continue - so a stuck-safe channel cannot block protection.

Ch ACh BCh CTrip?
0000
1001
0101
1101
1111

The table shows a fail-safe (1-out-of-3 to trip) protection vote: a single channel asserting trip is honored, which prevents a silent channel from masking a real fault. Control decisions instead use 2-out-of-3 majority so one noisy channel cannot cause spurious action.

python
def vote(channels, mode):
    n = sum(channels)
    if mode == 'protection':   # fail-safe: any asserts -> act
        return n >= 1
    if mode == 'control':      # majority
        return n > len(channels) / 2
    raise ValueError(mode)

More is not free

Adding channels raises the odds that at least one is broken at any moment, so maintenance load grows and common-mode failure (shared power, shared fabric, shared design flaw) can defeat all channels at once. Good redundancy diversifies: different sensor principles, independent power, separate routing. Common-mode risk is called out explicitly in the diagnostics FMEA.

Voting is the decision layer above failover; failover switches which hardware runs, voting decides what the switched-together set concludes. Both feed the availability model as improvements to effective MTBF.

Content reviewed August 2026 · design-and-simulation stage