Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
#!/bin/bash

#PBS -l ncpus=96
#PBS -l mem=140GB
#PBS -l jobfs=100GB
#PBS -l walltime=10:00:00
#PBS -l software=OpenFOAM
#PBS -l wd
 
# Load module, always specify version number.
module load OpenFOAM/8

# Must include `#PBS -l storage=scratch/ab12+gdata/yz98` if the job
# needs access to `/scratch/ab12/` and `/g/data/yz98/`. Details on
# https://opus.nci.org.au/display/Help/PBS+Directives+Explained.

mpirun <foamExec> <otherArgs> -parallel > output.log

...