diff options
author | Aaron LI <aly@aaronly.me> | 2018-03-08 16:13:33 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-03-08 16:13:33 +0800 |
commit | 2b130c17fc2736817476ceeccec0ae3d3f0e3ae7 (patch) | |
tree | 1e38f1a9942dca77cd44e5a18e4482267bf4397e | |
parent | 067841bfcd5830ad7478c4e759c274f7a75f7a0a (diff) | |
download | fg21sim-2b130c17fc2736817476ceeccec0ae3d3f0e3ae7.tar.bz2 |
cluster/formation: update zmax default value
-rw-r--r-- | fg21sim/extragalactic/clusters/formation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fg21sim/extragalactic/clusters/formation.py b/fg21sim/extragalactic/clusters/formation.py index f8e1b27..dcee21c 100644 --- a/fg21sim/extragalactic/clusters/formation.py +++ b/fg21sim/extragalactic/clusters/formation.py @@ -44,13 +44,13 @@ class ClusterFormation: Redshift from where to simulate former merging history. zmax : float, optional The maximum redshift/age when to stop the formation trace. - Default: 3.0 (i.e., looking back time ~11.5 Gyr) + Default: 4.0 (i.e., looking back time ~12.1 Gyr) merger_mass_min : float, optional Minimum mass change to be regarded as a merger event instead of accretion. Unit: [Msun] """ - def __init__(self, M0, z0, zmax=3.0, merger_mass_min=1e12): + def __init__(self, M0, z0, zmax=4.0, merger_mass_min=1e12): self.M0 = M0 # [Msun] self.z0 = z0 self.zmax = zmax |