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

Version 1 Next »

Introduction

ansys v16.1 is available to Griffith HPC users.

 

Usage

module load ansys/v161

Installation

 

Sample PBS script

#!/bin/sh 
# This is an example of PBS script file for ansys 
#PBS -S /bin/sh 
# specifies number of CPUs (ncpus) used in PBS 
###PBS -l ncpus=[no. of CPUs] 
#PBS -l ncpus=1 

# specifies number of CPUs for parallel computing 
###nCPU=[no. of CPUs] 
nCPU=1
# specifies the job name, input file and output file 
jobname=MyAnsysRun 
jobInput=/export/home/s2111111/ansysInput.txt 
jobOutput=/scratch/s2111111/ansys/ansysOUTput.txt

# specifies working directory 
work_dir=/scratch/s2111111/ansys
## sets up the anys environment
module load ansys/v161

# starts simulation 
cd $work_dir 
ansys161 -b -p aa_r -j $jobname -I $jobInput -o $jobOutput -np $nCPU

Reference

  1. https://www.cityu.edu.hk/acim/facilities/pbs_submit.htm
  • No labels