Adding Results to a Solution Object

You can use the API to add results to the Solution object. For example, you can add the Total Deformation result to a static structural analysis and then retrieve the minimum and maximum total deformation:

total_deformation = solution.AddTotalDeformation()
analysis = Model.Analyses=[0]
analysis.Solve(True)
minimum_deformation = total_deformation.Minimum
maximum_deformation = total_deformation.Maximum

It results in a solved analysis indicating the values for the properties Minimum and Maximum for the result Total Deformation.