Lesson 1 of 15

Debye Length

Debye Length

One of the most fundamental concepts in plasma physics is Debye shielding. A plasma is an ionized gas, and unlike a neutral gas, it can rearrange its charges to screen out electric fields.

When you place a test charge inside a plasma, the surrounding electrons (and ions) redistribute themselves to partially cancel the electric field of the charge. The characteristic distance over which this shielding occurs is called the Debye length:

λD=ε0kBTne2\lambda_D = \sqrt{\frac{\varepsilon_0 k_B T}{n e^2}}

Where:

  • ε0=8.854×1012\varepsilon_0 = 8.854 \times 10^{-12} F/m (permittivity of free space)
  • kB=1.381×1023k_B = 1.381 \times 10^{-23} J/K (Boltzmann constant)
  • TT = electron temperature in Kelvin
  • nn = number density in m⁻³
  • e=1.602×1019e = 1.602 \times 10^{-19} C (elementary charge)

Debye Sphere

The Debye sphere is the sphere of radius λD\lambda_D around a test charge. For a plasma to behave collectively (rather than as individual particles), there must be many particles inside the Debye sphere:

ND=n43πλD31N_D = n \cdot \frac{4}{3} \pi \lambda_D^3 \gg 1

This is the plasma parameter condition. When ND1N_D \gg 1, collective behavior dominates over binary collisions.

Physical Intuition

  • Higher temperature → larger Debye length (faster electrons can overcome the shielding)
  • Higher density → smaller Debye length (more charges available to screen the field)
  • Solar wind plasma: λD\lambda_D \sim micrometers
  • Fusion plasma: λD\lambda_D \sim micrometers to millimeters
  • Interstellar plasma: λD\lambda_D \sim meters to kilometers

Implement debye_length_m(n_m3, T_K) using the formula above, and number_of_particles_in_debye_sphere(n_m3, lambda_D_m) to compute the plasma parameter.

Python runtime loading...
Loading...
Click "Run" to execute your code.