#!/bin/bash ########### SLURM CONFIGURATION ############ # Name of the job #SBATCH --job-name=hartiisu2 #SBATCH --output=slurm-%j.out #SBATCH --no-requeue # Number of nodes, number of cores per node #SBATCH --nodes=1 #SBATCH --ntasks=12 #SBATCH --ntasks-per-core=1 #SBATCH --nodelist=minion01 # Quality of service #SBATCH --qos=default-users ############################################ set -e set -u MPI_FLAGS='--bind-to core --report-bindings' SU2_CONFIG=config_hart_ii_rans.cfg mpirun -n $SLURM_NTASKS $MPI_FLAGS SU2_CFD ${SU2_CONFIG}