Actions

Difference between revisions of "ANSYS"

From Montana Tech High Performance Computing

(Sample Script (UNDER DEVELOPMENT))
(Running ANSYS Desktop GUI)
Line 2: Line 2:
 
The ANSYS desktop gui can be run on the management node, but long simulations should be executed on the compute nodes.  
 
The ANSYS desktop gui can be run on the management node, but long simulations should be executed on the compute nodes.  
 
To start ANSYS workbench GUI on HPC or Copper Server
 
To start ANSYS workbench GUI on HPC or Copper Server
: <code style=display:block>module load ansys<br>runwb2</code>
+
: <code style=display:block>module load ANSYS<br>runwb2</code>
 
To start FLUENT GUI, you can use : <code>fluent</code> instead of : <code>runwb2</code> above
 
To start FLUENT GUI, you can use : <code>fluent</code> instead of : <code>runwb2</code> above
  

Revision as of 13:08, 21 July 2021

Running ANSYS Desktop GUI

The ANSYS desktop gui can be run on the management node, but long simulations should be executed on the compute nodes. To start ANSYS workbench GUI on HPC or Copper Server

module load ANSYS
runwb2

To start FLUENT GUI, you can use : fluent instead of : runwb2 above

Submitting batch jobs through Moab

To avoid overloading the management node, ANSYS Fluent should be used in batch mode and jobs should be submitted to the compute nodes through torque.

Sample Script (UNDER DEVELOPMENT)

  1. Create a job script for using 4 processors (cores) - put the following in a file called fluentjob.sh
    #!/bin/sh
    #SBATCH -J JOB_NAME #Name of the computation
    #SBATCH -N 1 # Total number of nodes requested
    #SBATCH -n 4 # Total number of tasks per node requested
    #SBATCH -t 01:00:00 # Total run time requested - 1 hour
    #SBATCH -p normal # compute nodes partition requested

    module load ANSYS
    fluent ### OPTIONS? INPUT FILES?
  2. Submit to Moab
    sbatch fluentjob.sh
  3. Check status with squeue command