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
13
14
15
16
//! Models using the discretized heat exchanger approach.
//!
//! A discretized heat exchanger divides the flow into a linear series of
//! constant-property sub-exchangers so thermodynamic properties can vary
//! along a linear array of nodes, supporting real-fluid behavior.

pub(crate) mod core;
pub mod recuperator;

pub use recuperator::{
    OutletTemp, RecuperatorGivenOutlet, RecuperatorGivenOutletError, RecuperatorGivenOutletInput,
    RecuperatorGivenOutletOutput, RecuperatorGivenUa, RecuperatorGivenUaConfig,
    RecuperatorGivenUaError, RecuperatorGivenUaInput, RecuperatorGivenUaOutput,
};

pub use core::{HeatTransferRate, Inlets, MassFlows, MinDeltaT, PressureDrops};