aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/extragalactic
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2018-01-21 16:30:06 +0800
committerAaron LI <aly@aaronly.me>2018-01-21 16:30:06 +0800
commit5181899842fc69230eb815fc319639e84892be1b (patch)
tree948cb6dc7c407882419e0f7646d900d5a2f13f16 /fg21sim/extragalactic
parentbf7dcc7ea87e0ae13562bb9a6bd6187d394fb18b (diff)
downloadfg21sim-5181899842fc69230eb815fc319639e84892be1b.tar.bz2
clusters/halo: simplify energy loss calculations
Diffstat (limited to 'fg21sim/extragalactic')
-rw-r--r--fg21sim/extragalactic/clusters/halo.py41
1 files changed, 14 insertions, 27 deletions
diff --git a/fg21sim/extragalactic/clusters/halo.py b/fg21sim/extragalactic/clusters/halo.py
index 2cd905b..2e04189 100644
--- a/fg21sim/extragalactic/clusters/halo.py
+++ b/fg21sim/extragalactic/clusters/halo.py
@@ -582,12 +582,10 @@ class RadioHalo:
"""
if t < self.age_begin:
# To derive the initial electron spectrum
- advection = (abs(self._loss_ionization(gamma, self.age_begin)) +
- abs(self._loss_radiation(gamma, self.age_begin)))
+ advection = abs(self._energy_loss(gamma, self.age_begin))
else:
# Turbulence acceleration and beyond
- advection = (abs(self._loss_ionization(gamma, t)) +
- abs(self._loss_radiation(gamma, t)) -
+ advection = (abs(self._energy_loss(gamma, t)) -
(self.fp_diffusion(gamma, t) * 2 / gamma))
return advection
@@ -717,9 +715,14 @@ class RadioHalo:
else:
return False
- def _loss_ionization(self, gamma, t):
+ def _energy_loss(self, gamma, t):
"""
- Energy loss through ionization and Coulomb collisions.
+ Energy loss mechanisms:
+ * inverse Compton scattering off the CMB photons
+ * synchrotron radiation
+ * Coulomb collisions
+
+ Reference: Ref.[sarazin1999],Eq.(6,7,9)
Parameters
----------
@@ -734,32 +737,16 @@ class RadioHalo:
loss : float, or float 1D `~numpy.ndarray`
The energy loss rates
Unit: [Gyr^-1]
-
- References
- ----------
- Ref.[sarazin1999],Eq.(9)
"""
gamma = np.asarray(gamma)
z = COSMO.redshift(t)
+ B = self.magnetic_field(t) # [uG]
mass = self.mass_main(t)
n_th = helper.density_number_thermal(mass, z) # [cm^-3]
- loss = -3.79e4 * n_th * (1 + np.log(gamma/n_th) / 75)
- return loss
-
- def _loss_radiation(self, gamma, t):
- """
- Energy loss via synchrotron emission and inverse Compton
- scattering off the CMB photons.
-
- References
- ----------
- Ref.[sarazin1999],Eq.(6,7)
- """
- gamma = np.asarray(gamma)
- B = self.magnetic_field(t) # [uG]
- z = COSMO.redshift(t)
- loss = -4.32e-4 * gamma**2 * ((B/3.25)**2 + (1+z)**4)
- return loss
+ loss_ic = -4.32e-4 * gamma**2 * (1+z)**4
+ loss_syn = -4.10e-5 * gamma**2 * B**2
+ loss_coul = -3.79e4 * n_th * (1 + np.log(gamma/n_th) / 75)
+ return loss_ic + loss_syn + loss_coul
class RadioHaloAM(RadioHalo):