plasma_dispersion_func

plasmapy.dispersion.dispersionfunction.plasma_dispersion_func(zeta: complex | int | float | ndarray | Quantity) complex | float | ndarray | Quantity

Calculate the plasma dispersion function.

Parameters:

zeta (complex, int, float, ndarray, or Quantity) – Argument of plasma dispersion function.

Returns:

Z – Value of plasma dispersion function.

Return type:

complex, float, or ndarray

Raises:

Notes

The plasma dispersion function is defined as:

\[Z(\zeta) = \pi^{-0.5} \int_{-\infty}^{+\infty} \frac{e^{-x^2}}{x-\zeta} dx\]

where the argument is a complex number [Fried and Conte, 1961].

In plasma wave theory, the plasma dispersion function appears frequently when the background medium has a Maxwellian distribution function. The argument of this function then refers to the ratio of a wave’s phase velocity to a thermal velocity.

Examples

>>> plasma_dispersion_func(0)
1.7724538509055159j
>>> plasma_dispersion_func(1j)
0.757872156141312j
>>> plasma_dispersion_func(-1.52+0.47j)
(0.6088888957234254+0.33494583882874024j)

For user convenience plasma_dispersion_func_lite is bound to this function and can be used as follows:

>>> plasma_dispersion_func.lite(0)
1.7724538509055159j
>>> plasma_dispersion_func.lite(1j)
0.757872156141312j
>>> plasma_dispersion_func.lite(-1.52+0.47j)
(0.6088888957234254+0.33494583882874024j)