diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-05-16 10:25:19 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-06-01 16:33:40 +0800 |
commit | 717931fcdb10a6e6691e8ccb393b045e8013061e (patch) | |
tree | fe7c63a6470036db960d882ab1151de7288f9cc9 /fg21sim/extragalactic/clusters/main.py | |
parent | 41a97ba0be1637c41d32f4c15dca6369a1dc88ae (diff) | |
download | fg21sim-717931fcdb10a6e6691e8ccb393b045e8013061e.tar.bz2 |
fg21sim/clusters: Save progress on halo simulation
Diffstat (limited to 'fg21sim/extragalactic/clusters/main.py')
-rw-r--r-- | fg21sim/extragalactic/clusters/main.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/fg21sim/extragalactic/clusters/main.py b/fg21sim/extragalactic/clusters/main.py new file mode 100644 index 0000000..8f7f8e7 --- /dev/null +++ b/fg21sim/extragalactic/clusters/main.py @@ -0,0 +1,24 @@ +# Copyright (c) 2017 Weitian LI <liweitianux@live.com> +# MIT license + +""" +Simulate (giant) radio halos of galaxy clusters as one of the +foreground components. +""" + +import logging + +import numpy as np + +from .halo import HaloSingle + + +logger = logging.getLogger(__name__) + + +class Halos: + """ + Simulate (giant) radio halos of galaxy clusters as one of the + foreground components. + """ + pass |