diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-04 15:54:00 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-04 15:54:00 +0800 |
commit | a70d36928d0a8d510210e79a21a1ae06bf412963 (patch) | |
tree | 57809044b465b941d985a7778dd8a02fbfb0a9ea /fg21sim/configs | |
parent | 3f100476ab746c27b3fded3b9237f78d84e9b9c0 (diff) | |
download | fg21sim-a70d36928d0a8d510210e79a21a1ae06bf412963.tar.bz2 |
utils/cosmology.py: Add parameter Tcmb0 [K]
Diffstat (limited to 'fg21sim/configs')
-rw-r--r-- | fg21sim/configs/00-general.conf.spec | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fg21sim/configs/00-general.conf.spec b/fg21sim/configs/00-general.conf.spec index 8e4ac59..8bd79de 100644 --- a/fg21sim/configs/00-general.conf.spec +++ b/fg21sim/configs/00-general.conf.spec @@ -108,13 +108,15 @@ manifest = string(default=None) # Cosmological parameters # References: Komatsu et al. 2011, ApJS, 192, 18; Tab.(1) [cosmology] -# Hubble constant at z=0 [ km/s/Mpc ] +# Hubble constant at z=0; [km/s/Mpc] H0 = float(default=71.0, min=0.0) # Density of non-relativistic matter in units of the critical density at z=0 OmegaM0 = float(default=0.27, min=0.0, max=1.0) # Density of the baryon at present day Omegab0 = float(default=0.046, min=0.0, max=1.0) -# Present-day rms density fluctuations on a scale of 8 h^-1 Mpc +# Present-day CMB temperature; [K] +Tcmb0 = float(default=2.725) +# Present-day rms density fluctuations on a scale of 8 h^-1 [Mpc] sigma8 = float(default=0.81, min=0.0) # Scalar spectral index ns = float(default=0.96, min=0.0) |