Computing for Coolant Thermal-Hydraulics
Simulating how coolant carries heat away from the components that intercept fusion power, keeping temperatures within limits.
The heat-removal problem
A fusion plant deposits large heat fluxes on plasma-facing components and throughout the blanket. That heat must be removed continuously and reliably; a local hot spot can damage a component in seconds. Thermal-hydraulics is the study of how coolant flows and transfers heat, and simulating it is how engineers verify that every surface stays within its temperature limit.
What is computed
- Flow distribution: how coolant divides among many parallel channels
- Heat transfer coefficients: how effectively the coolant removes heat
- Temperature fields: peak temperatures in walls and coolant
- Pressure drop: the pumping needed to drive the flow
- Transients: behavior during startup, shutdown, and upsets
The coupling to neutronics
The heat load is not uniform; it follows the neutron and radiation deposition computed by neutronics, which peaks near the plasma and falls off through the blanket. Thermal-hydraulics takes that deposition map as input, so the two analyses are coupled. A change in blanket design changes both the neutronics and the cooling requirement together.
Turbulence and its cost
Most coolant flow is turbulent, which enhances heat transfer but is expensive to simulate from first principles. Engineering practice uses turbulence models, approximations calibrated against experiment, to make the computation tractable. These models are reliable in tested regimes and must be used carefully outside them, which is a recurring theme in applied simulation.
def wall_temperature(q_flux, h, t_coolant):
# simple 1D: wall temp rises above coolant by flux/coefficient
return t_coolant + q_flux / h
Kronos framing
For the Hyperion breeder, thermal-hydraulics verifies that the blanket and plasma-facing components can shed their heat loads within material limits. It couples to neutronics for the heat source and to tritium permeation through wall temperature. This is design-stage simulation ahead of construction in the second quarter of 2027.