forked from jautschbach/mcd-molcas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint-constants.f90
32 lines (21 loc) · 948 Bytes
/
print-constants.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
subroutine print_constants
use definitions
use constants_parameters
use shared_variables
implicit none
! ============================================================================
write (out, '(/1x,a/1x,a//, 9(1x,a,1x,f24.15/))') &
'Some of the constants that this code may have used internally are:', &
'(there may be some trailing numerical noise)', &
'c = speed of light in au: ', cspeed, &
'c**2 : ', csq, &
'Hartree to cm**(-1) conversion:', au2cm, &
'Hartree to eV conversion: ', au2ev, &
'Boltzmann constant in au/K ', boltzau, &
'Boltzmann constant in cm^-1/K ', boltzcm, &
'Dipole au to Debye conversion ', debye, &
'free electron g factor: ', ge, &
'au to 1E-40 esu**2 cm**2: ', d2au2cgs
! ============================================================================
return
end subroutine print_constants