Skip to content

Commit

Permalink
checked Rust docs
Browse files Browse the repository at this point in the history
  • Loading branch information
prehner committed Feb 22, 2024
1 parent 9b95af7 commit 399866e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
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

0 comments on commit 399866e

Please sign in to comment.