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:
Where:
- F/m (permittivity of free space)
- J/K (Boltzmann constant)
- = electron temperature in Kelvin
- = number density in m⁻³
- C (elementary charge)
Debye Sphere
The Debye sphere is the sphere of radius around a test charge. For a plasma to behave collectively (rather than as individual particles), there must be many particles inside the Debye sphere:
This is the plasma parameter condition. When , 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: micrometers
- Fusion plasma: micrometers to millimeters
- Interstellar plasma: 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.