#!/bin/bash
#execute with 'sbatch job_submit.sh'. Useful is: squeue --start  sinfo_t_idle  scontrol show job  scancel <job_id> 

#SBATCH --partition dev_cpuonly 
#SBATCH --nodes=1
#SBATCH --ntasks=76
#SBATCH --time=01:00:00
#SBATCH --job-name=openfoam_testjob 

module purge
module load cae/openfoam/v2006 
source $FOAM_INIT

mpirun -n 76 pimpleFoam -parallel 

