twine-thermo 0.4.2

Thermodynamic and fluid property modeling for the Twine framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Thermodynamic property models.

pub mod incompressible;
pub mod perfect_gas;

pub(crate) mod ideal_gas_eos;

#[cfg(feature = "coolprop")]
#[cfg_attr(docsrs, doc(cfg(feature = "coolprop")))]
pub mod coolprop;

pub use incompressible::Incompressible;
pub use perfect_gas::PerfectGas;

#[cfg(feature = "coolprop")]
#[cfg_attr(docsrs, doc(cfg(feature = "coolprop")))]
pub use coolprop::CoolProp;