From d8af8693b44e325049ba17d096ae3e66f5bfc6b8 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Mon, 30 Nov 2015 07:37:35 +0100 Subject: [PATCH] FEM: fix node order of seg3 (B32) in writeAbaqus --- src/Mod/Fem/App/FemMesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/App/FemMesh.cpp b/src/Mod/Fem/App/FemMesh.cpp index b13968931..873ab77e2 100644 --- a/src/Mod/Fem/App/FemMesh.cpp +++ b/src/Mod/Fem/App/FemMesh.cpp @@ -894,7 +894,7 @@ void FemMesh::writeABAQUS(const std::string &Filename) const // dimension 1 // std::vector b31 = boost::assign::list_of(0)(1); - std::vector b32 = boost::assign::list_of(0)(1)(2); + std::vector b32 = boost::assign::list_of(0)(2)(1); elemOrderMap.insert(std::make_pair("B31", b31)); edgeTypeMap.insert(std::make_pair(elemOrderMap["B31"].size(), "B31"));