diff options
author | Aaron LI <aly@aaronly.me> | 2017-07-31 19:46:20 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-07-31 19:46:20 +0800 |
commit | a2177a266fe8232ae83b699b5e5b85c6a294136c (patch) | |
tree | 56f11d28759075d2ab7274031548b60599c381be /fg21sim/extragalactic/clusters/halo.py | |
parent | cdfae1365414e1e816de62b5b0e441df456f385b (diff) | |
download | fg21sim-a2177a266fe8232ae83b699b5e5b85c6a294136c.tar.bz2 |
clusters/halo.py: Add description for "time_crossing" property
Signed-off-by: Aaron LI <aly@aaronly.me>
Diffstat (limited to 'fg21sim/extragalactic/clusters/halo.py')
-rw-r--r-- | fg21sim/extragalactic/clusters/halo.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fg21sim/extragalactic/clusters/halo.py b/fg21sim/extragalactic/clusters/halo.py index 9c030a5..7230a81 100644 --- a/fg21sim/extragalactic/clusters/halo.py +++ b/fg21sim/extragalactic/clusters/halo.py @@ -145,6 +145,12 @@ class RadioHalo: @property def time_crossing(self): + """ + The time duration of the sub-cluster crossing the main cluster, + which is also used to approximate the merging time, during which + the turbulence acceleration is regarded as effective. + Unit: [Gyr] + """ return helper.time_crossing(self.M_main, self.M_sub, z=self.z_merger) |