Fluent
To run Fluent in parallel on the CAC clusters, first type:
module load fluent
A sample PBS script that shows a 4-CPU Fluent job looks like this:
#PBS -N fluent
#PBS -q route
#PBS -l nodes=2:ppn=2,walltime=24:00:00
#PBS -M your-email-address
#PBS -m abe
#PBS -V
#
echo "I ran on:"
cat $PBS_NODEFILE
#
#cd to your execution directory first
cd /home/your-user-name/your-fluent-directory
#
fluent 3d -ssh -g -i inp -t4 -cnf=$PBS_NODEFILE
#
