12 lines
359 B
Bash
12 lines
359 B
Bash
#!/bin/bash
|
|
|
|
#SBATCH -J iCoflow # Job name
|
|
#SBATCH -o log.%j.out # Name of stdout output file (%j expands to jobId)
|
|
#SBATCH -n 240 # Total number of mpi tasks requested
|
|
#SBATCH --ntasks-per-node=24
|
|
#SBATCH --mail-user=ignis@postech.ac.kr
|
|
#SBATCH --mail-type=ALL
|
|
|
|
# Launch MPI-based executable
|
|
|
|
prun laminarReactingFoam -parallel
|