diff options
Diffstat (limited to 'fg21sim/extragalactic')
| -rw-r--r-- | fg21sim/extragalactic/clusters/main.py | 5 | ||||
| -rw-r--r-- | fg21sim/extragalactic/clusters/solver.py | 8 | 
2 files changed, 9 insertions, 4 deletions
| diff --git a/fg21sim/extragalactic/clusters/main.py b/fg21sim/extragalactic/clusters/main.py index 43c4c09..849ac57 100644 --- a/fg21sim/extragalactic/clusters/main.py +++ b/fg21sim/extragalactic/clusters/main.py @@ -241,6 +241,10 @@ class GalaxyClusters:              i += 1              if i % 50 == 0:                  logger.info("[%d/%d] %.1f%% ..." % (i, num, 100*i/num)) +            logger.info("[%d/%d] " % (i, num) + +                        "M1[%.2e] & M2[%.2e] @ z[%.3f] -> M[%.2e] @ z[%.3f]" % +                        (row.rmm_mass1, row.rmm_mass2, row.rmm_z, +                         row.mass, row.z))              halo = RadioHalo(M_obs=row.mass, z_obs=row.z,                               M_main=row.rmm_mass1, M_sub=row.rmm_mass2,                               z_merger=row.rmm_z, configs=self.configs) @@ -302,6 +306,7 @@ class GalaxyClusters:                               comment=self.catalog_comment,                               clobber=self.clobber)          # Dump the simulated clusters data +        logger.info("Dumping the simulated halos data ...")          if self.halos_dumpfile is None:              logger.warning("Missing dump outfile; skip dump cluster data!")          else: diff --git a/fg21sim/extragalactic/clusters/solver.py b/fg21sim/extragalactic/clusters/solver.py index 67bda58..fb7c52b 100644 --- a/fg21sim/extragalactic/clusters/solver.py +++ b/fg21sim/extragalactic/clusters/solver.py @@ -381,11 +381,11 @@ class FokkerPlanckSolver:          """          uc = u0          tc = tstart -        logger.info("Solving Fokker-Planck equation: " + -                    "time: %.3f - %.3f" % (tstart, tstop)) +        logger.debug("Solving Fokker-Planck equation: " + +                     "time: %.3f - %.3f" % (tstart, tstop))          nstep = int((tstop - tc) / self.tstep) -        logger.info("Constant time step: %.3f (#%d steps)" % -                    (self.tstep, nstep)) +        logger.debug("Constant time step: %.3f (#%d steps)" % +                     (self.tstep, nstep))          i = 0          while tc < tstop:              i += 1 | 
