Fermi_energy

plasmapy.formulary.quantum.Fermi_energy(n_e: Quantity) Quantity[source]

Calculate the kinetic energy in a degenerate electron gas.

Aliases: Ef_

Parameters:

n_e (Quantity) – Electron number density.

Returns:

energy_F – The Fermi energy in joules.

Return type:

Quantity

Raises:
Warns:

UnitsWarning – If units are not provided, SI units are assumed.

Notes

The Fermi energy is the kinetic energy in a degenerate electron gas and is given by

\[E_F = \frac{π^2 ℏ^2}{2 m_e} \left( \frac{3 n_e}{π} \right)^{2/3}\]

This quantity is often used in place of thermal energy for analysis of cold, dense plasmas (e.g. warm dense matter, condensed matter).

Examples

>>> import astropy.units as u
>>> Fermi_energy(1e23 * u.cm**-3)
<Quantity 1.2586761e-18 J>