FEM: objects create, typos

This commit is contained in:
UR-0
2021-06-09 11:54:19 +02:00
committed by Bernd Hahnebach
parent 4453a1e129
commit c667efdb77

View File

@@ -285,7 +285,7 @@ def makeConstraintTie(
name="ConstraintTie"
):
"""makeConstraintTie(document, [name]):
creates an tie object to define bonded faces constraint"""
creates a tie object to define bonded faces constraint"""
obj = doc.addObject("Fem::ConstraintPython", name)
from femobjects import constraint_tie
constraint_tie.ConstraintTie(obj)
@@ -310,7 +310,7 @@ def makeConstraintSectionPrint(
name="ConstraintSectionPrint"
):
"""makeConstraintSectionPrint(document, [name]):
creates an section print object to evaluate forces and moments of defined face"""
creates a section print object to evaluate forces and moments of defined face"""
obj = doc.addObject("Fem::ConstraintPython", name)
from femobjects import constraint_sectionprint
constraint_sectionprint.ConstraintSectionPrint(obj)