twine-models 0.4.0

Domain-specific models and model-building tools for Twine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Capability traits used to query and construct thermodynamic states.
//!
//! All traits in this module have blanket impls for `&T`, so borrowed models
//! satisfy the same bounds as owned ones.

mod base;
mod properties;
mod state_from;

pub use base::ThermoModel;
pub use properties::*;
pub use state_from::StateFrom;