diff --git a/src/Mod/Fem/femobjects/_FemResultMechanical.py b/src/Mod/Fem/femobjects/_FemResultMechanical.py index ae5fcfc890..ad5313e35a 100644 --- a/src/Mod/Fem/femobjects/_FemResultMechanical.py +++ b/src/Mod/Fem/femobjects/_FemResultMechanical.py @@ -62,6 +62,18 @@ class _FemResultMechanical(): obj.addProperty("App::PropertyFloatList", "NetworkPressure", "NodeData", "List of network pressure values", True) obj.addProperty("App::PropertyFloatList", "UserDefined", "NodeData", "User Defined Results", True) obj.addProperty("App::PropertyFloatList", "Temperature", "NodeData", "Temperature field", True) + obj.addProperty("App::PropertyFloatList", "NodeStressXX", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStressYY", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStressZZ", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStressXY", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStressXZ", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStressYZ", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStrainXX", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStrainYY", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStrainZZ", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStrainXY", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStrainXZ", "NodeData", "", True) + obj.addProperty("App::PropertyFloatList", "NodeStrainYZ", "NodeData", "", True) # initialize the Stats with the appropriate count of items (see fill_femresult_stats in femresult/resulttools.py) zero_list = 39 * [0]