twine-thermo 0.4.0

Thermodynamic and fluid property modeling for the Twine framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Thermodynamic and fluid property modeling for the Twine framework.

mod control_volume;
mod error;
mod flow;
mod state;
mod stream;

pub mod capability;
pub mod fluid;
pub mod model;
pub mod units;

pub use control_volume::{BoundaryFlow, ControlVolume};
pub use error::PropertyError;
pub use flow::{HeatFlow, MassFlow, WorkFlow};
pub use state::{State, StateDerivative};
pub use stream::Stream;