aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/configs/20-extragalactic.conf.spec
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-10-22 18:41:27 +0800
committerAaron LI <aaronly.me@outlook.com>2016-10-22 18:41:27 +0800
commit07ba51486daa35b828f0cb02d854f9b6afc7befb (patch)
treed61a0efa8647202e4aa45fb10d340f437c678b5a /fg21sim/configs/20-extragalactic.conf.spec
parent72f7433d50c4769a7d422ca2ec27a032b633a56d (diff)
downloadfg21sim-07ba51486daa35b828f0cb02d854f9b6afc7befb.tar.bz2
Support new simulation component: extragalactic/clusters
Support simulate the radio emission from clusters of galaxies. Currently only the radio halos is considered, while the radio relics need more investigations. Also, this simulation requires a cluster catalog derived from the Hubble Volume Project simulation. NOTE: not tested at the moment
Diffstat (limited to 'fg21sim/configs/20-extragalactic.conf.spec')
-rw-r--r--fg21sim/configs/20-extragalactic.conf.spec41
1 files changed, 41 insertions, 0 deletions
diff --git a/fg21sim/configs/20-extragalactic.conf.spec b/fg21sim/configs/20-extragalactic.conf.spec
new file mode 100644
index 0000000..bef7d66
--- /dev/null
+++ b/fg21sim/configs/20-extragalactic.conf.spec
@@ -0,0 +1,41 @@
+# Configurations for "fg21sim"
+# -*- mode: conf -*-
+#
+# Syntax: `ConfigObj`, https://github.com/DiffSK/configobj
+#
+# There are various configuration options that specify the input data
+# and/or templates required by the simulations, the properties of the input
+# data, the output products, as well as some parameters affecting the
+# simulation behaviors.
+#
+# This file contains the options corresponding the extragalactic emission
+# components, which currently includes the following components:
+# - clusters
+#
+# NOTE:
+# - The input templates for simulations should be HEALPix full-sky maps.
+# - The input catalog should be in CSV format.
+
+
+[extragalactic]
+
+ # Emissions from the clusters of galaxies
+ [[clusters]]
+ # The clusters catalog derived from the Hubble Volume Project (CSV file)
+ catalog = string(default=None)
+ # Output the effective/inuse clusters catalog data (CSV file)
+ catalog_outfile = string(default=None)
+
+ # The fraction that a cluster hosts a radio halo
+ halo_fraction = float(default=None)
+
+ # Resolution (unit: arcmin) for simulating each cluster, which are finally
+ # mapped to the HEALPix map of Nside specified in "[common]" section.
+ resolution = float(default=0.5)
+
+ # Filename prefix for this component
+ prefix = string(default="egcluster")
+ # Whether save this component to disk
+ save = boolean(default=True)
+ # Output directory to save the simulated results
+ output_dir = string(default=None)