diff options
author | Aaron LI <aly@aaronly.me> | 2019-02-18 22:33:39 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-02-18 22:38:07 +0800 |
commit | 27dc87774ad6f63ed4ba68201bdfe7b9b4ca2587 (patch) | |
tree | 6033407d177b7a34824da7c765b021979bd15e5d /fg21sim/configs | |
parent | 0de191f82ffbb981501da4de96b83ad01971a4c2 (diff) | |
download | fg21sim-27dc87774ad6f63ed4ba68201bdfe7b9b4ca2587.tar.bz2 |
clusters/halo: Further extend the halo radius calculation
Diffstat (limited to 'fg21sim/configs')
-rw-r--r-- | fg21sim/configs/config.spec | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fg21sim/configs/config.spec b/fg21sim/configs/config.spec index 1bfb27a..556c662 100644 --- a/fg21sim/configs/config.spec +++ b/fg21sim/configs/config.spec @@ -397,9 +397,13 @@ stream = option("stderr", "stdout", "", default="stderr") x_cr = float(default=0.015, min=0.001, max=0.1) # The scaling index of the diffusion coefficient (D_γγ) w.r.t. the - # mass of the main cluster. + # mass of the cluster. mass_index = float(default=0, min=0, max=2) + # The scaling index of the halo radius (R_halo) w.r.t. the virial + # radius of the cluster. + radius_index = float(default=0, min=0, max=3) + # The spectral index of the injected primary electrons. injection_index = float(default=2.3, min=2.1, max=3.0) |