2021-11-25 10:51:56 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Martin Diehl, KU Leuven
|
|
|
|
!> @brief physical constants
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module constants
|
|
|
|
use prec
|
|
|
|
|
2022-06-22 02:16:54 +05:30
|
|
|
implicit none(type,external)
|
2021-11-25 10:51:56 +05:30
|
|
|
public
|
|
|
|
|
|
|
|
real(pReal), parameter :: &
|
2022-02-03 19:07:44 +05:30
|
|
|
T_ROOM = 293.15_pReal, & !< Room temperature in K (20°C)
|
2022-01-29 18:19:41 +05:30
|
|
|
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 (https://doi.org/10.1351/goldbook)
|
2021-11-25 10:51:56 +05:30
|
|
|
|
|
|
|
end module constants
|