1 2 3 4 5 6 7 8
//! A collection of equation of state models. mod gc_pcsaft; pub(crate) mod ideal_gas; pub(crate) mod pcsaft; pub use gc_pcsaft::{GcPcSaft, GcPcSaftParameters}; pub use ideal_gas::Joback; pub use pcsaft::{PcSaftBinary, PcSaftPure};