diff --git a/src/Mod/Fem/App/FemVTKTools.cpp b/src/Mod/Fem/App/FemVTKTools.cpp index 432bc37cbf..a0b4fd04c4 100644 --- a/src/Mod/Fem/App/FemVTKTools.cpp +++ b/src/Mod/Fem/App/FemVTKTools.cpp @@ -660,9 +660,10 @@ std::map _getFreeCADMechResultVectorProperties() { // App::PropertyVectorList will be a list of vectors in vtk std::map resFCVecProp; resFCVecProp["DisplacementVectors"] = "Displacement"; - resFCVecProp["PS1Vector"] = "PS1Vector"; - resFCVecProp["PS2Vector"] = "PS2Vector"; - resFCVecProp["PS3Vector"] = "PS3Vector"; + // https://forum.freecadweb.org/viewtopic.php?f=18&t=33106&start=70#p296317 + resFCVecProp["PS1Vector"] = "Major Principal Stress"; + resFCVecProp["PS2Vector"] = "Intermediate Principal Stress"; + resFCVecProp["PS3Vector"] = "Minor Principal Stress"; return resFCVecProp; } @@ -689,9 +690,10 @@ std::map _getFreeCADMechResultScalarProperties() { resFCScalProp["NodeStrainXZ"] = "Strain xz component"; resFCScalProp["NodeStrainYZ"] = "Strain yz component"; resFCScalProp["Peeq"] = "Equivalent Plastic Strain"; - resFCScalProp["PrincipalMax"] = "Major Principal Stress"; // can be plotted in Paraview as THE MAJOR PRINCIPAL STRESS MAGNITUDE - resFCScalProp["PrincipalMed"] = "Intermediate Principal Stress"; // can be plotted in Paraview as THE INTERMEDIATE PRINCIPAL STRESS MAGNITUDE - resFCScalProp["PrincipalMin"] = "Minor Principal Stress"; // can be plotted in Paraview as THE MINOR PRINCIPAL STRESS MAGNITUDE + // https://forum.freecadweb.org/viewtopic.php?f=18&t=33106&start=70#p296317 + // resFCScalProp["PrincipalMax"] = "Major Principal Stress"; // can be plotted in Paraview as THE MAJOR PRINCIPAL STRESS MAGNITUDE + // resFCScalProp["PrincipalMed"] = "Intermediate Principal Stress"; // can be plotted in Paraview as THE INTERMEDIATE PRINCIPAL STRESS MAGNITUDE + // resFCScalProp["PrincipalMin"] = "Minor Principal Stress"; // can be plotted in Paraview as THE MINOR PRINCIPAL STRESS MAGNITUDE resFCScalProp["StressValues"] = "von Mises Stress"; resFCScalProp["Temperature"] = "Temperature"; resFCScalProp["MohrCoulomb"] = "MohrCoulomb";