mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 17:38:02 +00:00
e972f8e3f2
* Simplify box units * Move old scripts * Add printing * Update readers * Disable boundscheck * Add new ordering * Clean up imports * Enforce dtype and add mass to quijote * Simplify print statements * Fix little typos * Fix key bug * Bug fixing * Delete boring comments * Improve ultimate clumps for PHEW * Delete boring comments * Add basic reading * Remove 0th index HID * Add flipping of X and Z * Updates to halo catalogues * Add ordered caching * Fix flipping * Add new flags * Fix PHEW empty clumps * Stop over-wrriting * Little improvements to angular neighbours * Add catalogue masking * Change if-else statements * Cache only filtered data * Add PHEW cats * Add comments * Sort imports * Get Quijote workign * Docs * Add HMF calculation * Move to old * Fix angular * Add great circle distance * Update imports * Update impotrts * Update docs * Remove unused import * Fix a quick bug * Update compatibility * Rename files * Renaming * Improve compatiblity * Rename snapsht * Fix snapshot bug * Update interface * Finish updating interface * Update all paths * Add old scripts * Add basic halo * Update imports * Improve snapshot processing * Update ordering * Fix how CM positions accessed * Add merger paths * Add imports * Add merger reading * Add making a merger tree * Add a basic merger tree reader * Add imports * Add main branch walking + comments + debuggin * Get tree running * Add working merger tree walking along main branch * Add units conversion for merger data * Add hid_to_array_index * Update merger tree * Add mergertree mass to PHEWcat * Edit comments * Add this to track changes... * Fix a little bug * Add mergertree mass * Add cache clearing * Improve summing substructure code * Littbe bug * Little updates to the merger tree reader * Update .giignore * Add box selection * Add optional deletingf of a group * add to keep track of changes * Update changes * Remove * Add manual tracker * Fix bug * Add m200c_to_r200c * Add manual halo tracking * Remove skipped snapshots * update cosmo params to match csiborg * remove old comments * Add SDSSxALFALFA * Fix bugs * Rename * Edit paths * Updates * Add comments * Add comment * Add hour conversion * Add imports * Add new observation class * Add selection * Add imports * Fix small bug * Add field copying for safety * Add matching to survey without masking * Add P(k) calculation * Add nb * Edit comment * Move files * Remove merger import * Edit setup.yp * Fix typo * Edit import warnigns * update nb * Update README * Update README * Update README * Add skeleton * Add skeleton
116 lines
4.1 KiB
Python
116 lines
4.1 KiB
Python
# Copyright (C) 2023 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.
|
|
"""Convert the HDF5 CSiBORG particle file to an ASCII file."""
|
|
from argparse import ArgumentParser
|
|
|
|
import h5py
|
|
import numpy
|
|
from mpi4py import MPI
|
|
from taskmaster import work_delegation
|
|
from tqdm import trange
|
|
|
|
import csiborgtools
|
|
from utils import get_nsims
|
|
|
|
|
|
def positions_to_ascii(positions, output_filename, boxsize=None,
|
|
chunk_size=50_000, verbose=True):
|
|
"""
|
|
Convert array of positions to an ASCII file. If `boxsize` is given,
|
|
multiples the positions by it.
|
|
"""
|
|
total_size = len(positions)
|
|
|
|
if verbose:
|
|
print(f"Number of rows to write: {total_size}")
|
|
|
|
with open(output_filename, 'w') as out_file:
|
|
# Write the header
|
|
out_file.write("#px py pz\n")
|
|
|
|
# Loop through data in chunks
|
|
for i in trange(0, total_size, chunk_size,
|
|
desc=f"Writing to ... `{output_filename}`",
|
|
disable=not verbose):
|
|
|
|
end = i + chunk_size
|
|
if end > total_size:
|
|
end = total_size
|
|
|
|
data_chunk = positions[i:end]
|
|
# Convert to positions Mpc / h
|
|
data_chunk = data_chunk[:, :3]
|
|
|
|
if boxsize is not None:
|
|
data_chunk *= boxsize
|
|
|
|
chunk_str = "\n".join([f"{x:.4f} {y:.4f} {z:.4f}"
|
|
for x, y, z in data_chunk])
|
|
out_file.write(chunk_str + "\n")
|
|
|
|
|
|
def extract_positions(nsim, simname, paths, kind):
|
|
"""
|
|
Extract either the particle or halo positions.
|
|
"""
|
|
if kind == "particles":
|
|
fname = paths.processed_output(nsim, simname, "FOF")
|
|
return h5py.File(fname, 'r')["snapshot_final/pos"][:]
|
|
|
|
if kind == "particles_rsp":
|
|
raise NotImplementedError("RSP of particles is not implemented yet.")
|
|
|
|
fpath = paths.observer_peculiar_velocity("PCS", 512, nsim)
|
|
vpec_observer = numpy.load(fpath)["observer_vp"][0, :]
|
|
cat = csiborgtools.read.CSiBORGHaloCatalogue(
|
|
nsim, paths, "halo_catalogue", "FOF", bounds={"dist": (0, 155.5)},
|
|
observer_velocity=vpec_observer)
|
|
|
|
if kind == "halos":
|
|
return cat["cartesian_pos"]
|
|
|
|
if kind == "halos_rsp":
|
|
return cat["cartesian_redshift_pos"]
|
|
|
|
raise ValueError(f"Unknown kind `{kind}`. Allowed values are: "
|
|
"`particles`, `particles_rsp`, `halos`, `halos_rsp`.")
|
|
|
|
|
|
def main(args, paths):
|
|
boxsize = 677.7 if "particles" in args.kind else None
|
|
pos = extract_positions(args.nsim, args.simname, paths, args.kind)
|
|
output_filename = paths.ascii_positions(args.nsim, args.kind)
|
|
positions_to_ascii(pos, output_filename, boxsize=boxsize)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = ArgumentParser()
|
|
parser.add_argument("--kind", type=str, required=True,
|
|
choices=["particles", "particles_rsp", "halos", "halos_rsp"], # noqa
|
|
help="Kind of data to extract.")
|
|
parser.add_argument("--nsims", type=int, nargs="+", default=None,
|
|
help="IC realisations. If `-1` processes all.")
|
|
parser.add_argument("--simname", type=str, default="csiborg",
|
|
choices=["csiborg"],
|
|
help="Simulation name")
|
|
args = parser.parse_args()
|
|
|
|
paths = csiborgtools.read.Paths(**csiborgtools.paths_glamdring)
|
|
nsims = get_nsims(args, paths)
|
|
|
|
def _main(nsim):
|
|
main(nsim, paths, args.kind)
|
|
|
|
work_delegation(_main, nsims, MPI.COMM_WORLD)
|