psychrometry 0.3.0

Psychrometric calculations in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod units_base;

mod pressure;
pub(crate) use pressure::PressureUnit;
pub use pressure::{Atmosphere, Pascal, Psi};

mod specific_enthalpy;
pub(crate) use specific_enthalpy::SpecificEnthalpyUnit;
pub use specific_enthalpy::{BtuPerPound, JoulesPerKg, KilojoulesPerKg};

mod temperature;
pub(crate) use temperature::TemperatureUnit;
pub use temperature::{Celcius, Fahrenheit, Kelvin};