Lesson 11 of 15
Radiation Biology & Dosimetry
Radiation Biology & Dosimetry
Ionizing Radiation in Biology
Ionizing radiation — X-rays, gamma rays, alpha particles, and beta particles — deposits energy in biological tissue, causing DNA damage, free radical formation, and cell death. Quantifying radiation exposure is essential in medical physics, radiotherapy, and radiation protection.
Absorbed Dose
The absorbed dose D is the energy deposited per unit mass of tissue:
Equivalent Dose
Different radiation types cause different degrees of biological damage. The equivalent dose H accounts for this via the radiation weighting factor W_R:
| Radiation Type | W_R |
|---|---|
| X-rays / gamma rays | 1 |
| Beta particles | 1 |
| Protons | 2 |
| Alpha particles | 20 |
| Heavy ions | 20 |
Effective Dose
The effective dose E sums over all irradiated tissues, weighted by tissue sensitivity factor W_T:
Linear-Quadratic (LQ) Model
The LQ model describes cell survival fraction S after dose D:
- α (Gy⁻¹): linear component — DNA double-strand breaks from single tracks
- β (Gy⁻²): quadratic component — breaks from two independent tracks
- α/β ratio: characteristic dose where linear and quadratic contributions are equal; typically 10 Gy for early-responding (tumor) tissues and 3 Gy for late-responding (normal) tissues
D₅₀: Dose for 50% Survival
Setting S = 0.5 and solving α·D + β·D² = ln 2:
Your Task
Implement three functions:
equivalent_dose_Sv(D_Gy, W_R=1)— Equivalent dose in Svcell_survival_LQ(D_Gy, alpha=0.3, beta=0.03)— Cell survival fraction from the LQ modeld50_LQ_Gy(alpha=0.3, beta=0.03)— Dose (Gy) at which 50% of cells survive
Python runtime loading...
Loading...
Click "Run" to execute your code.