Computing Library › Applications
Applications

Computing for Quench Analysis

Modeling what happens when a superconducting magnet loses superconductivity, so the stored energy is dumped safely.

What a quench is

A superconducting magnet stores large energy in its field. A quench is the sudden transition of part of the winding from superconducting to normal (resistive). Current still flows through that resistive spot, depositing heat locally. If the normal zone does not spread and the current is not extracted, that spot can overheat and the magnet can be damaged. Quench analysis predicts and prevents this.

The physics to capture

Kronos motion — stored energy

Why it is a computing task

Quench couples electromagnetics, heat conduction along and across the conductor, the temperature-dependent properties of the superconductor and its metal matrix, and the external protection circuit. It evolves on millisecond timescales across a large structure. Analytical shortcuts exist for scoping, but a trustworthy hot-spot estimate needs a coupled transient simulation.

python
def hot_spot_ok(I0, tau_dump, detect_delay, limit):
    # crude adiabatic proxy: energy per volume ~ integral of j^2 dt
    exposure = (I0**2) * (detect_delay + tau_dump)
    return exposure < limit   # design fast detection + fast dump

REBCO's twist

High-temperature superconductors quench differently from older conductors: the normal zone spreads slowly, so a local hot spot can form before detection systems notice the small voltage. Detection sensitivity and speed therefore become design objectives. For the high-field Hyperion and burner magnets, credible quench protection is a condition of the design, not an add-on.

Honest framing

These are simulations that inform protection design; the machines are not built, and construction of the breeder begins in the second quarter of 2027. The value of the analysis is that it forces protection margins into the design before any coil is energized.