Skip to content

Commit

Permalink
FEM: typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed Feb 17, 2020
1 parent b7d8e98 commit 983baa7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Mod/Fem/femobjects/_FemResultMechanical.py
Expand Up @@ -303,7 +303,7 @@ def onChanged(self, obj, prop):

def onDocumentRestored(self, obj):
# migrate old result objects, because property "StressValues"
# was renamed to "vonMises" wirh commit 8b68ab7
# was renamed to "vonMises" in commit 8b68ab7
if hasattr(obj, "StressValues") is True:
obj.addProperty(
"App::PropertyFloatList",
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Fem/femsolver/calculix/tasks.py
Expand Up @@ -61,7 +61,7 @@ def run(self):
w = writer.FemInputWriterCcx(
self.analysis,
self.solver,
femutils.get_mesh_to_solve(self.analysis)[0], # pre check hast been done already
femutils.get_mesh_to_solve(self.analysis)[0], # pre check has been done already
c.materials_linear,
c.materials_nonlinear,
c.constraints_fixed,
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Fem/femsolver/z88/tasks.py
Expand Up @@ -55,7 +55,7 @@ def run(self):
w = writer.FemInputWriterZ88(
self.analysis,
self.solver,
femutils.get_mesh_to_solve(self.analysis)[0], # pre check hast been done already
femutils.get_mesh_to_solve(self.analysis)[0], # pre check has been done already
c.materials_linear,
c.materials_nonlinear,
c.constraints_fixed,
Expand Down

0 comments on commit 983baa7

Please sign in to comment.