#[cfg(test)]
mod test;
use super::{Action, Charge, Entropy, MolarEntropy, ReciprocalAmount, Temperature, Velocity};
use crate::math::Quantity;
pub const AVOGADRO_CONSTANT: Quantity<ReciprocalAmount> =
ReciprocalAmount::per_mole(6.022_140_76e23);
pub const BOLTZMANN_CONSTANT: Quantity<Entropy> = Entropy::joules_per_kelvin(1.380_649e-23);
pub const GAS_CONSTANT: Quantity<MolarEntropy> =
MolarEntropy::joules_per_mole_kelvin(8.314_462_618_153_24);
pub const ELEMENTARY_CHARGE: Quantity<Charge> = Charge::coulombs(1.602_176_634e-19);
pub const LIGHT_SPEED: Quantity<Velocity> = Velocity::meters_per_second(2.997_924_58e8);
pub const PLANCK_CONSTANT: Quantity<Action> = Action::joule_seconds(6.626_070_15e-34);
pub const ROOM_TEMPERATURE: Quantity<Temperature> = Temperature::celsius(20.0);