feos/pets/mod.rs
1//! Perturbed Truncated and Shifted (PeTS) equation of state
2//!
3//! [Heier et al. (2018)](https://doi.org/10.1080/00268976.2018.1447153)
4//!
5//! PeTS is an equation of state for the truncated and shifted Lennar-Jones fluid with cut-off
6//! distance 2.5 $\sigma$.
7//! It utilizes a hard-sphere fluid as reference with an attactive perturbation.
8
9#[cfg(feature = "dft")]
10mod dft;
11mod eos;
12mod parameters;
13
14#[cfg(feature = "dft")]
15pub use dft::{PetsFunctional, PetsFunctionalContribution};
16pub use eos::{Pets, PetsOptions};
17pub use parameters::{PetsBinaryRecord, PetsParameters, PetsRecord};
18
19#[cfg(feature = "python")]
20pub mod python;