Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Introduction

module load ansys/v195

OR

module load ansys/v202

To get a list of all versions: module avail ansys

Usage

module load ansys/v195

module load ansys/v161

Installation


Sample PBS script

# This is an example of PBS script file for ansys
#PBS -N FluentTest
#PBS -m e
#PBS -M yourEmail@griffith.edu.au
# specifies number of CPUs (ncpus) used in PBS
#PBS -l select=1:ncpus=1:mem=10g,walltime=24:00:00

# specifies the job name, input file and output file
jobname=MyAnsysRun
jobInput=/export/home/s123456/pbs/input/80x3pipecc.inp
###jobOutput=/export/home/s123456/pbs/output/ansysOUTput.txt
# specifies working directory
work_dir=/export/home/s123456/pbs/workdir
## sets up the anys environment
module load ansys/v202
module load intel/intelmpi
module list
# starts simulation
cd $work_dir
###ansys161 -b -p aa_r -j $jobname -I $jobInput -o $jobOutput -np 4
ansys161 -b -mpi=intel -p infiniband aa_r -j $jobname -I $jobInput  -np 4

Special Notes

We recommend using infiniband for interconnect and intel mpi. You may use the following options in the pbs script
module load intel/intelmpi
-p infiniband
-mpi=intel


Reference

  1. https://www.cityu.edu.hk/acim/facilities/pbs_submit.htm
  2. https://www.sharcnet.ca/Software/Fluent6/html/ug/node1232.htm#tab-unix-platforms
  3. https://confluence.cornell.edu/display/SIMULATION/Home
  • No labels