Skip to content

Workbench

Description

ANSYS Workbench simulation software enables organizations to confidently predict how their products will operate in the real world. - Homepage: http://www.ansys.com/Products/Platform

Help

Getting started materials: http://www.ansys.com/academic/free-student-products/support-resources - For example:

Student Forum. Register here and discuss simulation with students worldwide

Access to advanced material and video - see instructions here

Access

ANSYS is open to all HPRC users when used within the terms of our ANSYS license agreement.

IMPORTANT NOTE REGARDING THE ANSYS LICENSE: (July 12, 2017)

Use of ANSYS is only permitted for users that are affiliated with Texas A&M at 

College Station.  Users meeting this criteria are permitted to use ANSYS on HPRC 

systems from anywhere in the United States (including Alaska and Hawaii).  Use 

of this software outside the designated area represents a breach of the license 

and any users caught doing so may be subject to account suspension and/or other action.

If you have particular concerns about whether specific usage falls within the TAMU HPRC license, please send an email to the HPRC Helpdesk. Usage of ANSYS is restricted by the number of available tokens. To see the number of available tokens, use the License Checker Tool.

Loading the Module

To see all versions of ANSYS available:

[ NetID@cluster ~]$ module spider ANSYS

To load a particular version of Ansys on terra (Example: ANSYS/2022R2):

[ NetID@cluster ~]$ module load ANSYS/2022R2

Known Issues

There is a known issue when using the Ansys GUI for any version of Ansys. The Geometry Editor in the Ansys Workbench will not run properly without also loading an NVIDIA module.

To bypass this bug, load the OpenGL/NVIDIA module before running the Ansys Workbench:

[ NetID@cluster ~]$ module load OpenGL/NVIDIA

Usage on the Login Nodes

Please limit interactive processing to short, non-intensive usage. Use non-interactive batch jobs for resource-intensive and/or multiple-core processing. Users are requested to be responsible and courteous to other users when using software on the login nodes. The most important processing limits here are:

  • ONE HOUR of PROCESSING TIME per login session.
  • EIGHT CORES per login session on the same node or (cumulatively) across all login nodes.

Anyone found violating the processing limits will have their processes killed without warning. Repeated violation of these limits will result in account suspension.

Note : Your login session will disconnect after one hour of inactivity.

Usage on the Computer Nodes

Non-interactive batch jobs on the compute nodes allows for resource-demanding processing. Non-interactive jobs have higher limits on the number of cores, amount of memory, and runtime length.

For instructions on how to create and submit a batch job, please see the appropriate wiki page for each respective cluster:

Grace Example

Example 1: A serial (single core) TurboGrid Job example: (Last updated October 2024)

#!/bin/bash

##NECESSARY JOB SPECIFICATIONS
#SBATCH --job-name=WorkbenchJob # Sets the job name to WorkbenchJob
#SBATCH --time=5:00:00          # Sets the runtime limit to 5 hr
#SBATCH --ntasks=1              # Requests 1 core
#SBATCH --ntasks-per-node=1     # Requests 1 core per node (1 node)
#SBATCH --mem=5G                # Requests 5GB of memory per node
#SBATCH --output=stdout1.o%J    # Sends stdout and stderr to stdout1.o[jobID]

## Load the necessary modules
module purge
module load ANSYS/2023R2

## Launch the solver with proper parameters
runwb2 -R fileName.wbjn -B

To submit the batch job, run: (where jobscript is a file that looks like one of the above examples)

[ NetID@cluster ~]$ sbatch jobscript

Running the ANSYS Workbench GUI

While in a VNC job, use runwb2 (with vglrun) to start the ANSYS GUI:

[NetID@gpu ~]$ vglrun runwb2

Compiling UDF's using the GUI

In order to compile ANSYS Fluent UDFs (User Defined Functions) you can use the ANSYS Workbench GUI. To begin, connect to our clusters using a shell with X-11 forwarding enabled or open a VNC job.

Then, enter the directory containing your case, data, and UDF source files, and run these commands:

$ ml ANSYS/2022R2
$ ml OpenGL/NVIDIA
$ ml icc/2019.1.144-GCC-8.2.0-2.31.1
$ runwb2

This will open the workbench GUI and load the environment necessary to compile UDFs. Here is a basic compilation tutorial.

ANSYS Workbench GUI Quick Start Guide

For moderately detailed instructions on launching the ANSYS Workbench GUI for the first time, please see the ANSYS Workbench Quick Start Guide.

Back to top