#!/bin/csh


## The Script
## Change into the current working directory
#$ -cwd
##
## The name for the job. It will be displayed this way on qstat
#$ -N rotaryDrum
##
## Number of cores to request
#$ -pe mpi 16
##
## Queue Name
#$ -q general
##
## Capture stdout and stderr
#$ -o rotaryDrum.output
#$ -e rotaryDrum.error

##Load Modules
module load mfix/17.1

##Run the job
env OMP_NUM_THREADS=16 /.nfs/home/8/REMS/commonAccess/rotaryDrum/fstHDEx/mfixsolver -f /.nfs/home/8/REMS/commonAccess/rotaryDrum/fstHDEx/fourD_000248/rotaryDrum.mfx
