Skip to main content

ansys

Versions and Availability

h4

h5
Module Names for ansys on smic
Machine Version Module Name
smic 18.1 ansys/18.1
smic 2021r1 ansys/2021r1

▶ Module FAQ?

▶ Did not find the version you want to use??

About the Software

Description Path: key[@id="ansys"]/whatis Not Found!

Usage

Set up your environment to run ANSYS Fluent

To run ANSYS Fluent, you need to set up your environment properly, which entails two steps:

  1. Add the corresponding softenv key to your .soft file and resoft: you can use the "softenv -k ansys" command to find out what the key is;
  2. Set the license preference: this can be down by running the anslic_admin command and then select "Set license preferences for User xxx" -> "version number xx.x" -> "Use Academic Licenses" in the pop-up window.

Sample script

 #!/bin/bash
 #PBS -A your_allocation
 #PBS -q checkpt
 #PBS -l nodes=1:ppn=16
 #PBS -l walltime=12:00:00
 #PBS -V
 #PBS -j oe
 #PBS -N fluent_test

    fluent -v3ddp -g -t16 << EOFluentInput > output.dat
     file/read-case Innerwall.cas
     parallel/partition/auto/use-case-file-method yes
     parallel/partition/print
     solve/initialize/initialize-flow
     solve/iterate 50
     file/write-data Innerwall_2.dat
     file/auto-save/data-10
     file/auto-save/overwrite-existing-files
     file/confirm-overwrite y
     exit
     yes
     EOFluentInput

The script is then submitted using qsub:

$ qsub job_script

where job_script is the name you gave the script file.

For a list of available command line options, use

$ fluent -help

▶ QSub FAQ?

Resources

ANSYS user documentation can only be accessed via the password protected customer portal. If you have an account, you can access it here.

ANSYS is adding support for accelerators, such as GPU's. A white paper is available which shows the performance gains possible.

Last modified: September 10 2020 11:58:50.