Skip to content

Commit

Permalink
FEM: source comment typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz authored and yorikvanhavre committed Jan 2, 2019
1 parent 0274e73 commit 0a25f7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Mod/Fem/femguiobjects/_ViewProviderFemMaterial.py
Expand Up @@ -165,7 +165,7 @@ def __init__(self, obj):
self.choose_material(index) # fill input fields and set the current material in the cb widget
else:
# we found our exact material in self.materials dict :-)
FreeCAD.Console.PrintMessage("Previously used material card was found in material directories. We gone use this material.\n")
FreeCAD.Console.PrintMessage("Previously used material card was found in material directories. We will use this material.\n")
index = self.parameterWidget.cb_materials.findData(self.card_path)
# print(index)
self.choose_material(index) # fill input fields and set the current material in the cb widget
Expand Down
6 changes: 3 additions & 3 deletions src/Mod/Fem/femtools/ccxtools.py
Expand Up @@ -187,8 +187,8 @@ def update_objects(self):
found_solver_for_use = False
for m in self.analysis.Group:
if femutils.is_of_type(m, "Fem::FemSolverCalculixCcxTools"):
# we gone check for exlicit for the ccx tools solver type only,
# thus it is possible to have lots of frame work solver inside the analysis anyway
# we are going to explicitly check for the ccx tools solver type only,
# thus it is possible to have lots of framework solvers inside the analysis anyway
# for some methods no solver is needed (purge_results) --> solver could be none
# analysis has one solver and no solver was set --> use the one solver
# analysis has more than one solver and no solver was set --> use solver none
Expand All @@ -201,7 +201,7 @@ def update_objects(self):
self.solver = None
# another solver was found --> We have more than one solver
# we do not know which one to use, so we use none !
# FreeCAD.Console.PrintMessage('FEM: More than one solver in the analysis and no solver given to analys. No solver is set!\n')
# FreeCAD.Console.PrintMessage('FEM: More than one solver in the analysis and no solver given to analyze. No solver is set!\n')
elif m.isDerivedFrom("Fem::FemMeshObject"):
if not self.mesh:
self.mesh = m
Expand Down

1 comment on commit 0a25f7f

@berndhahnebach
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.