Renaming FEM mesh region to mesh refinement (only Users POV / tooltips) (#11489)

* project to document on information, merge, util

* rename MehRegion to MeshRefinement (tooltip/user PoV only)
This commit is contained in:
Max Wilfinger
2023-12-04 17:41:04 +01:00
committed by GitHub
parent 518b48ffaf
commit d491ac0865
7 changed files with 18 additions and 18 deletions

View File

@@ -579,7 +579,7 @@ def makeMeshGroup(
name="MeshGroup"
):
"""makeMeshGroup(document, base_mesh, [use_label], [name]):
creates a FEM mesh region object to define properties for a region of a FEM mesh"""
creates a FEM mesh refinement object to define properties for a region of a FEM mesh"""
obj = doc.addObject("Fem::FeaturePython", name)
from femobjects import mesh_group
mesh_group.MeshGroup(obj)
@@ -613,7 +613,7 @@ def makeMeshRegion(
name="MeshRegion"
):
"""makeMeshRegion(document, base_mesh, [element_length], [name]):
creates a FEM mesh region object to define properties for a region of a FEM mesh"""
creates a FEM mesh refinement object to define properties for a refinement of a FEM mesh"""
obj = doc.addObject("Fem::FeaturePython", name)
from femobjects import mesh_region
mesh_region.MeshRegion(obj)