smesh/src/DriverUNV/DriverUNV_W_SMDS_Mesh.cxx

268 lines
8.9 KiB
C++
Raw Normal View History

2020-04-15 17:49:00 +03:00
// Copyright (C) 2007-2020 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 05:27:49 +00:00
//
2012-08-09 10:03:55 +00:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2009-02-17 05:27:49 +00:00
//
2012-08-09 10:03:55 +00:00
// 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
2014-02-20 16:25:37 +04:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-17 05:27:49 +00:00
//
2012-08-09 10:03:55 +00:00
// 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.
2009-02-17 05:27:49 +00:00
//
2012-08-09 10:03:55 +00:00
// 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
2009-02-17 05:27:49 +00:00
//
2012-08-09 10:03:55 +00:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 05:27:49 +00:00
//
2012-08-09 10:03:55 +00:00
2004-12-01 10:48:31 +00:00
#include <algorithm>
2004-06-18 08:34:31 +00:00
2004-12-01 10:48:31 +00:00
#include "DriverUNV_W_SMDS_Mesh.h"
2003-05-19 13:18:36 +00:00
2004-12-01 10:48:31 +00:00
#include "SMDS_Mesh.hxx"
#include "SMESHDS_GroupBase.hxx"
2003-05-19 13:18:36 +00:00
2004-12-01 10:48:31 +00:00
#include "utilities.h"
2003-05-19 13:18:36 +00:00
2012-08-09 10:03:55 +00:00
#include "UNV164_Structure.hxx"
2004-12-01 10:48:31 +00:00
#include "UNV2411_Structure.hxx"
#include "UNV2412_Structure.hxx"
#include "UNV2417_Structure.hxx"
2012-08-09 10:03:55 +00:00
#include "UNV2420_Structure.hxx"
2004-12-01 10:48:31 +00:00
#include "UNV_Utilities.hxx"
2003-05-19 13:18:36 +00:00
2012-08-09 10:03:55 +00:00
#include <Basics_Utils.hxx>
2004-12-01 10:48:31 +00:00
using namespace std;
using namespace UNV;
2003-05-19 13:18:36 +00:00
2004-12-01 10:48:31 +00:00
Driver_Mesh::Status DriverUNV_W_SMDS_Mesh::Perform()
2003-09-04 12:03:27 +00:00
{
2012-08-09 10:03:55 +00:00
Kernel_Utils::Localizer loc;
2004-12-01 10:48:31 +00:00
Status aResult = DRS_OK;
2019-02-21 12:00:42 +03:00
#if defined(WIN32) && defined(UNICODE)
std::wstring aFile = Kernel_Utils::utf8_decode_s(myFile);
std::ofstream out_stream(aFile.c_str());
#else
2004-12-01 10:48:31 +00:00
std::ofstream out_stream(myFile.c_str());
2019-02-21 12:00:42 +03:00
#endif
2004-12-01 10:48:31 +00:00
try{
2012-08-09 10:03:55 +00:00
UNV164::Write( out_stream ); // unit system
UNV2420::Write( out_stream, myMeshName ); // Coordinate system
std::vector< size_t > nodeLabelByID;
if ( myMesh->HasNumerationHoles() )
nodeLabelByID.resize( myMesh->MaxNodeID() + 1 );
2004-12-01 10:48:31 +00:00
{
using namespace UNV2411;
TDataSet aDataSet2411;
// -----------------------------------
2004-12-01 10:48:31 +00:00
// Storing SMDS nodes to the UNV file
// -----------------------------------
2004-12-01 10:48:31 +00:00
SMDS_NodeIteratorPtr aNodesIter = myMesh->nodesIterator();
2012-08-09 10:03:55 +00:00
TRecord aRec;
for ( aRec.label = 1; aNodesIter->more(); ++aRec.label )
2012-08-09 10:03:55 +00:00
{
const SMDS_MeshNode* aNode = aNodesIter->next();
// aRec.label = aNode->GetID(); -- IPAL54452
if ( !nodeLabelByID.empty() )
nodeLabelByID[ aNode->GetID() ] = aRec.label;
2012-08-09 10:03:55 +00:00
aRec.coord[0] = aNode->X();
aRec.coord[1] = aNode->Y();
aRec.coord[2] = aNode->Z();
aDataSet2411.push_back( aRec );
2004-12-01 10:48:31 +00:00
}
UNV2411::Write(out_stream,aDataSet2411);
}
std::vector< size_t > elemLabelByID;
if ( !myGroups.empty() )
elemLabelByID.resize( myMesh->MaxElementID() + 1 );
2004-12-01 10:48:31 +00:00
{
using namespace UNV2412;
TDataSet aDataSet2412;
TRecord aRec;
aRec.label = 0;
// -------------------
2004-12-01 10:48:31 +00:00
// Storing SMDS Edges
// -------------------
if ( myMesh->NbEdges() )
{
2012-08-09 10:03:55 +00:00
SMDS_EdgeIteratorPtr anIter = myMesh->edgesIterator();
while ( anIter->more() )
2012-08-09 10:03:55 +00:00
{
const SMDS_MeshEdge* anElem = anIter->next();
// aRec.label = anElem->GetID(); -- IPAL54452
++aRec.label;
if ( !elemLabelByID.empty() )
elemLabelByID[ anElem->GetID() ] = aRec.label;
aRec.fe_descriptor_id = anElem->IsQuadratic() ? 22 : 11;
SMDS_NodeIteratorPtr aNodesIter = anElem->nodesIteratorToUNV();
for ( aRec.node_labels.clear(); aNodesIter->more(); )
2012-08-09 10:03:55 +00:00
{
const SMDS_MeshNode* aNode = aNodesIter->next();
if ( nodeLabelByID.empty() )
aRec.node_labels.push_back( aNode->GetID() );
else
aRec.node_labels.push_back( nodeLabelByID[ aNode->GetID() ]);
2012-08-09 10:03:55 +00:00
}
2012-08-09 10:03:55 +00:00
aDataSet2412.push_back(aRec);
}
2004-12-01 10:48:31 +00:00
}
// -------------------
// Storing SMDS Faces
// -------------------
2012-08-09 10:03:55 +00:00
if ( myMesh->NbFaces() )
{
SMDS_FaceIteratorPtr anIter = myMesh->facesIterator();
while ( anIter->more() )
2012-08-09 10:03:55 +00:00
{
const SMDS_MeshFace* anElem = anIter->next();
if ( anElem->IsPoly() ) continue;
SMDS_NodeIteratorPtr aNodesIter = anElem->nodesIteratorToUNV();
for ( aRec.node_labels.clear(); aNodesIter->more(); ) {
const SMDS_MeshNode* aNode = aNodesIter->next();
if ( nodeLabelByID.empty() )
aRec.node_labels.push_back( aNode->GetID() );
else
aRec.node_labels.push_back( nodeLabelByID[ aNode->GetID() ]);
2012-08-09 10:03:55 +00:00
}
switch ( anElem->NbNodes() ) {
case 3: aRec.fe_descriptor_id = 41; break;
case 4: aRec.fe_descriptor_id = 44; break;
case 6: aRec.fe_descriptor_id = 42; break;
case 7: aRec.fe_descriptor_id = 42; break;
case 8: aRec.fe_descriptor_id = 45; break;
case 9: aRec.fe_descriptor_id = 45; aRec.node_labels.resize( 8 ); break;
2012-08-09 10:03:55 +00:00
default:
continue;
}
// aRec.label = anElem->GetID(); -- IPAL54452
++aRec.label;
if ( !elemLabelByID.empty() )
elemLabelByID[ anElem->GetID() ] = aRec.label;
2012-08-09 10:03:55 +00:00
aDataSet2412.push_back(aRec);
}
2004-12-01 10:48:31 +00:00
}
// ---------------------
// Storing SMDS Volumes
// ---------------------
2012-08-09 10:03:55 +00:00
if ( myMesh->NbVolumes() )
{
SMDS_VolumeIteratorPtr anIter = myMesh->volumesIterator();
while ( anIter->more() )
2012-08-09 10:03:55 +00:00
{
const SMDS_MeshVolume* anElem = anIter->next();
if ( anElem->IsPoly() )
2012-08-09 10:03:55 +00:00
continue;
size_t aNbNodes = anElem->NbNodes();
switch( aNbNodes ) {
case 4: aRec.fe_descriptor_id = 111; break;
case 6: aRec.fe_descriptor_id = 112; break;
case 8: aRec.fe_descriptor_id = 115; break;
case 10: aRec.fe_descriptor_id = 118; break;
case 13: aRec.fe_descriptor_id = 114; break;
case 15: aRec.fe_descriptor_id = 113; break;
2012-08-09 10:03:55 +00:00
case 20:
case 27: aRec.fe_descriptor_id = 116; aNbNodes = 20; break;
2012-08-09 10:03:55 +00:00
default:
continue;
}
// aRec.label = anElem->GetID(); -- IPAL54452
++aRec.label;
if ( !elemLabelByID.empty() )
elemLabelByID[ anElem->GetID() ] = aRec.label;
aRec.node_labels.clear();
SMDS_NodeIteratorPtr aNodesIter = anElem->nodesIteratorToUNV();
while ( aNodesIter->more() && aRec.node_labels.size() < aNbNodes )
{
const SMDS_MeshElement* aNode = aNodesIter->next();
if ( nodeLabelByID.empty() )
aRec.node_labels.push_back( aNode->GetID() );
else
aRec.node_labels.push_back( nodeLabelByID[ aNode->GetID() ]);
}
aDataSet2412.push_back(aRec);
2012-08-09 10:03:55 +00:00
}
2004-12-01 10:48:31 +00:00
}
UNV2412::Write(out_stream,aDataSet2412);
}
// --------------------
// Storing SMDS Groups
// --------------------
{
using namespace UNV2417;
if ( myGroups.size() > 0 ) {
TRecord aRec;
2012-08-09 10:03:55 +00:00
TDataSet aDataSet2417;
TGroupList::const_iterator aIter = myGroups.begin();
for ( ; aIter != myGroups.end(); aIter++ )
{
2012-08-09 10:03:55 +00:00
SMESHDS_GroupBase* aGroupDS = *aIter;
aRec.GroupName = aGroupDS->GetStoreName();
aRec.NodeList.clear();
aRec.ElementList.clear();
2012-08-09 10:03:55 +00:00
SMDS_ElemIteratorPtr aIter = aGroupDS->GetElements();
if ( aGroupDS->GetType() == SMDSAbs_Node ) {
while ( aIter->more() ) {
const SMDS_MeshElement* aNode = aIter->next();
if ( nodeLabelByID.empty() )
aRec.NodeList.push_back( aNode->GetID() );
else
aRec.NodeList.push_back( nodeLabelByID[ aNode->GetID() ]);
2012-08-09 10:03:55 +00:00
}
}
else
{
while ( aIter->more() ) {
2012-08-09 10:03:55 +00:00
const SMDS_MeshElement* aElem = aIter->next();
if ( elemLabelByID.empty() )
aRec.ElementList.push_back( aElem->GetID() );
else
aRec.ElementList.push_back( elemLabelByID[ aElem->GetID() ]);
2012-08-09 10:03:55 +00:00
}
}
// 0019936: EDF 794 SMESH : Export UNV : Node color and group id
//aDataSet2417.insert(TDataSet::value_type(aGroupDS->GetID(), aRec));
aDataSet2417.insert(TDataSet::value_type(aGroupDS->GetID()+1, aRec));
}
UNV2417::Write(out_stream,aDataSet2417);
myGroups.clear();
}
}
out_stream.flush();
out_stream.close();
if (!check_file(myFile))
EXCEPTION(runtime_error,"ERROR: Output file not good.");
}
catch(const std::exception& exc){
2004-12-01 10:48:31 +00:00
INFOS("Follow exception was cought:\n\t"<<exc.what());
throw;
}
catch(...){
2004-12-01 10:48:31 +00:00
INFOS("Unknown exception was cought !!!");
throw;
2004-12-01 10:48:31 +00:00
}
return aResult;
2003-05-19 13:18:36 +00:00
}