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
//! Perturbed-Chain Statistical Associating Fluid Theory (PC-SAFT)
//!
//! [Gross et al. (2001)](https://doi.org/10.1021/ie0003887)

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

#[cfg(feature = "dft")]
pub use dft::{PcSaftFunctional, PcSaftFunctionalContribution};
pub use eos::{DQVariants, PcSaft, PcSaftBinary, PcSaftOptions, PcSaftPure};
pub use parameters::{PcSaftAssociationRecord, PcSaftBinaryRecord, PcSaftParameters, PcSaftRecord};