12 lines
359 B
Bash
12 lines
359 B
Bash
#!/bin/bash
|
|
|
|
#SBATCH -J 050ch4-0.0kV # 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=20
|
|
#SBATCH --mail-user=ignis@postech.ac.kr
|
|
#SBATCH --mail-type=ALL
|
|
|
|
# Launch MPI-based executable
|
|
|
|
mpirun eReactingFoam -parallel
|