Difference between revisions of "Ansys"

From oldwiki.scinet.utoronto.ca
Jump to navigation Jump to search
Line 34: Line 34:
  
 
INPUTFILE=input.jou
 
INPUTFILE=input.jou
fluent 2ddp -t "$PBS_NP" -cnf="$PBS_NODEFILE" -mpi=intel -pib -pcheck -g -i $INPUTFILE
+
fluent 2ddp -t "$PBS_NP" -cnf="$PBS_NODEFILE" -mpi=intel -pib -pcheck -g -i "$INPUTFILE"
 
</source>
 
</source>

Revision as of 14:59, 30 May 2017

The Ansys engineering simulation tools are installed on SciNet.

Getting a license

Licenses are provided by CMC Microsystems. Canadian students and faculty can register at https://www.cmc.ca/en/MyAccount/GetAccount.aspx

Once you have an account, you have to contact CMC and tell them you want to use the Ansys tools on SciNet, and give them your SciNet username.

Ansys 18.1

module load ANSYS/18.1

Programs available:

  • fluent
  • ansysedt
  • mapdl
  • ...

Running Fluent

Example running on 4 nodes, with max walltime of 24 hours:

<source lang="bash">

  1. !/bin/bash
  2. PBS -l nodes=4:ppn=8,walltime=24:00:00

module load ANSYS/18.1

  1. DIRECTORY TO RUN - $PBS_O_WORKDIR is directory job was submitted from

cd $PBS_O_WORKDIR

INPUTFILE=input.jou fluent 2ddp -t "$PBS_NP" -cnf="$PBS_NODEFILE" -mpi=intel -pib -pcheck -g -i "$INPUTFILE" </source>