← Part V: Applications
Chapter 18

Radiation Detection

Gas-Filled Detectors

Gas-filled detectors operate by collecting ionization produced when radiation passes through a gas (typically Ar, Xe, or $^3$He). The number of ion pairs created is:

$$N_{\text{pairs}} = \frac{E_{\text{dep}}}{W}$$

where $W$ is the average energy per ion pair (~26 eV for Ar, ~22 eV for Xe). The detector behavior depends on the applied voltage:

Ionization Chambers

At moderate voltages (100-500 V), all ion pairs are collected without multiplication. The current is proportional to the radiation intensity. Used for precise dose measurements and radiation survey instruments. The current for a parallel-plate geometry is:

$$I = \frac{q \cdot \dot{N}_{\text{pairs}} \cdot e}{1 + (d/\mu E)v_r}$$

Proportional Counters

At higher voltages (500-900 V), electrons gain enough energy between collisions to cause secondary ionization (gas multiplication). The multiplication factor $M$can reach $10^3\text{--}10^4$. The output pulse is proportional to the original ionization, enabling energy spectroscopy. The Diethorn formula gives the gas gain:

$$\ln M = \frac{V}{K \ln(b/a)}\left(\ln\frac{V}{pa\ln(b/a)} - \ln K\right)$$

Geiger-MΓΌller Counters

At very high voltages (>1000 V), a single ionization event triggers a complete discharge of the entire gas volume. The output pulse is independent of the initial ionization energy, so GM counters cannot perform spectroscopy. They have a characteristic dead time $\tau \sim 100\text{--}200\;\mu$s after each pulse. The true count rate is corrected by: $n = \frac{m}{1-m\tau}$.

Scintillation Detectors

Scintillation detectors convert radiation energy into visible light, which is then detected by photomultiplier tubes (PMTs) or silicon photomultipliers (SiPMs). The number of scintillation photons is:

$$N_{\text{ph}} = \frac{E_{\text{dep}} \cdot S}{E_{\text{photon}}}$$

where $S$ is the scintillation efficiency. Key scintillator materials include:

  • NaI(Tl): The standard gamma-ray scintillator. High light yield (~38,000 photons/MeV), $Z_{\text{eff}} = 50$, 7% resolution at 662 keV. Hygroscopic (must be sealed).
  • BGO (Bi$_4$Ge$_3$O$_{12}$): Very high density (7.13 g/cm$^3$), excellent stopping power for PET. Lower light yield but not hygroscopic.
  • LaBr$_3$:Ce: Excellent energy resolution (~2.8% at 662 keV) and fast timing (~16 ns decay). Superior to NaI for spectroscopy but more expensive.

Semiconductor Detectors

Semiconductor detectors offer the best energy resolution because the energy per electron-hole pair is much smaller than for gas detectors or scintillators:

  • $W_{\text{Si}} = 3.62$ eV/pair, $W_{\text{Ge}} = 2.96$ eV/pair (compare $W_{\text{gas}} \sim 26$ eV)
  • Fano factor: $F_{\text{Si}} = 0.115$, $F_{\text{Ge}} = 0.13$ (sub-Poisson statistics)

The intrinsic energy resolution (FWHM) is limited by charge-carrier statistics:

$$\text{FWHM} = 2.355\sqrt{F \cdot W \cdot E_\gamma}$$

HPGe (High-Purity Germanium)

The gold standard for gamma-ray spectroscopy. Achieves ~0.18% resolution at 1332 keV ($^{60}$Co). Must be cooled to 77 K (liquid nitrogen) to reduce thermal noise. Impurity concentration $< 10^{10}$ atoms/cm$^3$ allows depletion depths of several cm.

Silicon Detectors

Si(Li) detectors are used for X-ray spectroscopy (1-30 keV). Silicon strip and pixel detectors are essential for charged-particle tracking in nuclear and particle physics experiments. Position resolution down to ~10 $\mu$m is achievable.

Energy Resolution

Energy resolution is quantified by the Full Width at Half Maximum (FWHM) of the photopeak, usually expressed as a percentage:

$$R = \frac{\text{FWHM}}{E_0} \times 100\%$$

The resolution has contributions from several independent sources added in quadrature:

$$(\text{FWHM})^2 = (\text{FWHM}_{\text{stat}})^2 + (\text{FWHM}_{\text{noise}})^2 + (\text{FWHM}_{\text{drift}})^2 + (\text{FWHM}_{\text{incomplete}})^2$$

The statistical contribution, dominant in scintillators, follows:$\text{FWHM}_{\text{stat}} = 2.355\sqrt{FWE}$, where $F$ is the Fano factor. Resolution improves with energy as $R \propto 1/\sqrt{E}$.

Pulse Height Analysis & Coincidence Techniques

A multichannel analyzer (MCA) sorts detector pulses by amplitude into energy bins (channels), building an energy spectrum. The channel number is linearly related to pulse height (and thus deposited energy):

$$E = a \cdot \text{channel} + b$$

Coincidence techniques require two or more detectors to register events within a narrow time window $2\tau$. The true coincidence rate is:

$$R_{\text{true}} = R_{\text{measured}} - R_{\text{random}} = R_{\text{measured}} - 2\tau R_1 R_2$$

Gamma-gamma coincidence spectroscopy is crucial for constructing nuclear level schemes. Angular correlation measurements determine spin-parity assignments using the correlation function: $W(\theta) = \sum_k A_k P_k(\cos\theta)$.

Neutron Detection

Neutrons, being electrically neutral, are detected indirectly through nuclear reactions that produce charged particles. The most important reactions for thermal neutron detection are:

$$^3\text{He} + n \to {^3\text{H}} + p + 0.764\;\text{MeV} \qquad (\sigma = 5333\;\text{b})$$
$$^{10}\text{B} + n \to {^7\text{Li}} + \alpha + 2.79\;\text{MeV} \qquad (\sigma = 3840\;\text{b})$$
$$^6\text{Li} + n \to {^3\text{H}} + \alpha + 4.78\;\text{MeV} \qquad (\sigma = 940\;\text{b})$$

For fast neutron detection, proton-recoil methods are used. In elastic n-p scattering, the recoil proton energy distribution is uniform from 0 to $E_n$:

$$E_p = E_n \cos^2\theta_{\text{lab}}, \qquad \frac{d\sigma}{dE_p} = \frac{\sigma_{\text{np}}}{E_n}$$

Time-of-flight (TOF) techniques measure neutron energy by timing the flight over a known distance: $E_n = \frac{1}{2}m_n\left(\frac{L}{t}\right)^2$. This method provides excellent energy resolution for fast neutrons.

Python Simulation: Detector Physics

Gamma-ray spectrum comparison for different detector types, gas detector voltage characteristics, detection efficiency curves, and energy resolution comparison.

Radiation Detection Analysis

Python

Detector response, energy spectra, and resolution comparison

script.py183 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran Implementation: Detector Calculations

Compton scattering kinematics, energy resolution analysis for semiconductor and scintillation detectors, and neutron detection cross sections.

Radiation Detection Calculator

Fortran

Compton kinematics, resolution analysis, and detector comparison

program.f90124 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server

Rate this chapter: