2022-10-30 20:16:56 +00:00
|
|
|
# Copyright (C) 2022 Richard Stiskalek
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by the
|
|
|
|
# Free Software Foundation; either version 3 of the License, or (at your
|
|
|
|
# option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
# Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
"""
|
|
|
|
A script to fit halos (concentration, ...). The particle array of each CSiBORG
|
|
|
|
realisation must have been split in advance by `run_split_halos`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import numpy
|
2022-11-05 21:17:05 +00:00
|
|
|
from datetime import datetime
|
2022-10-30 20:16:56 +00:00
|
|
|
from os.path import join
|
|
|
|
from mpi4py import MPI
|
|
|
|
try:
|
|
|
|
import csiborgtools
|
|
|
|
except ModuleNotFoundError:
|
|
|
|
import sys
|
|
|
|
sys.path.append("../")
|
|
|
|
import csiborgtools
|
|
|
|
import utils
|
|
|
|
|
|
|
|
F64 = numpy.float64
|
|
|
|
I64 = numpy.int64
|
|
|
|
|
|
|
|
# Simulations and their snapshot to analyze
|
|
|
|
Nsims = [9844]
|
|
|
|
Nsnap = 1016
|
|
|
|
|
|
|
|
# Get MPI things
|
|
|
|
comm = MPI.COMM_WORLD
|
|
|
|
rank = comm.Get_rank()
|
|
|
|
nproc = comm.Get_size()
|
|
|
|
|
|
|
|
|
|
|
|
dumpdir = utils.dumpdir
|
|
|
|
loaddir = join(utils.dumpdir, "temp")
|
2022-11-05 21:17:05 +00:00
|
|
|
cols_collect = [("npart", I64), ("totpartmass", F64), ("Rs", F64),
|
2022-11-20 14:11:19 +00:00
|
|
|
("vx", F64), ("vy", F64), ("vz", F64),
|
2022-11-05 21:17:05 +00:00
|
|
|
("rho0", F64), ("conc", F64), ("rmin", F64),
|
|
|
|
("rmax", F64), ("r200", F64), ("r500", F64),
|
|
|
|
("m200", F64), ("m500", F64)]
|
2022-11-01 10:10:54 +00:00
|
|
|
|
2022-10-30 20:16:56 +00:00
|
|
|
# NOTE later loop over sims too
|
|
|
|
Nsim = Nsims[0]
|
2022-11-05 21:17:05 +00:00
|
|
|
simpath = csiborgtools.io.get_sim_path(Nsim)
|
|
|
|
box = csiborgtools.units.BoxUnits(Nsnap, simpath)
|
2022-10-30 20:16:56 +00:00
|
|
|
|
|
|
|
jobs = csiborgtools.fits.split_jobs(utils.Nsplits, nproc)[rank]
|
2022-11-05 21:17:05 +00:00
|
|
|
for icount, Nsplit in enumerate(jobs):
|
|
|
|
print("{}: rank {} working {} / {} jobs.".format(datetime.now(), rank,
|
|
|
|
icount + 1, len(jobs)))
|
2022-10-30 20:16:56 +00:00
|
|
|
parts, part_clumps, clumps = csiborgtools.fits.load_split_particles(
|
|
|
|
Nsplit, loaddir, Nsim, Nsnap, remove_split=False)
|
|
|
|
|
|
|
|
N = clumps.size
|
|
|
|
cols = [("index", I64), ("npart", I64), ("totpartmass", F64),
|
2022-11-05 21:17:05 +00:00
|
|
|
("Rs", F64), ("rho0", F64), ("conc", F64),
|
2022-11-20 14:11:19 +00:00
|
|
|
("vx", F64), ("vy", F64), ("vz", F64),
|
2022-11-05 21:17:05 +00:00
|
|
|
("rmin", F64), ("rmax", F64),
|
|
|
|
("r200", F64), ("r500", F64), ("m200", F64), ("m500", F64)]
|
2022-10-30 20:16:56 +00:00
|
|
|
out = csiborgtools.utils.cols_to_structured(N, cols)
|
|
|
|
out["index"] = clumps["index"]
|
|
|
|
|
|
|
|
for n in range(N):
|
|
|
|
# Pick clump and its particles
|
|
|
|
xs = csiborgtools.fits.pick_single_clump(n, parts, part_clumps, clumps)
|
2022-11-05 21:17:05 +00:00
|
|
|
clump = csiborgtools.fits.Clump.from_arrays(*xs, rhoc=box.box_rhoc)
|
2022-10-30 20:16:56 +00:00
|
|
|
out["npart"][n] = clump.Npart
|
2022-11-01 10:10:54 +00:00
|
|
|
out["rmin"][n] = clump.rmin
|
|
|
|
out["rmax"][n] = clump.rmax
|
2022-10-30 20:16:56 +00:00
|
|
|
out["totpartmass"][n] = clump.total_particle_mass
|
2022-11-20 14:11:19 +00:00
|
|
|
out["vx"] = numpy.average(clump.vel[:, 0], weights=clump.m)
|
|
|
|
out["vy"] = numpy.average(clump.vel[:, 1], weights=clump.m)
|
|
|
|
out["vz"] = numpy.average(clump.vel[:, 2], weights=clump.m)
|
2022-11-05 21:17:05 +00:00
|
|
|
|
|
|
|
# Spherical overdensity radii and masses
|
|
|
|
rs, ms = clump.spherical_overdensity_mass([200, 500])
|
|
|
|
out["r200"][n] = rs[0]
|
|
|
|
out["r500"][n] = rs[1]
|
|
|
|
out["m200"][n] = ms[0]
|
|
|
|
out["m500"][n] = ms[1]
|
2022-10-30 20:16:56 +00:00
|
|
|
|
|
|
|
# NFW profile fit
|
2022-11-01 10:10:54 +00:00
|
|
|
if clump.Npart > 10 and numpy.isfinite(out["r200"][n]):
|
2022-10-30 20:16:56 +00:00
|
|
|
nfwpost = csiborgtools.fits.NFWPosterior(clump)
|
2022-11-05 21:17:05 +00:00
|
|
|
logRs, __ = nfwpost.maxpost_logRs()
|
|
|
|
Rs = 10**logRs
|
2022-11-01 10:10:54 +00:00
|
|
|
if not numpy.isnan(logRs):
|
2022-11-05 21:17:05 +00:00
|
|
|
out["Rs"][n] = Rs
|
|
|
|
out["rho0"][n] = nfwpost.rho0_from_Rs(Rs)
|
|
|
|
out["conc"][n] = out["r200"][n] / Rs
|
2022-10-30 20:16:56 +00:00
|
|
|
|
|
|
|
csiborgtools.io.dump_split(out, Nsplit, Nsim, Nsnap, dumpdir)
|
|
|
|
|
|
|
|
# Force all ranks to wait
|
|
|
|
comm.Barrier()
|
|
|
|
# Use the rank 0 to combine outputs for this CSiBORG realisation
|
|
|
|
if rank == 0:
|
|
|
|
print("Collecting results!")
|
|
|
|
out_collected = csiborgtools.io.combine_splits(
|
|
|
|
utils.Nsplits, Nsim, Nsnap, utils.dumpdir, cols_collect,
|
|
|
|
remove_splits=True, verbose=False)
|
|
|
|
fname = join(utils.dumpdir, "ramses_out_{}_{}.npy"
|
|
|
|
.format(str(Nsim).zfill(5), str(Nsnap).zfill(5)))
|
|
|
|
print("Saving results to `{}`.".format(fname))
|
|
|
|
numpy.save(fname, out_collected)
|
|
|
|
print("All finished! See ya!")
|