logic-mesh 1.0.0

Control logic engine using event based and reactive blocks written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2022-2026, Radu Racariu.

//!
//! Psychrometric calculations (moist-air properties for HVAC).
//!

pub mod dewpoint;
pub mod enthalpy;
pub mod wet_bulb;

pub use dewpoint::Dewpoint;
pub use enthalpy::Enthalpy;
pub use wet_bulb::WetBulb;