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
use feos_core::StateVec;

trait BulkPropertyCalculation {
    fn name(&self) -> String;

    fn calcualte(&self, states: StateVec) -> Array1<f64>;
}

pub struct PTData {}