sciforge 0.0.3

A comprehensive scientific computing library in pure Rust with zero dependencies
Documentation
pub const EV_TO_JOULE: f64 = super::fundamental::E_CHARGE;
pub const JOULE_TO_EV: f64 = 1.0 / EV_TO_JOULE;
pub const HC_EV_NM: f64 = super::fundamental::H * super::fundamental::C / EV_TO_JOULE * 1e9;
pub const KEV_TO_KELVIN: f64 = 1e3 / KELVIN_TO_KEV;
pub const KELVIN_TO_KEV: f64 = super::fundamental::K_B / super::fundamental::E_CHARGE;
pub const CALORIE_TO_JOULE: f64 = 4.184;
pub const ATM_TO_PASCAL: f64 = 101_325.0;
pub const BAR_TO_PASCAL: f64 = 1.0e5;
pub const DEGREE_TO_RAD: f64 = std::f64::consts::PI / 180.0;
pub const RAD_TO_DEGREE: f64 = 180.0 / std::f64::consts::PI;
pub const BARN: f64 = 1.0e-28;
pub const ANGSTROM: f64 = 1.0e-10;
pub const FERMI: f64 = 1.0e-15;
pub const KWH_TO_J: f64 = 3.6e6;
pub const MEV_TO_J: f64 = EV_TO_JOULE * 1e6;
pub const SECONDS_PER_DAY: f64 = 86_400.0;
pub const J2000_EPOCH_JD: f64 = 2_451_545.0;
pub const JULIAN_CENTURY: f64 = 36_525.0;
pub const SIDEREAL_YEAR: f64 = 3.155_815e7;
pub const TROPICAL_YEAR: f64 = 3.155_693e7;