validate P3M timestep convergence for baseline linear-in-scale-factor steps

This commit is contained in:
Tristan Hoellinger 2025-05-25 18:36:50 +02:00
parent 13e6c3b32d
commit a38f1b2585
7 changed files with 89782 additions and 1889 deletions

View file

@ -0,0 +1,24 @@
#!/bin/bash
#SBATCH --job-name=cappel_L1024_Np512
#SBATCH -o /data70/hoellinger/WIP3M/cappel_L1024_Np512/plots.log
#SBATCH --exclusive
#SBATCH -N 1 # Number of nodes (value or min-max)
#SBATCH -n 128 # The number of tasks (i.e. cores) per node
#SBATCH --time=2:00:00
##SBATCH --exclusive
##SBATCH --mem=64G # Memory pool for all cores (see also --mem-per-cpu)
##SBATCH --array=0-10 # Size of the array
##SBATCH --constraint=i1 # Constraint e.g. specific node
conda activate p3m
export OMP_NUM_THREADS=64
python $WIP3M_ROOT_PATH"src/wip3m/plots_convergence_baseline_ts_parser.py" \
--run_id cappel_L1024_Np512 \
--outdir_suffix plots \
--lpt True \
--cola False
exit 0