How to Export Nastran File to a specific folder?

Erik Kostson
Erik Kostson Member, Employee Posts: 52
25 Likes 10 Comments Ansys Employee Photogenic
edited June 21 in Structures

Using ACT scripting inside mechanical how can we export a Nastran file to a specific folder?

Answers

  • Erik Kostson
    Erik Kostson Member, Employee Posts: 52
    25 Likes 10 Comments Ansys Employee Photogenic

    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)