mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 08:58:01 +00:00
Preparing RAMSES for SPH. (#100)
* Remove unused import * Draft of preparing for SPH * Edit script
This commit is contained in:
parent
b8863a903e
commit
279022d036
3 changed files with 59 additions and 9 deletions
|
@ -17,7 +17,7 @@ Script to construct the density and velocity fields for a simulation snapshot.
|
||||||
The SPH filter is implemented in the cosmotool package.
|
The SPH filter is implemented in the cosmotool package.
|
||||||
"""
|
"""
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
from os import environ, remove
|
from os import remove
|
||||||
from os.path import join, exists
|
from os.path import join, exists
|
||||||
import subprocess
|
import subprocess
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
|
@ -192,6 +192,8 @@ class CSiBORG1Reader:
|
||||||
f"fof_{str(self.nsnap).zfill(5)}.hdf5")
|
f"fof_{str(self.nsnap).zfill(5)}.hdf5")
|
||||||
self.halomaker_dir = join(self.output_dir, "FOF")
|
self.halomaker_dir = join(self.output_dir, "FOF")
|
||||||
|
|
||||||
|
self.sph_file = f"/mnt/extraspace/rstiskalek/csiborg1/sph_temp/chain_{self.nsim}.hdf5" # noqa
|
||||||
|
|
||||||
def read_info(self):
|
def read_info(self):
|
||||||
filename = glob(join(self.source_dir, "info_*"))
|
filename = glob(join(self.source_dir, "info_*"))
|
||||||
if len(filename) > 1:
|
if len(filename) > 1:
|
||||||
|
@ -692,6 +694,11 @@ def process_final_snapshot(nsim, simname):
|
||||||
f.create_dataset(key, data=x)
|
f.create_dataset(key, data=x)
|
||||||
|
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Sort the initial snapshot like the final snapshot #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
|
||||||
def process_initial_snapshot(nsim, simname):
|
def process_initial_snapshot(nsim, simname):
|
||||||
"""
|
"""
|
||||||
Sort the initial snapshot particles according to their final snapshot and
|
Sort the initial snapshot particles according to their final snapshot and
|
||||||
|
@ -771,7 +778,7 @@ def process_initial_snapshot_csiborg2(nsim, simname):
|
||||||
print(f"Simulation index: {nsim}")
|
print(f"Simulation index: {nsim}")
|
||||||
print(f"Simulation name: {simname}")
|
print(f"Simulation name: {simname}")
|
||||||
print(f"Output snapshot: {reader_initial.output_snap}")
|
print(f"Output snapshot: {reader_initial.output_snap}")
|
||||||
print("-----------------------------------------------")
|
print("-------------------------------------------------")
|
||||||
print(flush=True)
|
print(flush=True)
|
||||||
|
|
||||||
print(f"{now()}: loading and sorting the initial PID.")
|
print(f"{now()}: loading and sorting the initial PID.")
|
||||||
|
@ -827,7 +834,40 @@ def process_initial_snapshot_csiborg2(nsim, simname):
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Process the initial snapshot and sort it like the final snapshot #
|
# Prepare CSiBORG1 RAMSES for SPH density field #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
|
||||||
|
def prepare_csiborg1_for_sph(nsim):
|
||||||
|
"""
|
||||||
|
Prepare a RAMSES snapshot for cosmotool SPH density & velocity field
|
||||||
|
calculation.
|
||||||
|
"""
|
||||||
|
reader = CSiBORG1Reader(nsim, "final")
|
||||||
|
|
||||||
|
print("------- Preparing CSiBORG1 for SPH -------")
|
||||||
|
print(f"Simulation index: {nsim}")
|
||||||
|
print(f"Output file: {reader.sph_file}")
|
||||||
|
print("-------------------------------------------------")
|
||||||
|
print(flush=True)
|
||||||
|
|
||||||
|
with File(reader.sph_file, 'w') as dest:
|
||||||
|
# We need to read pos first to get the dataset size
|
||||||
|
pos = reader.read_snapshot("pos")
|
||||||
|
|
||||||
|
dset = dest.create_dataset("particles", (len(pos), 7),
|
||||||
|
dtype=numpy.float32)
|
||||||
|
dset[:, :3] = pos
|
||||||
|
|
||||||
|
del pos
|
||||||
|
collect()
|
||||||
|
|
||||||
|
dset[:, 3:6] = reader.read_snapshot("vel")
|
||||||
|
dset[:, 6] = reader.read_snapshot("mass")
|
||||||
|
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Command line interface #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
|
||||||
|
@ -839,17 +879,23 @@ if __name__ == "__main__":
|
||||||
choices=["csiborg1", "quijote", "csiborg2_main",
|
choices=["csiborg1", "quijote", "csiborg2_main",
|
||||||
"csiborg2_random", "csiborg2_varysmall"],
|
"csiborg2_random", "csiborg2_varysmall"],
|
||||||
help="Simulation name.")
|
help="Simulation name.")
|
||||||
parser.add_argument("--mode", type=int, required=True, choices=[0, 1, 2],
|
parser.add_argument("--mode", type=int, required=True,
|
||||||
help="0: process final snapshot, 1: process initial snapshot, 2: process both.") # noqa
|
choices=[0, 1, 2, 3],
|
||||||
|
help="0: process final snapshot, 1: process initial snapshot, 2: process both, 3: prepare CSiBORG1 for SPH.") # noqa
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
if "csiborg2" in args.simname and args.mode in [0, 2]:
|
if "csiborg2" in args.simname and args.mode in [0, 2]:
|
||||||
raise RuntimeError("Processing the final snapshot for CSiBORG2 is not supported.") # noqa
|
raise RuntimeError("Processing the final snapshot for CSiBORG2 is not supported.") # noqa
|
||||||
|
|
||||||
|
if args.simname != "csiborg1" and args.mode == 3:
|
||||||
|
raise RuntimeError("Preparing for SPH is only supported for CSiBORG1.")
|
||||||
|
|
||||||
if args.mode == 0:
|
if args.mode == 0:
|
||||||
process_final_snapshot(args.nsim, args.simname)
|
process_final_snapshot(args.nsim, args.simname)
|
||||||
elif args.mode == 1:
|
elif args.mode == 1:
|
||||||
process_initial_snapshot(args.nsim, args.simname)
|
process_initial_snapshot(args.nsim, args.simname)
|
||||||
else:
|
elif args.mode == 2:
|
||||||
process_final_snapshot(args.nsim, args.simname)
|
process_final_snapshot(args.nsim, args.simname)
|
||||||
process_initial_snapshot(args.nsim, args.simname)
|
process_initial_snapshot(args.nsim, args.simname)
|
||||||
|
else:
|
||||||
|
prepare_csiborg1_for_sph(args.nsim)
|
||||||
|
|
|
@ -15,9 +15,13 @@
|
||||||
from os import system
|
from os import system
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
chains = [15517]
|
# chains = [15517]
|
||||||
simname = "csiborg2_main"
|
# simname = "csiborg2_main"
|
||||||
mode = 1
|
# mode = 1
|
||||||
|
|
||||||
|
chains = [7444 + n * 24 for n in range(1, 101)]
|
||||||
|
simname = "csiborg1"
|
||||||
|
mode = 3
|
||||||
|
|
||||||
env = "/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
env = "/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
||||||
memory = 64
|
memory = 64
|
||||||
|
|
Loading…
Reference in a new issue