sciforge-lib 0.0.4

Scientific computing library — mathematics, physics, chemistry, biology, astronomy, geology, meteorology.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub const SPECIFIC_GAS_CONSTANT_DRY_AIR: f64 = 287.058;
pub const SPECIFIC_GAS_CONSTANT_WATER_VAPOR: f64 = 461.5;
pub const SPECIFIC_HEAT_DRY_AIR: f64 = 1003.5;
pub const DRY_ADIABATIC_LAPSE_RATE: f64 = crate::constants::EARTH_GRAVITY / SPECIFIC_HEAT_DRY_AIR;
pub const VIRTUAL_TEMP_FACTOR: f64 = 0.608;
pub const MIXING_RATIO_FACTOR: f64 = 0.622;
pub const MAGNUS_A: f64 = 17.67;
pub const MAGNUS_B: f64 = 243.5;
pub const SATURATION_VAPOR_PRESSURE_0C: f64 = 6.112;
pub const DENSITY_ALTITUDE_SCALE: f64 = 120.0;
pub const ISA_SEA_LEVEL_TEMP_C: f64 = 15.0;
pub const ISA_LAPSE_RATE_PER_M: f64 = 0.002;
pub const VON_KARMAN: f64 = 0.41;
pub const STANDARD_AIR_DENSITY_SEA_LEVEL: f64 = 1.225;
pub const RADIATIVE_FORCING_CO2_COEFF: f64 = 5.35;
pub const SOLAR_CONSTANT: f64 = 1361.0;
pub const BEAUFORT_TO_MS_COEFF: f64 = 0.836;
pub const BEAUFORT_TO_MS_EXPONENT: f64 = 1.5;