X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FDriverUNV%2FDriverUNV_W_SMDS_Mesh.cxx;h=7e640d5cfcb5d91b6576efed6e6ea80703209b35;hp=99ed2d738a09fdfe5fe25e86fc1a9dc0e9a021ca;hb=2c607013a23bd4e7ba07e72e0c04dee2c1209cff;hpb=5e7f07d3dab81c7fcc2b7a8d557d14c028075af6 diff --git a/src/DriverUNV/DriverUNV_W_SMDS_Mesh.cxx b/src/DriverUNV/DriverUNV_W_SMDS_Mesh.cxx index 99ed2d738..7e640d5cf 100644 --- a/src/DriverUNV/DriverUNV_W_SMDS_Mesh.cxx +++ b/src/DriverUNV/DriverUNV_W_SMDS_Mesh.cxx @@ -1,24 +1,25 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE // -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. // -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #include #include "DriverUNV_W_SMDS_Mesh.h" @@ -98,12 +99,10 @@ Driver_Mesh::Status DriverUNV_W_SMDS_Mesh::Perform() TRecord aRec; aRec.node_labels.reserve(aNbNodes); SMDS_ElemIteratorPtr aNodesIter; + aNodesIter = anElem->nodesIteratorToUNV(); if( anElem->IsQuadratic() ) { - aNodesIter = static_cast - ( anElem )->interlacedNodesElemIterator(); aRec.fe_descriptor_id = 22; } else { - aNodesIter = anElem->nodesIterator(); aRec.fe_descriptor_id = 11; } for(; aNodesIter->more();){ @@ -125,11 +124,7 @@ Driver_Mesh::Status DriverUNV_W_SMDS_Mesh::Perform() TRecord aRec; aRec.node_labels.reserve(aNbNodes); SMDS_ElemIteratorPtr aNodesIter; - if( anElem->IsQuadratic() ) - aNodesIter = static_cast - ( anElem )->interlacedNodesElemIterator(); - else - aNodesIter = anElem->nodesIterator(); + aNodesIter = anElem->nodesIteratorToUNV(); for(; aNodesIter->more();){ const SMDS_MeshElement* aNode = aNodesIter->next(); aRec.node_labels.push_back(aNode->GetID()); @@ -163,72 +158,59 @@ Driver_Mesh::Status DriverUNV_W_SMDS_Mesh::Perform() TElementLab aLabel = anElem->GetID(); int aNbNodes = anElem->NbNodes(); - SMDS_ElemIteratorPtr aNodesIter = anElem->nodesIterator(); + //MESSAGE("aNbNodes="<nodesIteratorToUNV(); if ( anElem->IsPoly() ) { - if ( const SMDS_PolyhedralVolumeOfNodes* ph = - dynamic_cast (anElem)) + MESSAGE("anElem->IsPoly"); + if ( const SMDS_VtkVolume* ph = + dynamic_cast (anElem)) { aNbNodes = ph->NbUniqueNodes(); aNodesIter = ph->uniqueNodesIterator(); } } - aConnect.resize(aNbNodes); - GetConnect(aNodesIter,aConnect); int anId = -1; - int* aConn = NULL; switch(aNbNodes){ case 4: { - static int anIds[] = {0,2,1,3}; - aConn = anIds; anId = 111; break; } case 6: { - static int anIds[] = {0,2,1,3,5,4}; - aConn = anIds; anId = 112; break; } case 8: { - static int anIds[] = {0,3,2,1,4,7,6,5}; - aConn = anIds; anId = 115; break; } case 10: { - static int anIds[] = {0,4,2,9,5,3, 1,6,8, 7}; - aConn = anIds; anId = 118; break; } case 13: { - static int anIds[] = {0,6,4,2,7,5,3,1,8,11,10,9,12}; - aConn = anIds; anId = 114; break; } case 15: { - static int anIds[] = {0,4,2,9,13,11,5,3,1,14,12,10,6,8,7}; - aConn = anIds; anId = 113; break; } case 20: { - static int anIds[] = {0,6, 4,2, 12,18,16,14,7, 5, 3, 1, 19,17,15,13,8, 11,10,9}; - aConn = anIds; anId = 116; break; } default: continue; } - if(aConn){ + if(anId>0){ TRecord aRec; aRec.fe_descriptor_id = anId; - aRec.node_labels.resize(aNbNodes); - for(int aNodeId = 0; aNodeId < aNbNodes; aNodeId++){ - aRec.node_labels[aConn[aNodeId]] = aConnect[aNodeId]; + aRec.node_labels.reserve(aNbNodes); + for(; aNodesIter->more();){ + const SMDS_MeshElement* aNode = aNodesIter->next(); + aRec.node_labels.push_back(aNode->GetID()); } aDataSet2412.insert(TDataSet::value_type(aLabel,aRec)); }