FEM: fix node order of seg3 (B32) in writeAbaqus

This commit is contained in:
Bernd Hahnebach 2015-11-30 07:37:35 +01:00 committed by Yorik van Havre
parent 8bc013140e
commit d8af8693b4

View File

@ -894,7 +894,7 @@ void FemMesh::writeABAQUS(const std::string &Filename) const
// dimension 1
//
std::vector<int> b31 = boost::assign::list_of(0)(1);
std::vector<int> b32 = boost::assign::list_of(0)(1)(2);
std::vector<int> b32 = boost::assign::list_of(0)(2)(1);
elemOrderMap.insert(std::make_pair("B31", b31));
edgeTypeMap.insert(std::make_pair(elemOrderMap["B31"].size(), "B31"));