Skip to main content

electron_thermal_speed

Function electron_thermal_speed 

Source
pub fn electron_thermal_speed(electron_temperature_kelvin: f64) -> Option<f64>
Expand description

Computes the electron thermal speed.

Formula: v_th,e = sqrt(k_B T_e / m_e)

ยงExamples

use use_plasma::electron_thermal_speed;

assert!(electron_thermal_speed(10_000.0).is_some_and(|value| value > 0.0));