aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/extragalactic/clusters/helper.py
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2017-10-20 09:31:38 +0800
committerAaron LI <aly@aaronly.me>2017-10-20 09:31:38 +0800
commit283ca6c00e5ff6c74b529d0a460115516c16eec7 (patch)
tree7fe711d257de6b3c0cfecde8b4d6e4bb5b581aed /fg21sim/extragalactic/clusters/helper.py
parent015655947c99f69944143ab2f40b4845bba69c63 (diff)
downloadfg21sim-283ca6c00e5ff6c74b529d0a460115516c16eec7.tar.bz2
clusters/halo: Remove "mass_to_kT()", replaced by "kT_cluster()"
Diffstat (limited to 'fg21sim/extragalactic/clusters/helper.py')
-rw-r--r--fg21sim/extragalactic/clusters/helper.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/fg21sim/extragalactic/clusters/helper.py b/fg21sim/extragalactic/clusters/helper.py
index e43d7f4..6fd99fb 100644
--- a/fg21sim/extragalactic/clusters/helper.py
+++ b/fg21sim/extragalactic/clusters/helper.py
@@ -164,45 +164,6 @@ def kT_cluster(mass, z=0.0, radius=None):
return kT_icm
-def mass_to_kT(mass, z=0.0):
- """
- Calculate the cluster ICM temperature from its mass using the
- mass-temperature scaling relation (its inversion used here)
- derived from observations.
-
- The following M-T scaling relation from Ref.[arnaud2005],Tab.2:
- M200 * E(z) = A200 * (kT / 5 keV)^α ,
- where:
- A200 = (5.34 +/- 0.22) [1e14 Msun]
- α = (1.72 +/- 0.10)
- Its inversion:
- kT = (5 keV) * [M200 * E(z) / A200]^(1/α).
-
- NOTE: M200 (i.e., Δ=200) is used to approximate the virial mass.
-
- Parameters
- ----------
- mass : float
- Total (virial) mass of the cluster.
- Unit: [Msun]
- z : float, optional
- Redshift of the cluster
-
- Returns
- -------
- kT : float
- The ICM mean temperature.
- Unit: [keV]
- """
- # A = (5.34 + np.random.normal(scale=0.22)) * 1e14 # [Msun]
- A = 5.34 * 1e14 # [Msun]
- # alpha = 1.72 + np.random.normal(scale=0.10)
- alpha = 1.72
- Ez = COSMO.E(z)
- kT = 5.0 * (mass * Ez / A) ** (1/alpha)
- return kT
-
-
def density_number_thermal(mass, z=0.0):
"""
Calculate the number density of the ICM thermal plasma.