How can I write an input file through ACT?
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).
D:\Test folder
Think there was a small typo (;) in the above act script - should be:
ExtAPI.DataModel.Project.Model.Analyses[0].WriteInputFile("D:\Test\Input.dat")