diff options
author | Aaron LI <aly@aaronly.me> | 2017-07-21 10:27:03 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-07-21 10:27:03 +0800 |
commit | b3219ca75b4e566f904f2c57997edc5bdde47ea9 (patch) | |
tree | 4e73c6cfc6c6c2eee84705c65362afcb2336942f /fg21sim/configs | |
parent | f252691a199cb1761c3a5f81ee0931212b3c5ac9 (diff) | |
download | fg21sim-b3219ca75b4e566f904f2c57997edc5bdde47ea9.tar.bz2 |
Fix parameter names about cosmology
Signed-off-by: Aaron LI <aly@aaronly.me>
Diffstat (limited to 'fg21sim/configs')
-rw-r--r-- | fg21sim/configs/manager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fg21sim/configs/manager.py b/fg21sim/configs/manager.py index ce376aa..3f773a5 100644 --- a/fg21sim/configs/manager.py +++ b/fg21sim/configs/manager.py @@ -553,8 +553,8 @@ class ConfigManager: conf = self.get("cosmology") cosmoconf = { "H0": conf["H0"], - "OmegaM0": conf["OmegaM0"], - "Omegab0": conf["Omegab0"], + "Om0": conf["OmegaM0"], + "Ob0": conf["Omegab0"], "sigma8": conf["sigma8"], } return cosmoconf |