feos-pets 0.1.0

Implementation of PeTS equation of state and corresponding Helmholtz energy functional.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(clippy::all)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::many_single_char_names)]
#![allow(clippy::suspicious_operation_groupings)]

mod dft;
mod eos;
mod parameters;

pub use dft::PetsFunctional;
pub use eos::{Pets, PetsOptions};
pub use parameters::{PetsParameters, PetsRecord};

#[cfg(feature = "python")]
pub mod python;