twine-thermo 0.4.2

Thermodynamic and fluid property modeling for the Twine framework.
Documentation
#![cfg_attr(docsrs, feature(doc_cfg))]

//! 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;