12 lines
358 B
Bash
12 lines
358 B
Bash
#!/bin/bash
|
|
|
|
#SBATCH -J uae_2step # Job name
|
|
#SBATCH -o job.%j.out # Name of stdout output file (%j expands to jobId)
|
|
#SBATCH -n 80 # Total number of mpi tasks requested
|
|
#SBATCH --ntasks-per-node=16
|
|
#SBATCH --mail-user=ignis@postech.ac.kr
|
|
#SBATCH --mail-type=ALL
|
|
|
|
# Launch MPI-based executable
|
|
|
|
mpirun reactingFoam -parallel
|