Using ACT, how can I read a result file in Mechanical (similarly to Tools / Read result file) and sp
Pernelle Marone-Hitz
Member, Moderator, Employee Posts: 871
✭✭✭✭
Using ACT, how can I read a result file in Mechanical (similarly to Tools / Read result file) and specify the unit system that was used for the solve?
Tagged:
0
Best Answer
-
The following line script can be used and adapted:
Solu=ExtAPI.DataModel.Project.Model.Analyses[0].Solution settings=ExtAPI.DataModel.Project.Model.Analyses[0].AnalysisSettings sfd=settings.SolverFilesDirectory Solu.ReadGivenAnsysResultFile(sfd+"file.rst", Ansys.ACT.Automation.Mechanical.Enums.UnitSystemIDType.UnitsMKS)
Depending on the version used, the last line can also be:
Solu.ReadGivenAnsysResultFile(fName, UnitSystemIDType.UnitsUMKS)
3
Answers
-
Sometimes this can lag a bit - the below seems a bit faster:
solution.ReadGivenAnsysResultFileByReference()
0 -
Just for reference, the option to access Unit system has changed. Please use the below.
analysis.Solution.ReadGivenAnsysResultFile(filepath,Ansys.Mechanical.DataModel.Enums.UnitSystemIDType.UnitsNMM)
0