feos 0.9.5

FeOs - A framework for equations of state and classical density functional theory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Perturbed Truncated and Shifted (PeTS) equation of state
//!
//! [Heier et al. (2018)](https://doi.org/10.1080/00268976.2018.1447153)
//!
//! PeTS is an equation of state for the truncated and shifted Lennar-Jones fluid with cut-off
//! distance 2.5 $\sigma$.
//! It utilizes a hard-sphere fluid as reference with an attactive perturbation.

#[cfg(feature = "dft")]
mod dft;
mod eos;
mod parameters;

#[cfg(feature = "dft")]
pub use dft::PetsFunctionalContribution;
pub use eos::{Pets, PetsOptions};
pub use parameters::{PetsBinaryRecord, PetsParameters, PetsRecord};