Lesson 8 of 15
Q-Value of Nuclear Reactions
Q-Value of Nuclear Reactions
The Q-value of a nuclear reaction is the energy released (or absorbed). It comes from Einstein's : the difference in total rest mass between reactants and products converts to kinetic energy.
where atomic mass unit MeV/.
- : exothermic — energy is released (fission, fusion)
- : endothermic — energy must be supplied
Famous Example: D + T Fusion
| Particle | Mass (u) |
|---|---|
| Deuteron D | 2.014102 |
| Triton T | 3.016049 |
| Helium-4 | 4.002602 |
| Neutron | 1.008665 |
Threshold Energy
For endothermic reactions (), the beam projectile must carry a minimum threshold energy:
Your Task
Implement:
q_value_MeV(m_reactants_total_u, m_products_total_u)— Q in MeVis_exothermic(m_reactants_total_u, m_products_total_u)— True if Q > 0threshold_energy_MeV(Q_MeV, m_beam_u, m_target_u)— threshold energy, or 0.0 if exothermic
Python runtime loading...
Loading...
Click "Run" to execute your code.