From c9f6855fc446e4b30bab63f109f0e23bdc54769f Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Sun, 29 Apr 2018 09:27:28 +0200 Subject: [PATCH] FEM: typos, can't hardly belive there still are some ... --- src/Mod/Fem/App/FemMesh.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Fem/App/FemMesh.cpp b/src/Mod/Fem/App/FemMesh.cpp index 096da47374..dfc5a51e97 100644 --- a/src/Mod/Fem/App/FemMesh.cpp +++ b/src/Mod/Fem/App/FemMesh.cpp @@ -1345,7 +1345,7 @@ void FemMesh::writeABAQUS(const std::string &Filename, int elemParam, bool group //get faces ElementsMap elementsMapFac; // empty faces map used for elemParam = 1 and elementsMapVol is not empty if ((elemParam == 0) || (elemParam == 1 && elementsMapVol.empty())) { - // for ememParam = 1 we only fill the elementsMapFac if the elmentsMapVol is empty + // for elemParam = 1 we only fill the elementsMapFac if the elmentsMapVol is empty // we're going to fill the elementsMapFac with all faces SMDS_FaceIteratorPtr aFaceIter = myMesh->GetMeshDS()->facesIterator(); while (aFaceIter->more()) { @@ -1383,7 +1383,7 @@ void FemMesh::writeABAQUS(const std::string &Filename, int elemParam, bool group // get edges ElementsMap elementsMapEdg; // empty edges map used for elemParam == 1 and either elementMapVol or elementsMapFac are not empty if ((elemParam == 0) || (elemParam == 1 && elementsMapVol.empty() && elementsMapFac.empty())) { - // for ememParam = 1 we only fill the elementsMapEdg if the elmentsMapVol and elmentsMapFac are empty + // for elemParam = 1 we only fill the elementsMapEdg if the elmentsMapVol and elmentsMapFac are empty // we're going to fill the elementsMapEdg with all edges SMDS_EdgeIteratorPtr aEdgeIter = myMesh->GetMeshDS()->edgesIterator(); while (aEdgeIter->more()) {