-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmod.rs
More file actions
24 lines (21 loc) · 756 Bytes
/
mod.rs
File metadata and controls
24 lines (21 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! 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.
#![warn(clippy::all)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::many_single_char_names)]
#![allow(clippy::suspicious_operation_groupings)]
#[cfg(feature = "dft")]
mod dft;
mod eos;
mod parameters;
#[cfg(feature = "dft")]
pub use dft::PetsFunctional;
pub use eos::{Pets, PetsOptions};
pub use parameters::{PetsBinaryRecord, PetsParameters, PetsRecord};
#[cfg(feature = "python")]
pub mod python;