Difference between revisions of "ANSYS"
From Montana Tech High Performance Computing
(→Running ANSYS Desktop GUI) |
|||
Line 1: | Line 1: | ||
==Running ANSYS Desktop GUI== | ==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. | 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 | + | 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 | + | To start FLUENT GUI, you can use : <code>fluent</code> instead of : <code>runwb2</code> above |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Submitting batch jobs through Moab== | ==Submitting batch jobs through Moab== |
Revision as of 16:50, 27 August 2020
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)
- Create a job script for using 4 processors (cores) - put the following in a file called fluentjob.sh
-
#!/bin/sh
PBS -l nodes=1:ppn=4
#PBS -j oe
#PBS -N Fluent_test
#PBS -S /bin/bash
#PBS -l walltime=02:00:00
module load ansys
fluent ### OPTIONS? INPUT FILES?
-
- Submit to Moab
-
msub fluentjob.sh
-
- Check status with showq or qstat.