How can I write an input file through ACT?
Pernelle Marone-Hitz
Member, Moderator, Employee Posts: 871
✭✭✭✭
Best Answer
-
WriteInputFile() method can be used to that effect, for example the command line:
ExtAPI.DataModel.Project.Model.Analyses[0].WriteInputFile(;D:\Test\Input.dat")
will generate the input file for the model and save it in the
D:\Test folder
(provided that this folder exists).0
Answers
-
Think there was a small typo (;) in the above act script - should be:
ExtAPI.DataModel.Project.Model.Analyses[0].WriteInputFile("D:\Test\Input.dat")
0