Skip to content

Commit

Permalink
Changed comment for free format CTETRA element
Browse files Browse the repository at this point in the history
  • Loading branch information
ceanwang authored and wwmayer committed Feb 4, 2021
1 parent 172d2d8 commit 3ad8367
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Mod/Fem/App/FemMesh.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 3ad8367

Please sign in to comment.