Changed comment for free format CTETRA element

This commit is contained in:
ceanwang
2021-02-04 13:25:13 +01:00
committed by wmayer
parent 172d2d8a27
commit 3ad8367b5e
+1 -4
View File
@@ -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<char> sep(",");
tokenizer<char_separator<char> > tokens(line1.append(line2), sep);