Versions Compared

Key

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

Table of Contents

Introduction


Usage



No Format
module load ansys/

...

OR

module load ansys/v202

...

2024R1
(version 241)
Old ones: module load ansys/v212 , module load ansys/v195 OR module load ansys/v202

To get a list of all versions: module avail ansys



Installation


Sample PBS script

No Format
# 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=/sw/ansys/export2022R2/homev222/s123456ansys/pbsdata/inputmodels/80x3pipecccasting.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
#Must be set to INTELMPI or OPENMPI
###ansys161 -b -p aa_r -j $jobname -I $jobInput -o $jobOutput -np 4
ansys161 -b -mpi=intelINTELMPI -p infiniband aa_r -j $jobname -I $jobInput  -np 4

...