From 3ad8367b5e7de70b72c24589002fc949d93b79b2 Mon Sep 17 00:00:00 2001 From: ceanwang Date: Thu, 26 Nov 2020 21:21:20 +1100 Subject: [PATCH] Changed comment for free format CTETRA element --- src/Mod/Fem/App/FemMesh.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Mod/Fem/App/FemMesh.cpp b/src/Mod/Fem/App/FemMesh.cpp index 2255b979822b..edb14ae3d8c0 100644 --- a/src/Mod/Fem/App/FemMesh.cpp +++ b/src/Mod/Fem/App/FemMesh.cpp @@ -1537,12 +1537,9 @@ void FemMesh::readNastran95(const std::string &Filename) } else if (nastran_free_format && line1.find("CTETRA")!= std::string::npos) { + //Quadratic Tetrahedral Elements //Base::Console().Log("Found a CTETRA\n"); tetra_element.clear(); - //Lets extract the elements - //As each Element Line consists of two subsequent lines as well - //we have to take care of that - //At a first step we only extract Quadratic Tetrahedral Elements std::getline(inputfile,line2); char_separator sep(","); tokenizer > tokens(line1.append(line2), sep);