conspire 0.6.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Physics library.

/// Molecular physics models.
pub mod molecular;

use crate::math::Scalar;

/// The Boltzmann constant in units of J/(molâ‹…K).
pub const BOLTZMANN_CONSTANT: Scalar = 8.314_462_618_153_24;

/// Standard room temperature in units of K.
pub const ROOM_TEMPERATURE: Scalar = 273.15;