Using ACT scripting inside mechanical how can we export a Nastran file to a specific folder?
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)