Skip to content

Commit

Permalink
FEM: restult tools stats calculation, fix missing check
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed Jul 12, 2020
1 parent 5666598 commit 237cba0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Mod/Fem/femresult/resulttools.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ def fill_femresult_stats(res_obj):
if res_obj.DisplacementVectors:
x_max, y_max, z_max = map(max, zip(*res_obj.DisplacementVectors))
x_min, y_min, z_min = map(min, zip(*res_obj.DisplacementVectors))
if res_obj.DisplacementLengths:
a_min = min(res_obj.DisplacementLengths)
a_max = max(res_obj.DisplacementLengths)
if res_obj.vonMises:
Expand Down

0 comments on commit 237cba0

Please sign in to comment.