diff options
author | Jason Ma <zxma_sjtu@qq.com> | 2016-10-27 12:13:07 +0800 |
---|---|---|
committer | Aaron LI <liweitianux@users.noreply.github.com> | 2016-10-27 12:13:07 +0800 |
commit | 2f40f984a44c393b72a62b36cf054171dabf169d (patch) | |
tree | 5eecb02290e1bf3cca47f90f9db427788d1da2b9 /fg21sim/configs/20-extragalactic.conf.spec | |
parent | e438cde9c3ea4a35dcff974a15ee7b0203ff077f (diff) | |
download | fg21sim-2f40f984a44c393b72a62b36cf054171dabf169d.tar.bz2 |
extragalactic/pointsource (#3)
Merge PR#3: Add new simulation component "extragalactic/pointsources", including SF, SB, RQ, FRI and FRII.
* extragalactic/pointsource: add point source simulation module
* extracgalactic/pointsource: add point source simulation module
* Add configurating spec to extragalgactic point sources.
* Modified some variables
* base.py: modified
* flux.py: modified
* fr1.py: modified
* fr2.py: modified
* pointsources.py: modified
* psparams.py: modified
* radioquiet.py: modified
* starforming.py: modified
* starbursting.py: modified
* Rewritten the comments.
* base.py: modified
* flux.py: modified
* fr1.py: modified
* fr2.py: modified
* Modified
* psparams.py: modified
* radioquiet.py: modified
* starforming.py: modified
* starbursting.py: modified
* Modified
* Modified
* Modified
* Modified
* Modified
* MOdified
* Modified
* Modified
* Modified
* Modified
* Modified
* Modified
* Modified
* Modified
* Modified
* Changed pointsource to pointsources
* Fixed some config keywords
* Fixed some config keywords
* Fixed some config keywords
* Fixed some config keywords
* Fixed some config keywords
* Fixed some config keywords
* Fixed some config keywords
* base.py:rewrited
* fr1.py:rewritten
* pointsources.py: rewritten
* radioquiet.py: rewritten
* Rewritten
* Rewritten
* base.py: modified
* fr1.py: modified
* fr2.py: modified
* radioquiet.py: modified
* starbursting.py: modified
* starforming.py: modified
* Fix conflicts
* fg21sim: fixed conflicts
* base.py: modified frequencies loading in _get_configs()
* Rewritten as forground.py
* fg21sim: fixed conflicts
* base.py: deteled loading for frequencies configurations.
* fr1.py: modified
* fr2.py: modified
* pointsources.py: modified
* radioquiet.py: modified
* starbursting.py: modified
* starforming.py: modified
* Add new methods to calculate Tb.
* Add new methods to calculate Tb.
* Add new methods to calculate Tb.
* Add new methods to calculate Tb.
* Add new methods to calculate Tb.
* Add new methods to calculate Tb.
* Deleted useless comments.
* Add pscomps to deal with multi-type PS problem.
* Add a new key.
* Fixed permission to 755.
* Rejusted PS subsections.
* Add methods to calcualte luminosity function and redshift distribution.
* Rejusted generation of samples redshift and luminosity.
* Fixed mistakes on FRII structure, added hotspots and offsets.
* Reajusted generation of samples redshift and luminosity.
* Readujsted generation of samples radii, redshifts and luminosity.
* Readujsted generation of samples radii, redshifts and luminosity.
* Fixed conflicts.
* Fixed conficts.
* Combined configurations of pointsources.
* Removed the older extragalactic configuration file.
* Fixed some mistakes.
* Fixed mistakes of drawing PS.
* Fixed mistakes of drawing PS.
* Fixed code style by pep8 checking.
* Fixed code style by pep8 checking.
* Fixed code style by pep8 checking.
* Fixed some coding style.
* Reconfigured default redshift interval.
* Reconfigured default redshift interval.
* Reconfigured default redshift interval.
* Fixed mistakes in method calc_single_Tb and changed resolution of grid.
* Fixed mistakes in method calc_single_Tb and changed resolution of grid.
* Deleted astropy.units style code to accelerate.
* Deleted astropy.units style code to accelerate.
* Deleted astropy.units style code to accelerate.
* Deleted astropy.units style code to accelerate.
* Deleted astropy.units style code to accelerate.
* Deleted astropy.units style code to accelerate.
* Deleted astropy.units style code to accelerate.
* Fixed some mistakes.
* Fixed some mistakes.
* Changed dA from au.Mpc to float64.
* Fixed some mistakes.
* Fixed some mistakes.
* Fixed some mistakes.
* Reajusted grid resolution to generate discs.
* Reajusted grid resolution to generate discs.
* Reajusted loading strategy of parameter resolution.
* Reajusted code style of configuration loading.
* Reajusted code style of configuration loading.
* Reajusted code style of configuration loading.
* Reajusted code style of configuration loading.
* Reajusted code style of configuration loading.
Diffstat (limited to 'fg21sim/configs/20-extragalactic.conf.spec')
-rw-r--r-- | fg21sim/configs/20-extragalactic.conf.spec | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/fg21sim/configs/20-extragalactic.conf.spec b/fg21sim/configs/20-extragalactic.conf.spec index bef7d66..c6be967 100644 --- a/fg21sim/configs/20-extragalactic.conf.spec +++ b/fg21sim/configs/20-extragalactic.conf.spec @@ -39,3 +39,45 @@ save = boolean(default=True) # Output directory to save the simulated results output_dir = string(default=None) + + # Extragalactic point sources + [[pointsources]] + # Whether save this point source catelogue to disk + save = boolean(default=True) + # Output directory to save the simulated catelogues + output_dir = string(default="PS_tables") + # PS components to be simulated + pscomponents=string_list(default=list()) + # Resolution [arcmin] + resolution=float(default=0.6) + # Number of each type of point source + # Star forming + [[[starforming]]] + # Number of samples + numps = integer(default=1000) + # Prefix + prefix = string(default="SF") + + [[[starbursting]]] + # Number of samples + numps = integer(default=1000) + # Prefix + prefix = string(default="SB") + + [[[radioquiet]]] + # Number of samples + numps = integer(default=1000) + # Prefix + prefix = string(default="RQ") + + [[[FRI]]] + # Number of samples + numps = integer(default=1000) + # Prefix + prefix = string(default="FRI") + + [[[FRII]]] + # Number of samples + numps = integer(default=1000) + # Prefix + prefix = string(default="FRII") |