How to Export Nastran File to a specific folder?

Erik Kostson
Erik Kostson Member, Employee Posts: 210
50 Answers 100 Comments 25 Likes Name Dropper
✭✭✭✭
edited June 2023 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: 210
    50 Answers 100 Comments 25 Likes Name Dropper
    ✭✭✭✭

    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)