FEM: mesh netgen and gmsh, use the same group and description for mesh geometry object

This commit is contained in:
Bernd Hahnebach
2018-08-27 21:05:15 +02:00
committed by Yorik van Havre
parent 26a255b384
commit ff716f3d45
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ PROPERTY_SOURCE(Fem::FemMeshShapeObject, Fem::FemMeshObject)
FemMeshShapeObject::FemMeshShapeObject()
{
ADD_PROPERTY_TYPE(Shape,(0), "Shape",Prop_None,"Shape for the analysis");
ADD_PROPERTY_TYPE(Shape,(0), "FEM Mesh",Prop_None,"Geometry object, the mesh is made from. The geometry object has to have a Shape.");
}
FemMeshShapeObject::~FemMeshShapeObject()

View File

@@ -52,7 +52,7 @@ class _FemMeshGmsh():
obj.addProperty("App::PropertyLinkList", "MeshGroupList", "Base", "Mesh groups of the mesh")
obj.MeshGroupList = []
obj.addProperty("App::PropertyLink", "Part", "FEM Mesh", "Part object to mesh")
obj.addProperty("App::PropertyLink", "Part", "FEM Mesh", "Geometry object, the mesh is made from. The geometry object has to have a Shape.")
obj.Part = None
obj.addProperty("App::PropertyLength", "CharacteristicLengthMax", "FEM Gmsh Mesh Params", "Max mesh element size (0.0 = infinity)")