As part of the script I'm developing, I want to loop over only the result objects under the Solution of my analysis. How can I do that?
You can use the script below:
for res in DataModel.Project.Model.Analyses[0].Solution.Children: if res.GetType().ToString().StartsWith("Ansys.ACT.Automation.Mechanical.Results"): print(res.Name)