aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/configs
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2019-01-29 18:58:10 +0800
committerAaron LI <aly@aaronly.me>2019-01-29 18:58:10 +0800
commit54434d4b24104457d04af79a1a75ecf713c07bc1 (patch)
tree4ca127d88a8ddbe0b1923e8fc651abda1fcff534 /fg21sim/configs
parent25f2c500cba5b4395cfbd5910efe8fccd0cc3fce (diff)
downloadfg21sim-54434d4b24104457d04af79a1a75ecf713c07bc1.tar.bz2
clusters/halo: Add options bolo_freq_{min,max,num}
Update the default bolometric frequency band to: 10 MHz -- 100 GHz.
Diffstat (limited to 'fg21sim/configs')
-rw-r--r--fg21sim/configs/config.spec8
1 files changed, 8 insertions, 0 deletions
diff --git a/fg21sim/configs/config.spec b/fg21sim/configs/config.spec
index 25c972a..2faac91 100644
--- a/fg21sim/configs/config.spec
+++ b/fg21sim/configs/config.spec
@@ -437,3 +437,11 @@ stream = option("stderr", "stdout", "", default="stderr")
f_rc = float(default=0.1)
# The slope parameter (i.e., beta).
beta = float(default=0.8)
+
+ # The minimum and maximum frequencies as well as the number of frequency
+ # points for calculating the total radio emissivity, which is used to
+ # approximate the bolometric emissivity.
+ # Unit: [MHz]
+ bolo_freq_min = float(default=10)
+ bolo_freq_max = float(default=1e5)
+ bolo_freq_num = integer(default=256)