-
Notifications
You must be signed in to change notification settings - Fork 5
/
cosmoparms_WMAP3.f90
29 lines (20 loc) · 1009 Bytes
/
cosmoparms_WMAP3.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
module cosmology_parameters
! This module defines essential cosmological parameters
! Version: WMAP3
use precision, only: dp
use mathconstants, only: pi
use cgsconstants, only: G_grav
use astroconstants, only: Mpc
implicit none
! WMAP3
character(len=10),parameter :: cosmo_id="WMAP3"
real(kind=dp),parameter :: h=0.73 ! Hubble constant (in 100 km/s/Mpc)
!real(kind=dp),parameter :: Omega0=0.238 ! Total matter density (in critical density)
real(kind=dp),parameter :: Omega0=0.24 ! Total matter density (in critical density)
real(kind=dp),parameter :: Omega_B=0.0418 ! Baryon density (in critical density)
!real(kind=dp),parameter :: Omega_B=0.0223/(h*h) ! Baryon density (in critical density)
real(kind=dp),parameter :: cmbtemp=2.726 ! CMB temperature
! Derived parameters
real(kind=dp),parameter :: H0=h*100.0*1e5/Mpc ! Hubble constant (cgs)
real(kind=dp),parameter :: rho_crit_0=3.0*H0*H0/(8.0*pi*G_grav) ! critical density (cgs)
end module cosmology_parameters