How Neutron Activation Works
A stable nucleus absorbs a neutron and becomes a different, often radioactive isotope; the reaction type and cross-section set the outcome.
Activation is nuclear, not chemical. A neutron interacts with a nucleus and leaves it in a new configuration. Whether the product is stable or radioactive, and how long it lives, depends on which nucleus and which reaction, quantified by the reaction's cross-section at the incoming neutron's energy.
Worked example: iron
Structural steel is mostly iron. Stable ⁵⁸Fe can capture a neutron to become ⁵⁹Fe, which is radioactive with a half-life of about 44 days — short. But trace elements matter more than the base metal. A small amount of cobalt becomes ⁶⁰Co (half-life ~5.3 years, a strong gamma emitter); trace niobium becomes ⁹²ᵐNb and ⁹⁴Nb, which are long-lived. This is why impurity control dominates low-activation design.
# Activation grows toward saturation, then decays after shutdown (schematic)
import math
def activity(t_irr, t_cool, lam, R):
# R: production rate, lam: decay constant
A_end = (R/lam)*(1-math.exp(-lam*t_irr)) # buildup during operation
return A_end*math.exp(-lam*t_cool) # decay after shutdown
# Short-lived nuclides saturate fast and vanish fast; long-lived ones persist.
# Design-and-simulation illustration only.
Two features fall out of the math. First, short-lived nuclides reach their maximum activity quickly and then disappear quickly after shutdown — they dominate the dose in the first hours but not the long-term waste. Second, long-lived nuclides build up slowly and persist, so even tiny concentrations of the wrong element set the final waste class.
The same reasoning explains why two chemically identical steels can have very different waste fates: the one with tighter impurity limits activates to a shorter-lived inventory. Chemistry set at the melting stage, not physics at the plasma, is what ultimately decides the disposal category.
The engineering conclusion is direct: specify alloys with low concentrations of the elements that produce long-lived activation, and the whole component decays to a favorable class. This is the core of the low-activation materials program for both Kronos machines, which are still design-and-simulation studies.