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
/// Options for specifying tank insulation.
///
/// The insulation setting determines what conductance value is applied between
/// the tank fluid and the surrounding environment on all exposed surfaces.
#[derive(Debug, Clone, Copy)]
#[non_exhaustive]
pub enum Insulation {
    /// The tank is perfectly insulated — no heat transfer to the environment.
    Adiabatic,
}