Versions Compared

Key

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

...

No Format
#!/bin/bash
#PBS -N floor01M1052
#PBS -m bea
#PBS -M YOUREMAILID@griffithuni.edu.au
# specifies number of CPUs (ncpus) used in PBS
#PBS -l select=1:ncpus=1816:mem=48g,walltime=300:00:00
#######################################################
# setup variables for names
#######################################################
jobnam=$PBS_JOBNAME
jobloc=/lscratch/s123456/$jobnam
inputfile="${jobnam}.in"
casefile=${jobnam%??}
casefile1="${casefile}.cas.gz"
resulttext="${jobnam}.txt"
resultcas="${jobnam}result.cas.gz"
resultdat="${jobnam}result.dat.gz"
runfile="${jobnam}.run"
#######################################################
# Check if scratch dir exists and create if not
#######################################################
jobloc=/lscratch/s123456/$jobnam
if [ ! -d "jobloc" ]; then
        mkdir $jobloc
fi
#######################################################
# load modules
#######################################################
module load ansys/v202
module load intel/intelmpi
#######################################################
# copy case file and input file to scratch
#######################################################
cp $PBS_O_WORKDIR/$inputfile $jobloc
cp $PBS_O_WORKDIR/$casefile1 $jobloc
echo copy to scratch complete
#######################################################
# run fluent
#######################################################
echo running fluent
cd $jobloc
fluent 3ddp -t16 -cflush -pinfiniband -mpi=intel -g -i $inputfile > $runfile
cd $PBS_O_WORKDIR
#######################################################
# copy result files back to working directory
#######################################################
cp -r $jobloc/* $PBS_O_WORKDIR
#######################################################
# list output
#######################################################
echo $jobnam
echo $jobloc
echo $inputfile
echo $casefile
echo $resulttext
echo $resultcas
echo $resultdat
echo $runfile
echo job finished

...