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
//! Flow arrangements supported by the heat exchanger utilities.

mod counter_flow;
mod cross_flow;
mod parallel_flow;
mod shell_and_tube;

pub use counter_flow::CounterFlow;
pub use cross_flow::{CrossFlow, Mixed, Unmixed};
pub use parallel_flow::ParallelFlow;
pub use shell_and_tube::{ShellAndTube, ShellAndTubeConfigError};