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