smesh/src/DriverMED/DriverMED_W_SMESHDS_Mesh.cxx

868 lines
31 KiB
C++
Raw Normal View History

2009-02-17 10:27:49 +05:00
// Copyright (C) 2007-2008 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
2003-07-10 15:06:41 +06:00
//
2009-02-17 10:27:49 +05: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
// version 2.1 of the License.
2003-07-10 15:06:41 +06:00
//
2009-02-17 10:27:49 +05: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.
2003-07-10 15:06:41 +06:00
//
2009-02-17 10:27:49 +05: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
2003-07-10 15:06:41 +06:00
//
2009-02-17 10:27:49 +05:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
// SMESH DriverMED : driver to read and write 'med' files
2003-07-10 15:06:41 +06:00
// File : DriverMED_W_SMESHDS_Mesh.cxx
// Module : SMESH
2009-02-17 10:27:49 +05:00
//
2004-12-01 15:48:31 +05:00
#include <sstream>
#include "DriverMED_W_SMESHDS_Mesh.h"
#include "DriverMED_W_SMDS_Mesh.h"
2004-06-18 14:34:31 +06:00
#include "DriverMED_Family.h"
2004-12-01 15:48:31 +05:00
#include "SMESHDS_Mesh.hxx"
#include "SMDS_MeshElement.hxx"
#include "SMDS_MeshNode.hxx"
#include "SMDS_PolyhedralVolumeOfNodes.hxx"
#include "utilities.h"
2004-06-18 14:34:31 +06:00
#include "MED_Utilities.hxx"
2004-07-20 13:56:05 +06:00
#define _EDF_NODE_IDS_
2004-12-17 16:07:35 +05:00
//#define _ELEMENTS_BY_DIM_
2004-07-20 13:56:05 +06:00
2004-12-01 15:48:31 +05:00
using namespace std;
2005-01-20 11:25:54 +05:00
using namespace MED;
2004-12-01 15:48:31 +05:00
DriverMED_W_SMESHDS_Mesh::DriverMED_W_SMESHDS_Mesh():
myAllSubMeshes (false),
myDoGroupOfNodes (false),
myDoGroupOfEdges (false),
myDoGroupOfFaces (false),
myDoGroupOfVolumes (false)
{}
void DriverMED_W_SMESHDS_Mesh::SetFile(const std::string& theFileName,
MED::EVersion theId)
2005-01-20 11:25:54 +05:00
{
myMed = CrWrapper(theFileName,theId);
Driver_SMESHDS_Mesh::SetFile(theFileName);
}
void DriverMED_W_SMESHDS_Mesh::SetFile(const std::string& theFileName)
{
return SetFile(theFileName,MED::eV2_2);
2005-01-20 11:25:54 +05:00
}
string DriverMED_W_SMESHDS_Mesh::GetVersionString(const MED::EVersion theVersion, int theNbDigits)
{
TInt majeur, mineur, release;
majeur = mineur = release = 0;
if ( theVersion == eV2_1 )
MED::GetVersionRelease<eV2_1>(majeur, mineur, release);
else
MED::GetVersionRelease<eV2_2>(majeur, mineur, release);
ostringstream name;
if ( theNbDigits > 0 )
name << majeur;
if ( theNbDigits > 1 )
name << "." << mineur;
if ( theNbDigits > 2 )
name << "." << release;
return name.str();
}
2004-12-01 15:48:31 +05:00
void DriverMED_W_SMESHDS_Mesh::SetMeshName(const std::string& theMeshName)
2003-09-04 18:03:27 +06:00
{
2004-06-18 14:34:31 +06:00
myMeshName = theMeshName;
}
2004-12-01 15:48:31 +05:00
void DriverMED_W_SMESHDS_Mesh::AddGroup(SMESHDS_GroupBase* theGroup)
2003-09-04 18:03:27 +06:00
{
2004-06-18 14:34:31 +06:00
myGroups.push_back(theGroup);
}
2003-09-04 18:03:27 +06:00
2004-06-18 14:34:31 +06:00
void DriverMED_W_SMESHDS_Mesh::AddAllSubMeshes()
{
myAllSubMeshes = true;
}
2004-06-18 14:34:31 +06:00
void DriverMED_W_SMESHDS_Mesh::AddSubMesh(SMESHDS_SubMesh* theSubMesh, int theID)
{
mySubMeshes[theID] = theSubMesh;
}
2004-06-18 14:34:31 +06:00
void DriverMED_W_SMESHDS_Mesh::AddGroupOfNodes()
{
myDoGroupOfNodes = true;
}
2004-06-18 14:34:31 +06:00
void DriverMED_W_SMESHDS_Mesh::AddGroupOfEdges()
{
myDoGroupOfEdges = true;
}
2004-06-18 14:34:31 +06:00
void DriverMED_W_SMESHDS_Mesh::AddGroupOfFaces()
{
myDoGroupOfFaces = true;
}
2004-06-18 14:34:31 +06:00
void DriverMED_W_SMESHDS_Mesh::AddGroupOfVolumes()
{
myDoGroupOfVolumes = true;
}
2005-01-20 11:25:54 +05:00
namespace{
typedef double (SMDS_MeshNode::* TGetCoord)() const;
typedef const char* TName;
typedef const char* TUnit;
// name length in a mesh must be equal to 16 :
// 1234567890123456
TName M = "m ";
TName X = "x ";
TName Y = "y ";
TName Z = "z ";
TUnit aUnit[3] = {M,M,M};
// 3 dim
2005-01-20 11:25:54 +05:00
TGetCoord aXYZGetCoord[3] = {
&SMDS_MeshNode::X,
&SMDS_MeshNode::Y,
&SMDS_MeshNode::Z
};
TName aXYZName[3] = {X,Y,Z};
2005-01-20 11:25:54 +05:00
// 2 dim
2005-01-20 11:25:54 +05:00
TGetCoord aXYGetCoord[2] = {
&SMDS_MeshNode::X,
&SMDS_MeshNode::Y
};
TName aXYName[2] = {X,Y};
2005-01-20 11:25:54 +05:00
TGetCoord aYZGetCoord[2] = {
&SMDS_MeshNode::Y,
&SMDS_MeshNode::Z
};
TName aYZName[2] = {Y,Z};
2005-01-20 11:25:54 +05:00
TGetCoord aXZGetCoord[2] = {
&SMDS_MeshNode::X,
&SMDS_MeshNode::Z
};
TName aXZName[2] = {X,Z};
2005-01-20 11:25:54 +05:00
// 1 dim
2005-01-20 11:25:54 +05:00
TGetCoord aXGetCoord[1] = {
&SMDS_MeshNode::X
};
TName aXName[1] = {X};
2005-01-20 11:25:54 +05:00
TGetCoord aYGetCoord[1] = {
&SMDS_MeshNode::Y
};
TName aYName[1] = {Y};
2005-01-20 11:25:54 +05:00
TGetCoord aZGetCoord[1] = {
&SMDS_MeshNode::Z
};
TName aZName[1] = {Z};
2005-01-20 11:25:54 +05:00
class TCoordHelper{
SMDS_NodeIteratorPtr myNodeIter;
const SMDS_MeshNode* myCurrentNode;
TGetCoord* myGetCoord;
TName* myName;
TUnit* myUnit;
public:
TCoordHelper(const SMDS_NodeIteratorPtr& theNodeIter,
TGetCoord* theGetCoord,
TName* theName,
TUnit* theUnit = aUnit):
myNodeIter(theNodeIter),
myGetCoord(theGetCoord),
myName(theName),
myUnit(theUnit)
{}
virtual ~TCoordHelper(){}
bool Next(){
return myNodeIter->more() &&
(myCurrentNode = myNodeIter->next());
}
const SMDS_MeshNode* GetNode(){
return myCurrentNode;
}
MED::TIntVector::value_type GetID(){
return myCurrentNode->GetID();
}
MED::TFloatVector::value_type GetCoord(TInt theCoodId){
return (myCurrentNode->*myGetCoord[theCoodId])();
}
MED::TStringVector::value_type GetName(TInt theDimId){
return myName[theDimId];
}
MED::TStringVector::value_type GetUnit(TInt theDimId){
return myUnit[theDimId];
}
};
typedef boost::shared_ptr<TCoordHelper> TCoordHelperPtr;
2009-02-17 10:27:49 +05:00
//-------------------------------------------------------
/*!
* \brief Class helping to use either SMDS_EdgeIterator, SMDS_FaceIterator
* or SMDS_VolumeIterator in the same code
*/
//-------------------------------------------------------
struct TElemIterator
{
virtual const SMDS_MeshElement* next() = 0;
virtual ~TElemIterator() {}
};
typedef boost::shared_ptr<TElemIterator> PElemIterator;
template< class SMDSIteratorPtr > class TypedElemIterator: public TElemIterator
{
SMDSIteratorPtr myItPtr;
public:
TypedElemIterator(SMDSIteratorPtr it): myItPtr(it) {}
virtual const SMDS_MeshElement* next() {
if ( myItPtr->more() ) return myItPtr->next();
else return 0;
}
};
typedef TypedElemIterator< SMDS_EdgeIteratorPtr > TEdgeIterator;
typedef TypedElemIterator< SMDS_FaceIteratorPtr > TFaceIterator;
typedef TypedElemIterator< SMDS_VolumeIteratorPtr > TVolumeIterator;
//-------------------------------------------------------
/*!
* \brief Structure describing element type
*/
//-------------------------------------------------------
struct TElemTypeData
{
EEntiteMaillage _entity;
EGeometrieElement _geomType;
TInt _nbElems;
SMDSAbs_ElementType _smdsType;
TElemTypeData (EEntiteMaillage entity, EGeometrieElement geom, TInt nb, SMDSAbs_ElementType type)
: _entity(entity), _geomType(geom), _nbElems( nb ), _smdsType( type ) {}
};
typedef NCollection_DataMap< Standard_Address, int > TElemFamilyMap;
//typedef map<const SMDS_MeshElement *, int> TElemFamilyMap;
//================================================================================
/*!
* \brief Fills element to famaly ID map for element type.
* Removes all families of anElemType
*/
//================================================================================
void fillElemFamilyMap( TElemFamilyMap & anElemFamMap,
list<DriverMED_FamilyPtr> & aFamilies,
const SMDSAbs_ElementType anElemType)
{
anElemFamMap.Clear();
//anElemFamMap.clear();
list<DriverMED_FamilyPtr>::iterator aFamsIter = aFamilies.begin();
while ( aFamsIter != aFamilies.end() )
{
if ((*aFamsIter)->GetType() != anElemType) {
aFamsIter++;
}
else {
int aFamId = (*aFamsIter)->GetId();
const set<const SMDS_MeshElement *>& anElems = (*aFamsIter)->GetElements();
set<const SMDS_MeshElement *>::const_iterator anElemsIter = anElems.begin();
for (; anElemsIter != anElems.end(); anElemsIter++)
{
anElemFamMap.Bind( (Standard_Address)*anElemsIter, aFamId );
//anElemFamMap[*anElemsIter] = aFamId;
}
// remove a family from the list
aFamilies.erase( aFamsIter++ );
}
}
}
//================================================================================
/*!
* \brief For an element, return family ID found in the map or a default one
*/
//================================================================================
int getFamilyId( const TElemFamilyMap & anElemFamMap,
const SMDS_MeshElement* anElement,
const int aDefaultFamilyId)
{
if ( anElemFamMap.IsBound( (Standard_Address) anElement ))
return anElemFamMap( (Standard_Address) anElement );
// TElemFamilyMap::iterator elem_famNum = anElemFamMap.find( anElement );
// if ( elem_famNum != anElemFamMap.end() )
// return elem_famNum->second;
return aDefaultFamilyId;
}
2005-01-20 11:25:54 +05:00
}
2004-07-20 13:56:05 +06:00
2004-12-01 15:48:31 +05:00
Driver_Mesh::Status DriverMED_W_SMESHDS_Mesh::Perform()
2004-06-18 14:34:31 +06:00
{
2004-12-01 15:48:31 +05:00
Status aResult = DRS_OK;
2004-06-18 14:34:31 +06:00
if (myMesh->hasConstructionEdges() || myMesh->hasConstructionFaces()) {
INFOS("SMDS_MESH with hasConstructionEdges() or hasConstructionFaces() do not supports!!!");
2004-12-01 15:48:31 +05:00
return DRS_FAIL;
2004-06-18 14:34:31 +06:00
}
2009-02-17 10:27:49 +05:00
try {
2004-12-01 15:48:31 +05:00
MESSAGE("Perform - myFile : "<<myFile);
2004-06-18 14:34:31 +06:00
// Creating the MED mesh for corresponding SMDS structure
//-------------------------------------------------------
string aMeshName;
if (myMeshId != -1) {
ostringstream aMeshNameStr;
aMeshNameStr<<myMeshId;
aMeshName = aMeshNameStr.str();
} else {
aMeshName = myMeshName;
}
2004-07-20 13:56:05 +06:00
// Mesh dimension definition
2005-01-20 11:25:54 +05:00
TInt aMeshDimension;
2004-07-20 13:56:05 +06:00
TCoordHelperPtr aCoordHelperPtr;
{
bool anIsXDimension = false;
bool anIsYDimension = false;
bool anIsZDimension = false;
{
SMDS_NodeIteratorPtr aNodesIter = myMesh->nodesIterator();
double aBounds[6];
if(aNodesIter->more()){
const SMDS_MeshNode* aNode = aNodesIter->next();
aBounds[0] = aBounds[1] = aNode->X();
aBounds[2] = aBounds[3] = aNode->Y();
aBounds[4] = aBounds[5] = aNode->Z();
}
while(aNodesIter->more()){
const SMDS_MeshNode* aNode = aNodesIter->next();
aBounds[0] = min(aBounds[0],aNode->X());
aBounds[1] = max(aBounds[1],aNode->X());
aBounds[2] = min(aBounds[2],aNode->Y());
aBounds[3] = max(aBounds[3],aNode->Y());
aBounds[4] = min(aBounds[4],aNode->Z());
aBounds[5] = max(aBounds[5],aNode->Z());
}
double EPS = 1.0E-7;
2004-12-17 16:07:35 +05:00
anIsXDimension = (aBounds[1] - aBounds[0]) + abs(aBounds[1]) + abs(aBounds[0]) > EPS;
anIsYDimension = (aBounds[3] - aBounds[2]) + abs(aBounds[3]) + abs(aBounds[2]) > EPS;
anIsZDimension = (aBounds[5] - aBounds[4]) + abs(aBounds[5]) + abs(aBounds[4]) > EPS;
2004-07-20 13:56:05 +06:00
aMeshDimension = anIsXDimension + anIsYDimension + anIsZDimension;
if(!aMeshDimension)
aMeshDimension = 3;
// PAL16857(SMESH not conform to the MED convention):
if ( aMeshDimension == 2 && anIsZDimension ) // 2D only if mesh is in XOY plane
aMeshDimension = 3;
// PAL18941(a saved study with a mesh belong Z is opened and the mesh is belong X)
if ( aMeshDimension == 1 && !anIsXDimension ) // 1D only if mesh is along OX
if ( anIsYDimension ) {
aMeshDimension = 2;
anIsXDimension = true;
} else {
aMeshDimension = 3;
}
2004-07-20 13:56:05 +06:00
}
SMDS_NodeIteratorPtr aNodesIter = myMesh->nodesIterator();
switch(aMeshDimension){
case 3:
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aXYZGetCoord,aXYZName));
break;
case 2:
if(anIsXDimension && anIsYDimension)
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aXYGetCoord,aXYName));
if(anIsYDimension && anIsZDimension)
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aYZGetCoord,aYZName));
if(anIsXDimension && anIsZDimension)
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aXZGetCoord,aXZName));
break;
case 1:
if(anIsXDimension)
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aXGetCoord,aXName));
if(anIsYDimension)
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aYGetCoord,aYName));
if(anIsZDimension)
aCoordHelperPtr.reset(new TCoordHelper(aNodesIter,aZGetCoord,aZName));
break;
}
}
2005-01-20 11:25:54 +05:00
PMeshInfo aMeshInfo = myMed->CrMeshInfo(aMeshDimension,aMeshName);
2004-06-18 14:34:31 +06:00
MESSAGE("Add - aMeshName : "<<aMeshName<<"; "<<aMeshInfo->GetName());
2005-01-20 11:25:54 +05:00
myMed->SetMeshInfo(aMeshInfo);
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
// Storing SMDS groups and sub-meshes as med families
//----------------------------------------------------
int myNodesDefaultFamilyId = 0;
int myEdgesDefaultFamilyId = 0;
int myFacesDefaultFamilyId = 0;
2004-06-18 14:34:31 +06:00
int myVolumesDefaultFamilyId = 0;
int nbNodes = myMesh->NbNodes();
int nbEdges = myMesh->NbEdges();
int nbFaces = myMesh->NbFaces();
int nbVolumes = myMesh->NbVolumes();
if (myDoGroupOfNodes && nbNodes)
2004-06-18 14:34:31 +06:00
myNodesDefaultFamilyId = REST_NODES_FAMILY;
if (myDoGroupOfEdges && nbEdges)
2004-06-18 14:34:31 +06:00
myEdgesDefaultFamilyId = REST_EDGES_FAMILY;
if (myDoGroupOfFaces && nbFaces)
2004-06-18 14:34:31 +06:00
myFacesDefaultFamilyId = REST_FACES_FAMILY;
if (myDoGroupOfVolumes && nbVolumes)
2004-06-18 14:34:31 +06:00
myVolumesDefaultFamilyId = REST_VOLUMES_FAMILY;
2004-12-01 15:48:31 +05:00
MESSAGE("Perform - aFamilyInfo");
2009-02-17 10:27:49 +05:00
//cout << " DriverMED_Family::MakeFamilies() " << endl;
2004-06-18 14:34:31 +06:00
list<DriverMED_FamilyPtr> aFamilies;
if (myAllSubMeshes) {
aFamilies = DriverMED_Family::MakeFamilies
2004-12-01 15:48:31 +05:00
(myMesh->SubMeshes(), myGroups,
myDoGroupOfNodes && nbNodes,
myDoGroupOfEdges && nbEdges,
myDoGroupOfFaces && nbFaces,
myDoGroupOfVolumes && nbVolumes);
2004-06-18 14:34:31 +06:00
} else {
aFamilies = DriverMED_Family::MakeFamilies
(mySubMeshes, myGroups,
myDoGroupOfNodes && nbNodes,
myDoGroupOfEdges && nbEdges,
myDoGroupOfFaces && nbFaces,
myDoGroupOfVolumes && nbVolumes);
2004-06-18 14:34:31 +06:00
}
2009-02-17 10:27:49 +05:00
//cout << " myMed->SetFamilyInfo() " << endl;
list<DriverMED_FamilyPtr>::iterator aFamsIter;
for (aFamsIter = aFamilies.begin(); aFamsIter != aFamilies.end(); aFamsIter++)
2004-06-18 14:34:31 +06:00
{
2005-01-20 11:25:54 +05:00
PFamilyInfo aFamilyInfo = (*aFamsIter)->GetFamilyInfo(myMed,aMeshInfo);
myMed->SetFamilyInfo(aFamilyInfo);
2004-06-18 14:34:31 +06:00
}
// Storing SMDS nodes to the MED file for the MED mesh
//----------------------------------------------------
2004-07-20 13:56:05 +06:00
#ifdef _EDF_NODE_IDS_
2005-01-20 11:25:54 +05:00
typedef map<TInt,TInt> TNodeIdMap;
2004-06-18 14:34:31 +06:00
TNodeIdMap aNodeIdMap;
2004-07-20 13:56:05 +06:00
#endif
2009-02-17 10:27:49 +05:00
const EModeSwitch theMode = eFULL_INTERLACE;
const ERepere theSystem = eCART;
const EBooleen theIsElemNum = eVRAI;
const EBooleen theIsElemNames = eFAUX;
const EConnectivite theConnMode = eNOD;
TInt aNbNodes = myMesh->NbNodes();
//cout << " myMed->CrNodeInfo() aNbNodes = " << aNbNodes << endl;
PNodeInfo aNodeInfo = myMed->CrNodeInfo(aMeshInfo, aNbNodes,
theMode, theSystem, theIsElemNum, theIsElemNames);
//cout << " fillElemFamilyMap( SMDSAbs_Node )" << endl;
// find family numbers for nodes
TElemFamilyMap anElemFamMap;
fillElemFamilyMap( anElemFamMap, aFamilies, SMDSAbs_Node );
for (TInt iNode = 0; aCoordHelperPtr->Next(); iNode++)
{
// coordinates
TCoordSlice aTCoordSlice = aNodeInfo->GetCoordSlice( iNode );
2005-01-20 11:25:54 +05:00
for(TInt iCoord = 0; iCoord < aMeshDimension; iCoord++){
2009-02-17 10:27:49 +05:00
aTCoordSlice[iCoord] = aCoordHelperPtr->GetCoord(iCoord);
2004-07-20 13:56:05 +06:00
}
2009-02-17 10:27:49 +05:00
// node number
2004-07-20 13:56:05 +06:00
int aNodeID = aCoordHelperPtr->GetID();
2009-02-17 10:27:49 +05:00
aNodeInfo->SetElemNum( iNode, aNodeID );
2004-07-20 13:56:05 +06:00
#ifdef _EDF_NODE_IDS_
aNodeIdMap[aNodeID] = iNode+1;
#endif
2009-02-17 10:27:49 +05:00
// family number
2004-07-20 13:56:05 +06:00
const SMDS_MeshNode* aNode = aCoordHelperPtr->GetNode();
2009-02-17 10:27:49 +05:00
int famNum = getFamilyId( anElemFamMap, aNode, myNodesDefaultFamilyId );
aNodeInfo->SetFamNum( iNode, famNum );
2004-06-18 14:34:31 +06:00
}
2009-02-17 10:27:49 +05:00
anElemFamMap.Clear();
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
// coordinate names and units
for (TInt iCoord = 0; iCoord < aMeshDimension; iCoord++) {
aNodeInfo->SetCoordName( iCoord, aCoordHelperPtr->GetName(iCoord));
aNodeInfo->SetCoordUnit( iCoord, aCoordHelperPtr->GetUnit(iCoord));
2004-07-20 13:56:05 +06:00
}
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
//cout << " SetNodeInfo(aNodeInfo)" << endl;
MESSAGE("Perform - aNodeInfo->GetNbElem() = "<<aNbNodes);
2005-01-20 11:25:54 +05:00
myMed->SetNodeInfo(aNodeInfo);
2009-02-17 10:27:49 +05:00
aNodeInfo.reset(); // free memory used for arrays
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
// Storing SMDS elements to the MED file for the MED mesh
//-------------------------------------------------------
// Write one element type at once in order to minimize memory usage (PAL19276)
const SMDS_MeshInfo& nbElemInfo = myMesh->GetMeshInfo();
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
// poly elements are not supported by med-2.1
bool polyTypesSupported = myMed->CrPolygoneInfo(aMeshInfo,eMAILLE,ePOLYGONE,0,0);
TInt nbPolygonNodes = 0, nbPolyhedronNodes = 0, nbPolyhedronFaces = 0;
// collect info on all geom types
list< TElemTypeData > aTElemTypeDatas;
EEntiteMaillage anEntity = eMAILLE;
2004-07-20 13:56:05 +06:00
#ifdef _ELEMENTS_BY_DIM_
2009-02-17 10:27:49 +05:00
anEntity = eARETE;
2004-07-20 13:56:05 +06:00
#endif
2009-02-17 10:27:49 +05:00
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eSEG2,
nbElemInfo.NbEdges( ORDER_LINEAR ),
SMDSAbs_Edge));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eSEG3,
nbElemInfo.NbEdges( ORDER_QUADRATIC ),
SMDSAbs_Edge));
#ifdef _ELEMENTS_BY_DIM_
anEntity = eFACE;
2004-07-20 13:56:05 +06:00
#endif
2009-02-17 10:27:49 +05:00
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eTRIA3,
nbElemInfo.NbTriangles( ORDER_LINEAR ),
SMDSAbs_Face));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eTRIA6,
nbElemInfo.NbTriangles( ORDER_QUADRATIC ),
SMDSAbs_Face));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eQUAD4,
nbElemInfo.NbQuadrangles( ORDER_LINEAR ),
SMDSAbs_Face));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eQUAD8,
nbElemInfo.NbQuadrangles( ORDER_QUADRATIC ),
SMDSAbs_Face));
if ( polyTypesSupported ) {
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePOLYGONE,
nbElemInfo.NbPolygons(),
SMDSAbs_Face));
// we need one more loop on poly elements to count nb of their nodes
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePOLYGONE,
nbElemInfo.NbPolygons(),
SMDSAbs_Face));
}
#ifdef _ELEMENTS_BY_DIM_
anEntity = eMAILLE;
#endif
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eTETRA4,
nbElemInfo.NbTetras( ORDER_LINEAR ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eTETRA10,
nbElemInfo.NbTetras( ORDER_QUADRATIC ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePYRA5,
nbElemInfo.NbPyramids( ORDER_LINEAR ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePYRA13,
nbElemInfo.NbPyramids( ORDER_QUADRATIC ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePENTA6,
nbElemInfo.NbPrisms( ORDER_LINEAR ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePENTA15,
nbElemInfo.NbPrisms( ORDER_QUADRATIC ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eHEXA8,
nbElemInfo.NbHexas( ORDER_LINEAR ),
SMDSAbs_Volume));
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
eHEXA20,
nbElemInfo.NbHexas( ORDER_QUADRATIC ),
SMDSAbs_Volume));
if ( polyTypesSupported ) {
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePOLYEDRE,
nbElemInfo.NbPolyhedrons(),
SMDSAbs_Volume));
// we need one more loop on poly elements to count nb of their nodes
aTElemTypeDatas.push_back( TElemTypeData(anEntity,
ePOLYEDRE,
nbElemInfo.NbPolyhedrons(),
SMDSAbs_Volume));
}
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
vector< bool > isElemFamMapBuilt( SMDSAbs_NbElementTypes, false );
2009-02-17 10:27:49 +05:00
// loop on all geom types of elements
list< TElemTypeData >::iterator aElemTypeData = aTElemTypeDatas.begin();
for ( ; aElemTypeData != aTElemTypeDatas.end(); ++aElemTypeData )
{
if ( aElemTypeData->_nbElems == 0 )
continue;
// iterator on elements of a current type
PElemIterator elemIterator;
int defaultFamilyId = 0;
switch ( aElemTypeData->_smdsType ) {
case SMDSAbs_Edge:
elemIterator = PElemIterator( new TEdgeIterator( myMesh->edgesIterator() ));
defaultFamilyId = myEdgesDefaultFamilyId;
break;
case SMDSAbs_Face:
elemIterator = PElemIterator( new TFaceIterator( myMesh->facesIterator() ));
defaultFamilyId = myFacesDefaultFamilyId;
break;
case SMDSAbs_Volume:
elemIterator = PElemIterator( new TVolumeIterator( myMesh->volumesIterator() ));
defaultFamilyId = myVolumesDefaultFamilyId;
break;
default:
continue;
}
2009-02-17 10:27:49 +05:00
int iElem = 0;
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
//cout << " Treat type " << aElemTypeData->_geomType << " nb = " <<aElemTypeData->_nbElems<< endl;
// Treat POLYGONs
// ---------------
if ( aElemTypeData->_geomType == ePOLYGONE )
{
if ( nbPolygonNodes == 0 ) {
// Count nb of nodes
while ( const SMDS_MeshElement* anElem = elemIterator->next() ) {
if ( anElem->IsPoly() ) {
nbPolygonNodes += anElem->NbNodes();
if ( ++iElem == aElemTypeData->_nbElems )
break;
}
}
}
2009-02-17 10:27:49 +05:00
else {
// Store in med file
PPolygoneInfo aPolygoneInfo = myMed->CrPolygoneInfo(aMeshInfo,
aElemTypeData->_entity,
aElemTypeData->_geomType,
aElemTypeData->_nbElems,
nbPolygonNodes,
theConnMode, theIsElemNum,
theIsElemNames);
TElemNum & index = *(aPolygoneInfo->myIndex.get());
index[0] = 1;
while ( const SMDS_MeshElement* anElem = elemIterator->next() )
{
if ( !anElem->IsPoly() )
continue;
// index
TInt aNbNodes = anElem->NbNodes();
index[ iElem+1 ] = index[ iElem ] + aNbNodes;
// connectivity
TConnSlice aTConnSlice = aPolygoneInfo->GetConnSlice( iElem );
for(TInt iNode = 0; iNode < aNbNodes; iNode++) {
const SMDS_MeshElement* aNode = anElem->GetNode( iNode );
#ifdef _EDF_NODE_IDS_
2009-02-17 10:27:49 +05:00
aTConnSlice[ iNode ] = aNodeIdMap[aNode->GetID()];
#else
2009-02-17 10:27:49 +05:00
aTConnSlice[ iNode ] = aNode->GetID();
#endif
2009-02-17 10:27:49 +05:00
}
// element number
aPolygoneInfo->SetElemNum( iElem, anElem->GetID() );
2003-09-04 18:03:27 +06:00
2009-02-17 10:27:49 +05:00
// family number
int famNum = getFamilyId( anElemFamMap, anElem, defaultFamilyId );
aPolygoneInfo->SetFamNum( iElem, famNum );
2009-02-17 10:27:49 +05:00
if ( ++iElem == aPolygoneInfo->GetNbElem() )
break;
}
// if(TInt aNbElems = aPolygoneElemNums.size())
// // add one element in connectivities,
// // referenced by the last element in indices
// aPolygoneConn.push_back(0);
//cout << " SetPolygoneInfo(aPolygoneInfo)" << endl;
myMed->SetPolygoneInfo(aPolygoneInfo);
}
2009-02-17 10:27:49 +05:00
}
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
// Treat POLYEDREs
// ----------------
else if (aElemTypeData->_geomType == ePOLYEDRE )
{
if ( nbPolyhedronNodes == 0 ) {
// Count nb of nodes
while ( const SMDS_MeshElement* anElem = elemIterator->next() ) {
const SMDS_PolyhedralVolumeOfNodes* aPolyedre =
dynamic_cast<const SMDS_PolyhedralVolumeOfNodes*>( anElem );
if ( aPolyedre ) {
nbPolyhedronNodes += aPolyedre->NbNodes();
nbPolyhedronFaces += aPolyedre->NbFaces();
if ( ++iElem == aElemTypeData->_nbElems )
break;
}
}
2009-02-17 10:27:49 +05:00
}
else {
// Store in med file
PPolyedreInfo aPolyhInfo = myMed->CrPolyedreInfo(aMeshInfo,
aElemTypeData->_entity,
aElemTypeData->_geomType,
aElemTypeData->_nbElems,
nbPolyhedronFaces+1,
nbPolyhedronNodes,
theConnMode,
theIsElemNum,
theIsElemNames);
TElemNum & index = *(aPolyhInfo->myIndex.get());
TElemNum & faces = *(aPolyhInfo->myFaces.get());
TElemNum & conn = *(aPolyhInfo->myConn.get());
index[0] = 1;
faces[0] = 1;
TInt iFace = 0, iNode = 0;
while ( const SMDS_MeshElement* anElem = elemIterator->next() )
{
const SMDS_PolyhedralVolumeOfNodes* aPolyedre =
dynamic_cast<const SMDS_PolyhedralVolumeOfNodes*>( anElem );
if ( !aPolyedre )
continue;
// index
TInt aNbFaces = aPolyedre->NbFaces();
index[ iElem+1 ] = index[ iElem ] + aNbFaces;
// face index
for (TInt f = 1; f <= aNbFaces; ++f, ++iFace ) {
int aNbFaceNodes = aPolyedre->NbFaceNodes( f );
faces[ iFace+1 ] = faces[ iFace ] + aNbFaceNodes;
}
// connectivity
SMDS_ElemIteratorPtr nodeIt = anElem->nodesIterator();
while ( nodeIt->more() ) {
const SMDS_MeshElement* aNode = nodeIt->next();
2004-07-20 13:56:05 +06:00
#ifdef _EDF_NODE_IDS_
2009-02-17 10:27:49 +05:00
conn[ iNode ] = aNodeIdMap[aNode->GetID()];
2004-07-20 13:56:05 +06:00
#else
2009-02-17 10:27:49 +05:00
conn[ iNode ] = aNode->GetID();
2004-07-20 13:56:05 +06:00
#endif
2009-02-17 10:27:49 +05:00
++iNode;
}
2009-02-17 10:27:49 +05:00
// element number
aPolyhInfo->SetElemNum( iElem, anElem->GetID() );
// family number
int famNum = getFamilyId( anElemFamMap, anElem, defaultFamilyId );
aPolyhInfo->SetFamNum( iElem, famNum );
if ( ++iElem == aPolyhInfo->GetNbElem() )
break;
}
2009-02-17 10:27:49 +05:00
//cout << " SetPolyedreInfo(aPolyhInfo )" << endl;
myMed->SetPolyedreInfo(aPolyhInfo);
}
} // if (aElemTypeData->_geomType == ePOLYEDRE )
2009-02-17 10:27:49 +05:00
else
{
// Treat standard types
// ---------------------
// allocate data arrays
PCellInfo aCellInfo = myMed->CrCellInfo( aMeshInfo,
aElemTypeData->_entity,
aElemTypeData->_geomType,
aElemTypeData->_nbElems,
theConnMode,
theIsElemNum,
theIsElemNames);
// build map of family numbers for this type
if ( !isElemFamMapBuilt[ aElemTypeData->_smdsType ])
{
//cout << " fillElemFamilyMap()" << endl;
fillElemFamilyMap( anElemFamMap, aFamilies, aElemTypeData->_smdsType );
isElemFamMapBuilt[ aElemTypeData->_smdsType ] = true;
}
2009-02-17 10:27:49 +05:00
TInt aNbNodes = MED::GetNbNodes(aElemTypeData->_geomType);
while ( const SMDS_MeshElement* anElem = elemIterator->next() )
{
if ( anElem->NbNodes() != aNbNodes || anElem->IsPoly() )
continue; // other geometry
2009-02-17 10:27:49 +05:00
// connectivity
TConnSlice aTConnSlice = aCellInfo->GetConnSlice( iElem );
for (TInt iNode = 0; iNode < aNbNodes; iNode++) {
const SMDS_MeshElement* aNode = anElem->GetNode( iNode );
#ifdef _EDF_NODE_IDS_
2009-02-17 10:27:49 +05:00
aTConnSlice[ iNode ] = aNodeIdMap[aNode->GetID()];
#else
2009-02-17 10:27:49 +05:00
aTConnSlice[ iNode ] = aNode->GetID();
#endif
}
2009-02-17 10:27:49 +05:00
// element number
aCellInfo->SetElemNum( iElem, anElem->GetID() );
2009-02-17 10:27:49 +05:00
// family number
int famNum = getFamilyId( anElemFamMap, anElem, defaultFamilyId );
aCellInfo->SetFamNum( iElem, famNum );
2004-06-18 14:34:31 +06:00
2009-02-17 10:27:49 +05:00
if ( ++iElem == aCellInfo->GetNbElem() )
break;
}
// store data in a file
//cout << " SetCellInfo(aCellInfo)" << endl;
myMed->SetCellInfo(aCellInfo);
2004-06-18 14:34:31 +06:00
}
2009-02-17 10:27:49 +05:00
} // loop on geom types
}
catch(const std::exception& exc) {
2004-06-18 14:34:31 +06:00
INFOS("Follow exception was cought:\n\t"<<exc.what());
throw;
}
catch(...) {
2004-06-18 14:34:31 +06:00
INFOS("Unknown exception was cought !!!");
throw;
2004-06-18 14:34:31 +06:00
}
myMeshId = -1;
myGroups.clear();
mySubMeshes.clear();
2004-12-01 15:48:31 +05:00
return aResult;
2003-09-04 18:03:27 +06:00
}