Skip to content

Commit 44c7a8d

Browse files
author
purduercac-docs-bot
committed
Merge remote-tracking branch 'origin/main' into dev
2 parents 55bed0e + 6f0c79e commit 44c7a8d

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
help([[
2+
This module file loads Ansys 2025R2 (2025.7; v252).
3+
4+
Users may experience reduced functionality, including model size restrictions,
5+
unless a research license is used. If your research group has access to a
6+
research license, you may configure your system to use it.
7+
To launch Ansys Workbench, please type
8+
9+
$ rcac-runwb2
10+
11+
This will set the project folder to be ${RCAC_SCRATCH}. Make sure your project
12+
files are copied to your scratch directory.
13+
14+
To start the CFX solver in parallel for optmized performance, please use
15+
16+
$ cfx5solve --start-method "${RCAC_ANSYS_MPI}" ...
17+
]])
18+
19+
20+
whatis("Description: This module loads the ANSYS software suite.")
21+
whatis("Keywords: ansys, fluent, aisol, autodyn, cfx, icemcfd, polyflow")
22+
23+
-- for Tcl script use only
24+
25+
-- depends_on("libxslt/1.1.33","libxp/1.0.3","mesa-glu/9.0.2","motif/2.3.8")
26+
27+
local version = "2025R2"
28+
local app = "ansys"
29+
local contact = "rcac-help"
30+
local license_type = "proprietary"
31+
local ansysdir = "/apps/external/ansys/2025r2/ansys_inc"
32+
local modroot = ansysdir.."/v252"
33+
local licensing = ansysdir.."/shared_files/licensing"
34+
local arch = "linux64_amd"
35+
local icemdir = modroot.."/icemcfd/"..arch
36+
37+
set_shell_function("rcac-runwb2", "runwb2 \"$@\"", "runwb2 $*")
38+
39+
setenv("ANSYS252_DIR",modroot.."/ansys")
40+
setenv("ICEM_ACN",icemdir)
41+
prepend_path("PATH",licensing.."/lic_admin")
42+
prepend_path("PATH",modroot.."/Framework/bin/Linux64")
43+
prepend_path("PATH",icemdir.."/icemcfd/output-interfaces")
44+
prepend_path("PATH",icemdir.."/bin")
45+
prepend_path("PATH",modroot.."/CFX/bin")
46+
prepend_path("PATH",modroot.."/fluent/bin")
47+
prepend_path("PATH",modroot.."/ansys/bin")
48+
prepend_path("LD_LIBRARY_PATH",icemdir.."/lib")
49+
prepend_path("LD_LIBRARY_PATH",modroot.."/aisol/lib/linx64")
50+
prepend_path("LD_LIBRARY_PATH",modroot.."/Framework/bin/Linux64/Mesa")
51+
setenv("FLUENT_ARCH","lnamd64")
52+
setenv("FLUENT_HELP_BROWSER","firefox")
53+
setenv("LANG","en_US.UTF-8")
54+
setenv("HOOPS_PICTURE","opengl")
55+
setenv("ANSYSLMD_LICENSE_FILE","1726@marina.ecn.purdue.edu")
56+
setenv("ANSYSLI_SERVERS","2325@marina.ecn.purdue.edu")
57+
setenv("RCAC_ANSYS_MPI", "Open MPI Distributed Parallel")

0 commit comments

Comments
 (0)