Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
checked Rust docs
  • Loading branch information
prehner committed Feb 22, 2024
commit 399866ef1e393a919d82e6afbbcda056b91650bb
1 change: 1 addition & 0 deletions src/gc_pcsaft/dft/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ impl FluidParameters for GcPcSaftFunctional {
}
}

/// Individual contributions for the gc-PC-SAFT Helmholtz energy functional.
#[derive(FunctionalContribution)]
pub enum GcPcSaftFunctionalContribution {
Fmt(FMTContribution<GcPcSaftFunctionalParameters>),
Expand Down
4 changes: 3 additions & 1 deletion src/hard_sphere/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ use std::{borrow::Cow, sync::Arc};
#[cfg(feature = "dft")]
mod dft;
#[cfg(feature = "dft")]
pub use dft::{FMTContribution, FMTFunctional, FMTVersion, HardSphereParameters};
pub(crate) use dft::HardSphereParameters;
#[cfg(feature = "dft")]
pub use dft::{FMTContribution, FMTFunctional, FMTVersion};

/// Different monomer shapes for FMT and BMCSL.
pub enum MonomerShape<'a, D> {
Expand Down
1 change: 1 addition & 0 deletions src/pcsaft/dft/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ impl PairPotential for PcSaftFunctional {
}
}

/// Individual contributions for the PC-SAFT Helmholtz energy functional.
#[derive(FunctionalContribution)]
pub enum PcSaftFunctionalContribution {
PureFMTAssoc(PureFMTAssocFunctional),
Expand Down
1 change: 1 addition & 0 deletions src/saftvrqmie/dft/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ impl PairPotential for SaftVRQMieFunctional {
}
}

/// Individual contributions for the SAFT-VRQ Mie Helmholtz energy functional.
#[derive(FunctionalContribution)]
pub enum SaftVRQMieFunctionalContribution {
Fmt(FMTContribution<SaftVRQMieParameters>),
Expand Down