Neutron Fluence, dpa, and Material Damage
Cumulative neutron exposure is measured in displacements per atom; it drives both activation and the end-of-life of components.
Neutron damage accumulates. The standard measure is displacements per atom (dpa): how many times, on average, each atom in a material has been knocked out of its lattice site over the component's life. Fluence — neutrons per square centimeter integrated over time — is the input; dpa and transmutation are the outputs.
Two damage mechanisms
- Displacement damage: fast neutrons knock atoms from their sites, creating vacancies and interstitials that harden and embrittle metals and cause swelling.
- Transmutation: capture and (n,α)/(n,p) reactions change one element into another, producing helium and hydrogen gas in the lattice and creating the activation products that dominate the waste picture.
The breeder's first wall, facing an 80%-neutron D–T output at 88.7 MW, accumulates dpa fastest and is treated as a scheduled-replacement component. The burner's first wall, seeing only the 5.44% neutron channel, accumulates damage far more slowly, so its structure lasts longer and activates less.
# Rough displacement estimate (illustrative, design-and-simulation only)
wall_load_MW_m2 = 1.0 # breeder first-wall neutron load (design input)
years = 2.0 # service interval before replacement
dpa_per_MWyr_m2 = 10.0 # approximate for steel at 14 MeV
dpa = wall_load_MW_m2 * years * dpa_per_MWyr_m2
print(f'~{dpa:.0f} dpa over {years} yr') # sets replacement schedule, not a measured value
Because damage and activation both scale with fluence, the same engineering that limits one limits the other. A thinner-fluence design lasts longer between replacements, transmutes less, and produces a smaller, less active waste stream — which is why fluence is treated as the master variable behind both component life and waste class.
Higher dpa means a component is retired sooner and, because transmutation has run longer, carries more activation. This is why fluence management — through shielding, material choice, and replacement scheduling — is central to keeping the waste class favorable. The numbers here are order-of-magnitude design inputs for machines not yet built.