From 32c0e42c4b754d118cae26dad99d5844890b72d7 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Thu, 10 Jan 2019 00:26:28 +0800 Subject: clusters/halo: Change radius attribute to calc_radius() Meanwhile remove the angular_radius and volume attributes. --- fg21sim/extragalactic/clusters/halo.py | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'fg21sim/extragalactic') diff --git a/fg21sim/extragalactic/clusters/halo.py b/fg21sim/extragalactic/clusters/halo.py index 8216b2d..e340ec9 100644 --- a/fg21sim/extragalactic/clusters/halo.py +++ b/fg21sim/extragalactic/clusters/halo.py @@ -251,32 +251,13 @@ class RadioHalo: M_sub = self.mass_sub(t) return helper.radius_stripping(M_main, M_sub, z, configs=self.configs) - @property - def radius(self): + def calc_radius(self): """ The estimated radius of the simulated radio halo. Unit: [kpc] """ return self.radius_turbulence(self.age_merger) * self.f_radius - @property - def angular_radius(self): - """ - The angular radius of the radio halo. - Unit: [arcsec] - """ - DA = COSMO.DA(self.z_obs) * 1e3 # [Mpc] -> [kpc] - theta = self.radius / DA # [rad] - return theta * AUC.rad2arcsec - - @property - def volume(self): - """ - The halo volume, calculated from the above radius. - Unit: [kpc^3] - """ - return (4*np.pi/3) * self.radius**3 - @lru_cache() def kT(self, t): """ -- cgit v1.2.2