FEM: gmsh, add linear nodes interpolation parameter (thanks to _UR)

This commit is contained in:
Bernd Hahnebach
2019-12-17 05:44:46 +01:00
committed by wwmayer
parent 508412ee41
commit d01997c172
2 changed files with 18 additions and 0 deletions

View File

@@ -174,6 +174,14 @@ class _FemMeshGmsh():
)
obj.GeometryTolerance = 1e-06
obj.addProperty(
"App::PropertyBool",
"SecondOrderLinear",
"FEM Gmsh Mesh Params",
"Second order nodes are created by linear interpolation"
)
obj.SecondOrderLinear = True
obj.addProperty(
"App::PropertyEnumeration",
"Algorithm2D",