An Example with Python Code
The Tunneling Effect in physics refers to the phenomenon where a particle has a probability of crossing a potential barrier, even if its energy is lower than the height of the barrier.
This effect is most commonly discussed in quantum mechanics and has significant applications in areas like nuclear fusion, semiconductor physics, and scanning tunneling microscopes.
One way to visualize this phenomenon is to consider a quantum particle in a potential well with a barrier.
Classically, if the particle’s energy is lower than the barrier height, it should not be able to pass through.
However, quantum mechanically, there is a finite probability for the particle to “tunnel” through the barrier.
Example Problem
We will model a particle in a one-dimensional potential well with a rectangular potential barrier.
The wavefunction of the particle is described by the $Schrödinger$ $equation$, and the probability of tunneling can be computed using a simplified approach.
- Potential setup:
A rectangular potential barrier with height $( V_0 )$ and width $( L )$. - Particle energy:
$( E )$, where $( E < V_0 )$, so the particle does not have enough energy to overcome the barrier classically.
We can compute the transmission probability $ T(E) $, which gives the likelihood that the particle will tunnel through the barrier.
For a rectangular potential barrier, the transmission probability is given by:
$$
T(E) = e^{-2 \gamma L}
$$
Where $( \gamma )$ is given by:
$$
\gamma = \frac{\sqrt{2m(V_0 - E)}}{\hbar}
$$
- $( m )$ is the mass of the particle.
- $( V_0 )$ is the potential barrier height.
- $( E )$ is the energy of the particle.
- $( L )$ is the width of the potential barrier.
- $( \hbar )$ is the reduced Planck’s constant.
Python Implementation:
We will write $Python$ code to compute the transmission probability for various particle energies and plot the result.
1 | import numpy as np |
Code Explanation:
Constants: We define the constants:
hbar: Reduced Planck’s constant (in Joules·seconds).m: The mass of an electron in $kg$.V0: The potential barrier height in Joules ($1$ $eV$ is approximately $( 1.60218 \times 10^{-19} )$ J).L: The width of the potential barrier (in meters, $1$ $Ångström$).
Tunneling Probability Function:
- The function
tunneling_probability(E, V0, L, m, hbar)computes the transmission probability $ T(E) $ using the formula derived above. - If the particle’s energy $( E )$ is greater than or equal to the barrier height $( V_0 )$, tunneling is not possible, so $( T(E) = 1 )$ (i.e., no tunneling).
- Otherwise, the transmission probability is computed using the exponential decay formula.
- The function
Energy Range:
- We generate a range of energy values from $0$ to $( V_0 )$.
These energies represent possible particle energies below the barrier height.
- We generate a range of energy values from $0$ to $( V_0 )$.
Plotting:
- The plot shows the transmission probability $ T(E) $ as a function of energy.
- The $x$-axis represents the energy of the particle in electron volts ($eV$).
- The $y$-axis shows the transmission probability.
- We highlight the potential barrier height $( V_0 )$ using a vertical dashed red line.
Graphical Interpretation

- As the energy of the particle approaches the barrier height $( V_0 )$, the transmission probability increases.
- For energies much lower than the barrier height, the probability decreases exponentially, indicating that tunneling becomes less likely.
- At higher energies (but still below $( V_0 )$), the probability of tunneling increases slightly, though it is still low.
Graph Analysis
- Transmission at low energies:
For energies significantly lower than the barrier height, tunneling is highly unlikely, and $ T(E) $ is close to $0$. - Near the barrier height:
As the energy gets closer to $( V_0 )$, the tunneling probability increases due to the reduced decay rate $( \gamma )$. - Beyond the barrier height:
If $( E )$ were greater than or equal to $( V_0 )$, the transmission probability would be $1$, indicating that the particle can easily pass through the barrier.
This model demonstrates how quantum tunneling occurs in a system where a particle has insufficient classical energy to overcome a potential barrier but still has a non-zero probability of passing through it due to the quantum nature of particles.









