NLSL
physcn.f90
Go to the documentation of this file.
1 c NLSL Version 1.9.0 beta 2/13/15
2 c----------------------------------------------------------------------
3 c =========================
4 c module PHYSCN
5 c =========================
6 c
7 c Physical constants (in cgs/electromagnetic units)
8 c ge: free-electron g-value
9 c betae: Bohr magneton
10 c hbar: Planck's constant
11 c gammae: electronic gyromagnetic ratio
12 c kb: Boltzmann's constant
13 c
14 c --- updated to CODATA 1998 values 20020213 WH
15 c----------------------------------------------------------------------
16 c
17  module physcn
18  implicit none
19 c
20  double precision, parameter ::
21  # ge=2.002 319 304 3737 d0,
22  # betae=927.400 899 d-23,
23  # hbar=1.054 571 596 d-27,
24  # gammae=1.760 859 794 d7,
25  # kb=1.380 6503 d-16
26 c
27  end module physcn
double precision, parameter betae
Definition: physcn.f90:20
double precision, parameter ge
Definition: physcn.f90:20
double precision, parameter gammae
Definition: physcn.f90:20
double precision, parameter hbar
Definition: physcn.f90:20
double precision, parameter kb
Definition: physcn.f90:20