Difference between revisions of "Ansys"

From oldwiki.scinet.utoronto.ca
Jump to navigation Jump to search
(Created page with "The [http://www.ansys.com/ Ansys] engineering simulation tools are installed on SciNet. ==Getting a license== Licenses are provided by [http://www.cmc.ca/ CMC Microsystems]....")
 
m
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
{| style="border-spacing: 8px; width:100%"
 +
| valign="top" style="cellpadding:1em; padding:1em; border:2px solid; background-color:#f6f674; border-radius:5px"|
 +
'''WARNING: SciNet is in the process of replacing this wiki with a new documentation site. For current information, please go to [https://docs.scinet.utoronto.ca https://docs.scinet.utoronto.ca]'''
 +
|}
 +
 
The [http://www.ansys.com/ Ansys] engineering simulation tools are installed on SciNet.
 
The [http://www.ansys.com/ Ansys] engineering simulation tools are installed on SciNet.
  
==Getting a license==
+
=Getting a license=
  
 
Licenses are provided by [http://www.cmc.ca/ CMC Microsystems]. Canadian students and faculty
 
Licenses are provided by [http://www.cmc.ca/ CMC Microsystems]. Canadian students and faculty
 
can register at https://www.cmc.ca/en/MyAccount/GetAccount.aspx
 
can register at https://www.cmc.ca/en/MyAccount/GetAccount.aspx
  
==Ansys 18.1==
+
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
 
  module load ANSYS/18.1
Line 16: Line 24:
 
* mapdl
 
* mapdl
 
* ...
 
* ...
 +
 +
==Running Fluent==
 +
 +
Example submission script for a job running on 4 nodes, with max walltime of 24 hours:
 +
 +
<source lang="bash">
 +
#!/bin/bash
 +
#PBS -l nodes=4:ppn=8,walltime=24:00:00
 +
 +
module load ANSYS/18.1 extras
 +
 +
# 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>

Latest revision as of 19:27, 31 August 2018

WARNING: SciNet is in the process of replacing this wiki with a new documentation site. For current information, please go to https://docs.scinet.utoronto.ca

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 submission script for a job 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 extras

  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>