diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-11 10:00:55 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-11 10:00:55 +0800 |
commit | e252342e4fb0c106734e5659203d36985242bc7c (patch) | |
tree | 9de8b1b9f953daafeaedcae2a5ec3fa3cd8ebdda /fg21sim/configs | |
parent | fb162dd5b9c7cf13758fb7908d14b9e559a73e9c (diff) | |
download | fg21sim-e252342e4fb0c106734e5659203d36985242bc7c.tar.bz2 |
galactic: Add free-free component simulation
* New class "galactic.FreeFree" to simulate free-free emission
* Add new config section "galactic/freefree"
NOTE: current untested
Diffstat (limited to 'fg21sim/configs')
-rw-r--r-- | fg21sim/configs/10-galactic.conf.spec | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fg21sim/configs/10-galactic.conf.spec b/fg21sim/configs/10-galactic.conf.spec index 81e6c6d..216bc42 100644 --- a/fg21sim/configs/10-galactic.conf.spec +++ b/fg21sim/configs/10-galactic.conf.spec @@ -34,3 +34,22 @@ save = boolean(default=True) # Output directory to save the simulated results output_dir = string(default=None) + + # free-free bremsstrahlung emission component + [[freefree]] + # The H{\alpha} map used as the free-free emission template + halphamap = string(default=None) + # The unit of the H{\alpha} template (e.g., "Rayleigh") + halphamap_unit = string(default=None) + + # The 100-{\mu}m dust map used for dust absorption correction + dustmap = string(default=None) + # The unit of the above dust map (e.g., "MJy/sr") + dustmap_unit = string(default=None) + + # Filename prefix for this component + prefix = string(default="gfree") + # Whether save this component to disk + save = boolean(default=True) + # Output directory to save the simulated results + output_dir = string(default=None) |