conspire/physics/mod.rs
1//! Physics library.
2
3/// Molecular physics models.
4pub mod molecular;
5
6use crate::math::Scalar;
7
8/// The Boltzmann constant in units of J/(molâ‹…K).
9pub const BOLTZMANN_CONSTANT: Scalar = 8.314_462_618_153_24;
10
11/// Standard room temperature in units of K.
12pub const ROOM_TEMPERATURE: Scalar = 273.15;