mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 21:18:04 +00:00
aaa14fc880
* Add RAMSES2HDF5 conversion * Upload changes * Clean up * More clean up * updates * Little change * pep9 * Add basic SPH calculation for a snapshot * Add submit script * Remove echo * Little changes * Send off changes * Little formatting * Little updates * Add nthreads argument * Upload chagnes * Add nthreads arguemnts * Some local changes.. * Update scripts * Add submission script * Update script * Update params * Rename CSiBORGBox to CSiBORG1box * Rename CSiBORG1 reader * Move files * Rename folder again * Add basic plotting here * Add new skeletons * Move def * Update nbs * Edit directories * Rename files * Add units to converted snapshots * Fix empty dataset bug * Delete file * Edits to submission scripts * Edit paths * Update .gitignore * Fix attrs * Update weighting * Fix RA/dec bug * Add FORNAX cluster * Little edit * Remove boxes since will no longer need * Move func back * Edit to include sort by membership * Edit paths * Purge basic things * Start removing * Bring file back * Scratch * Update the rest * Improve the entire file * Remove old things * Remove old * Delete old things * Fully updates * Rename file * Edit submit script * Little things * Add print statement * Add here cols_to_structured * Edit halo cat * Remove old import * Add comment * Update paths manager * Move file * Remove file * Add chains
40 lines
1.2 KiB
Bash
Executable file
40 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
#SBATCH --ntasks-per-node=1
|
|
#SBATCH --nodes=1
|
|
#SBATCH --cpus-per-task=16
|
|
#SBATCH --mem-per-cpu=7000
|
|
#SBATCH -J SPH
|
|
#SBATCH -o output_%J.out
|
|
#SBATCH -e error_%J.err
|
|
#SBATCH -p cosma8-serial
|
|
#SBATCH -A dp016
|
|
#SBATCH -t 04:00:00
|
|
#SBATCH --mail-type=BEGIN,END,FAIL
|
|
#SBATCH --mail-user=richard.stiskalek@physics.ox.ac.uk
|
|
|
|
|
|
module purge
|
|
module load intel_comp/2019
|
|
module load intel_mpi/2019
|
|
module load hdf5
|
|
module load fftw
|
|
module load gsl
|
|
module load cmake
|
|
module load python/3.10.12
|
|
module list
|
|
|
|
source /cosma/home/dp016/dc-stis1/csiborgtools/venv_csiborgtools/bin/activate
|
|
export OMP_NUM_THREADS=16
|
|
export OMP_NESTED=true
|
|
|
|
# ADD CHAINS HERE
|
|
snapshot_path="/cosma8/data/dp016/dc-stis1/csiborg2_main/chain_15517/output/snapshot_099_full.hdf5"
|
|
output_path="/cosma8/data/dp016/dc-stis1/csiborg2_main/field/chain_15517.hdf5"
|
|
resolution=256
|
|
scratch_space="/cosma8/data/dp016/dc-stis1/csiborg2_main/field"
|
|
SPH_executable="/cosma8/data/dp016/dc-stis1/cosmotool/bld2/sample/simple3DFilter"
|
|
snapshot_kind="gadget4"
|
|
|
|
|
|
python3 field_sph.py --snapshot_path $snapshot_path --output_path $output_path --resolution $resolution --scratch_space $scratch_space --SPH_executable $SPH_executable --snapshot_kind $snapshot_kind
|