Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit 482d13a

Browse files
authored
support 242 (#127)
1 parent 49c6013 commit 482d13a

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,10 @@ For contributing to this project, please refer to the [PyAnsys Developer's Guide
1414
Further information about contributing to ansys-tools-path can be found in
1515
[ansys-tools-path github page](https://github.com/ansys/ansys-tools-path).
1616

17-
[PyAnsys Developer's Guide]: https://dev.docs.pyansys.com/
17+
[PyAnsys Developer's Guide]: https://dev.docs.pyansys.com/
18+
19+
20+
## [v0.4.0]() - 17 November 2023
21+
22+
### What's Changed
23+
Support the version 24.2 of the Ansys unified install.

src/ansys/tools/path/path.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
CONFIG_FILE_NAME = "config.txt"
2323

2424
SUPPORTED_ANSYS_VERSIONS: SUPPORTED_VERSIONS_TYPE = {
25+
242: "2024R2",
2526
241: "2024R1",
2627
232: "2023R2",
2728
231: "2023R1",
@@ -55,9 +56,13 @@
5556
if is_windows(): # pragma: no cover
5657
PRODUCT_EXE_INFO["mechanical"]["patternpath"] = "vXXX/aisol/bin/winx64/AnsysWBU.exe"
5758
PRODUCT_EXE_INFO["mechanical"]["pattern"] = "AnsysWBU.exe"
59+
PRODUCT_EXE_INFO["dyna"]["patternpath"] = "vXXX/ansys/bin/winx64/LSDYNAXXX.exe"
60+
PRODUCT_EXE_INFO["dyna"]["pattern"] = "LSDYNAXXX.exe"
5861
else:
5962
PRODUCT_EXE_INFO["mechanical"]["patternpath"] = "vXXX/aisol/.workbench"
6063
PRODUCT_EXE_INFO["mechanical"]["pattern"] = ".workbench"
64+
PRODUCT_EXE_INFO["dyna"]["patternpath"] = "vXXX/ansys/bin/lsdynaXXX"
65+
PRODUCT_EXE_INFO["dyna"]["pattern"] = "lsdynaXXX"
6166

6267
# settings directory
6368
SETTINGS_DIR = platformdirs.user_data_dir(appname="ansys_tools_path", appauthor="Ansys")

0 commit comments

Comments
 (0)