diff options
author | Aaron LI <aly@aaronly.me> | 2019-01-10 23:56:53 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-01-10 23:56:53 +0800 |
commit | f5bdb94f65369771b13972b8f22c1a74a258d16c (patch) | |
tree | bc7764cf54efb0ab2ec12c279f23154ad801cbc9 /fg21sim/extragalactic | |
parent | 3cc9dcb0a8d9b71e2404b2692a5041881373e1c0 (diff) | |
download | fg21sim-f5bdb94f65369771b13972b8f22c1a74a258d16c.tar.bz2 |
clusters/halo: Renamed "RadioHalo" to "RadioHalo1M"
Diffstat (limited to 'fg21sim/extragalactic')
-rw-r--r-- | fg21sim/extragalactic/clusters/halo.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fg21sim/extragalactic/clusters/halo.py b/fg21sim/extragalactic/clusters/halo.py index 9c25a3a..a6bb365 100644 --- a/fg21sim/extragalactic/clusters/halo.py +++ b/fg21sim/extragalactic/clusters/halo.py @@ -73,7 +73,7 @@ from ...utils.units import (Units as AU, logger = logging.getLogger(__name__) -class RadioHalo: +class RadioHalo1M: """ Simulate the radio halo properties for a galaxy cluster that is experiencing an on-going merger or had a merger recently. @@ -124,7 +124,8 @@ class RadioHalo: The halo radius Unit: [kpc] gamma : 1D float `~numpy.ndarray` - The Lorentz factors of the adopted logarithmic grid to solve the equation. + The Lorentz factors of the adopted logarithmic grid to solve the + equation. _acceleration_disabled : bool Whether the turbulence acceleration is intentionally disabled? """ @@ -741,7 +742,7 @@ class RadioHalo: return loss_ic + loss_syn + loss_coul -class RadioHaloAM(RadioHalo): +class RadioHaloAM(RadioHalo1M): """ Simulate the radio halo properties for a galaxy cluster with all its on-going merger and past merger events taken into account. |