From 21665d0966d456613e7846a74cc381b78943fd0e Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Mon, 1 Jan 2018 13:57:22 +0800 Subject: clusters/halo: adjust radio halo size estimation --- fg21sim/extragalactic/clusters/helper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fg21sim') diff --git a/fg21sim/extragalactic/clusters/helper.py b/fg21sim/extragalactic/clusters/helper.py index f5b4f8c..29134f7 100644 --- a/fg21sim/extragalactic/clusters/helper.py +++ b/fg21sim/extragalactic/clusters/helper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Weitian LI +# Copyright (c) 2017-2018 Weitian LI # MIT license """ @@ -98,7 +98,7 @@ def radius_halo(M_main, M_sub, z=0.0, configs=CONFIGS): The halo radius is estimated to be the same as the turbulence injection scale, i.e.: R_halo ≅ L ≅ R_vir / 3 - where R_vir the virial radius of the main cluster. + where R_vir the virial radius of the merged cluster. Reference: [vazza2011],Sec.(3.6) @@ -120,7 +120,7 @@ def radius_halo(M_main, M_sub, z=0.0, configs=CONFIGS): # Turbulence injection scale factor key = "extragalactic/halos/f_lturb" f_lturb = configs.getn(key) - R_halo = f_lturb * radius_virial(mass=M_main, z=z) # [kpc] + R_halo = f_lturb * radius_virial(mass=M_main+M_sub, z=z) # [kpc] return R_halo -- cgit v1.2.2