How do I export Nastran File from Mechanical to a user defined path?
Ayush Kumar
Member, Moderator, Employee Posts: 467
✭✭✭✭
Comments
-
ns = Ansys.ACT.Automation.Mechanical.NastranExportOptions() ns.NastranFilename = r"\Path\to\nastran_export_file.cdb" analysis = Model.Analyses[0] analysis.ExportNastranFile(ns)
0