improving constants
IUPAC does not specify an official ambient temperature, T=273.15K from standard temperature and pressure (STP) is not particularly suited for our purposes
This commit is contained in:
parent
79864818df
commit
4a84c42112
|
@ -9,8 +9,8 @@ module constants
|
||||||
public
|
public
|
||||||
|
|
||||||
real(pReal), parameter :: &
|
real(pReal), parameter :: &
|
||||||
T_ROOM = 300.0_pReal, & !< Room temperature in K. ToDo: IUPAC: 298.15
|
T_ROOM = 298.15_pReal, & !< Room temperature in K (25°C)/Standard Ambient Temperaure and Pressure (SATP)
|
||||||
K_B = 1.38e-23_pReal, & !< Boltzmann constant in J/Kelvin
|
K_B = 1.380649e-23_pReal, & !< Boltzmann constant in J/Kelvin (https://doi.org/10.1351/goldbook)
|
||||||
N_A = 6.02214076e23_pReal !< Avogadro constant in 1/mol
|
N_A = 6.02214076e23_pReal !< Avogadro constant in 1/mol (https://doi.org/10.1351/goldbook)
|
||||||
|
|
||||||
end module constants
|
end module constants
|
||||||
|
|
Loading…
Reference in New Issue