diff options
-rw-r--r-- | fg21sim/configs/00-general.conf.spec | 14 | ||||
-rw-r--r-- | fg21sim/configs/20-extragalactic.conf.spec | 2 |
2 files changed, 9 insertions, 7 deletions
diff --git a/fg21sim/configs/00-general.conf.spec b/fg21sim/configs/00-general.conf.spec index a6b3af2..ffc1acf 100644 --- a/fg21sim/configs/00-general.conf.spec +++ b/fg21sim/configs/00-general.conf.spec @@ -41,18 +41,20 @@ type = option("patch", "healpix", default="patch") # Configurations for input/output sky patch [[patch]] - # The (R.A., Dec.) coordinate of the sky patch center [deg] + # The (R.A., Dec.) coordinate of the sky patch center + # Unit: [deg] + # (MWA EoR0 field center: (0, -27)) xcenter = float(default=0.0, min=0.0, max=360.0) - ycenter = float(default=0.0, min=-90.0, max=90.0) + ycenter = float(default=-27.0, min=-90.0, max=90.0) # The image dimensions (i.e., number of pixels) of the sky patch, # along the X (R.A./longitude) and Y (Dec./latitude) axes. - # Default: 1200x1200 => 10x10 [deg^2] (30 arcsec/pixel) - xsize = integer(default=1200, min=1) - ysize = integer(default=1200, min=1) + # Default: 1800x1800 => 10x10 [deg^2] (20 arcsec/pixel) + xsize = integer(default=1800, min=1) + ysize = integer(default=1800, min=1) # Pixel size [arcsec] - pixelsize = float(default=30.0, min=0.0) + pixelsize = float(default=20.0, min=0.0) # Configurations for input/output HEALPix sky [[healpix]] diff --git a/fg21sim/configs/20-extragalactic.conf.spec b/fg21sim/configs/20-extragalactic.conf.spec index 4ed01ee..3137c73 100644 --- a/fg21sim/configs/20-extragalactic.conf.spec +++ b/fg21sim/configs/20-extragalactic.conf.spec @@ -77,7 +77,7 @@ # Ratio of the total energy injected into cosmic-ray electrons during # the cluster life to its total thermal energy. - eta_e = float(default=0.01, min=0.0, max=0.1) + eta_e = float(default=0.005, min=0.001, max=0.1) # Minimum and maximum Lorentz factor (i.e., energy) of the relativistic # electron spectrum. |