32-core Fluent sample job script-tyrone

#!/bin/sh
#Sample mpi job script for 32-core fluent run
#PBS -N jobname
#PBS -l nodes=1:ppn=32:regular
#PBS -l walltime=24:00:00
#The localscratch directory on different execution nodes of the tyrone cluster is hosted on
#different storage servers. Hence, files required for execution need to be copied to 
#/localscratch from the user home area in the script.
cd /localscratch/${USER}
cp $HOME/<program_directory>/* .
NPROCS=`wc -l < $PBS_NODEFILE` /home/pkg/lic/ansys/13/linux/64/v130/fluent/bin/fluent -g 2ddp 
-t${NPROCS} -ssh -i /localscratch/${USER}/inputfile > /localscratch/${USER}/outputfile
mv ./* $HOME/<program_directory>