psychrometry 0.3.0

Psychrometric calculations in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// TODO: Implement limits to quantities. Temperature and pressure specifically has no meaning when it is negative.
// Relative humidity cannot be outside 0...1
mod quantities_base;

mod pressure;
pub use pressure::Pressure;

mod temperature;
pub use temperature::Temperature;

mod specific_enthalpy;
pub use specific_enthalpy::SpecificEnthalpy;