Lesson 9 of 15
Coulomb Barrier
Coulomb Barrier
Two nuclei approaching each other experience a strong electrostatic repulsion. The Coulomb barrier is the potential energy at the point of nuclear contact — the height that must be overcome (or tunneled through) for a nuclear reaction to occur.
where:
- N·m²/C² (Coulomb constant)
- C (elementary charge)
- m (nuclear radius)
Converting to MeV
Contact Distance
The sum of the two nuclear radii gives the contact distance in femtometers (fm, m):
Why It Matters
The D+T fusion reaction has a Coulomb barrier of only ~0.44 MeV (both particles have ), making it the easiest fusion reaction. Heavy-ion fusion (e.g., Pb+Pb) requires barriers of hundreds of MeV.
Your Task
Implement:
coulomb_barrier_J(Z1, A1, Z2, A2)— barrier in Joulescoulomb_barrier_MeV(Z1, A1, Z2, A2)— barrier in MeVcontact_distance_fm(A1, A2)— contact distance in femtometers
All physical constants must be defined inside each function.
Python runtime loading...
Loading...
Click "Run" to execute your code.