How to Export Nastran File to a specific folder?
Erik Kostson
Member, Employee Posts: 210
✭✭✭✭
Using ACT scripting inside mechanical how can we export a Nastran file to a specific folder?
Tagged:
0
Answers
-
Below is a code that does that:
from Ansys.ACT.Automation.Mechanical import NastranExportOptions nas = NastranExportOptions() nas.NastranFilename = r"C:\test.nas" ExtAPI.DataModel.AnalysisList[0].ExportNastranFile(nas)
0