From 9091c475d5a894cc42e4867b2b35f8c29bb087f2 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Mon, 20 Feb 2017 06:29:52 +0100 Subject: [PATCH] FEM: mechanical result object, add peeq strain propert, by sodelo --- src/Mod/Fem/_FemMechanicalResult.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Mod/Fem/_FemMechanicalResult.py b/src/Mod/Fem/_FemMechanicalResult.py index 8032a09ec..3ecd0b852 100644 --- a/src/Mod/Fem/_FemMechanicalResult.py +++ b/src/Mod/Fem/_FemMechanicalResult.py @@ -51,6 +51,9 @@ class _FemMechanicalResult(): # does not show up in propertyEditor of combiView obj.addProperty("App::PropertyVectorList", "StrainVectors", "Fem", "List of strain vectors", True) + # does not show up in propertyEditor of combiView + obj.addProperty("App::PropertyFloatList", "Peeq", "Fem", "List of equivalent plastic strain values", True) + # readonly in propertyEditor of combiView obj.addProperty("App::PropertyFloatList", "DisplacementLengths", "Fem", "List of displacement lengths", True)