mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
Merge branch 'master' into gni/evolution
This commit is contained in:
commit
e2954edea9
@ -366,6 +366,7 @@ EXPORT(TARGETS ${_${PROJECT_NAME}_exposed_targets}
|
|||||||
|
|
||||||
# Ensure the variables are always defined for the configure:
|
# Ensure the variables are always defined for the configure:
|
||||||
SET(GEOM_ROOT_DIR "${GEOM_ROOT_DIR}")
|
SET(GEOM_ROOT_DIR "${GEOM_ROOT_DIR}")
|
||||||
|
SET(MEDCOUPLING_ROOT_DIR "${MEDCOUPLING_ROOT_DIR}")
|
||||||
SET(MEDFILE_ROOT_DIR "${MEDFILE_ROOT_DIR}")
|
SET(MEDFILE_ROOT_DIR "${MEDFILE_ROOT_DIR}")
|
||||||
SET(CGNS_ROOT_DIR "${CGNS_ROOT_DIR}")
|
SET(CGNS_ROOT_DIR "${CGNS_ROOT_DIR}")
|
||||||
SET(TBB_ROOT_DIR "${TBB_ROOT_DIR}")
|
SET(TBB_ROOT_DIR "${TBB_ROOT_DIR}")
|
||||||
@ -373,13 +374,13 @@ SET(TBB_ROOT_DIR "${TBB_ROOT_DIR}")
|
|||||||
SET(CONF_INCLUDE_DIRS "${PROJECT_SOURCE_DIR}/include" "${PROJECT_BINARY_DIR}/include")
|
SET(CONF_INCLUDE_DIRS "${PROJECT_SOURCE_DIR}/include" "${PROJECT_BINARY_DIR}/include")
|
||||||
|
|
||||||
# Build variables that will be expanded when configuring Salome<MODULE>Config.cmake:
|
# Build variables that will be expanded when configuring Salome<MODULE>Config.cmake:
|
||||||
SALOME_CONFIGURE_PREPARE(CGNS TBB MEDFile)
|
SALOME_CONFIGURE_PREPARE(MEDCoupling CGNS TBB MEDFile)
|
||||||
|
|
||||||
CONFIGURE_PACKAGE_CONFIG_FILE(${PROJECT_NAME}Config.cmake.in
|
CONFIGURE_PACKAGE_CONFIG_FILE(${PROJECT_NAME}Config.cmake.in
|
||||||
${PROJECT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
|
${PROJECT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
|
||||||
INSTALL_DESTINATION "${SALOME_INSTALL_CMAKE_LOCAL}"
|
INSTALL_DESTINATION "${SALOME_INSTALL_CMAKE_LOCAL}"
|
||||||
PATH_VARS CONF_INCLUDE_DIRS SALOME_INSTALL_CMAKE_LOCAL CMAKE_INSTALL_PREFIX
|
PATH_VARS CONF_INCLUDE_DIRS SALOME_INSTALL_CMAKE_LOCAL CMAKE_INSTALL_PREFIX
|
||||||
GEOM_ROOT_DIR MEDFILE_ROOT_DIR CGNS_ROOT_DIR TBB_ROOT_DIR)
|
GEOM_ROOT_DIR MEDCOUPLING_ROOT_DIR MEDFILE_ROOT_DIR CGNS_ROOT_DIR TBB_ROOT_DIR)
|
||||||
|
|
||||||
WRITE_BASIC_PACKAGE_VERSION_FILE(${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
|
WRITE_BASIC_PACKAGE_VERSION_FILE(${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
|
||||||
VERSION ${${PROJECT_NAME_UC}_VERSION}
|
VERSION ${${PROJECT_NAME_UC}_VERSION}
|
||||||
|
@ -544,11 +544,15 @@ namespace
|
|||||||
ids[14],ids[13],ids[19],ids[18],ids[17],ids[16],
|
ids[14],ids[13],ids[19],ids[18],ids[17],ids[16],
|
||||||
ids[20],ids[24],ids[23],ids[22],ids[21],ids[25],ids[26], ID );
|
ids[20],ids[24],ids[23],ids[22],ids[21],ids[25],ids[26], ID );
|
||||||
}
|
}
|
||||||
SMDS_MeshElement* add_NGON(cgsize_t* ids, SMESHDS_Mesh* mesh, int ID)
|
SMDS_MeshElement* add_NGON(cgsize_t* ids, int nbNodes, SMESHDS_Mesh* mesh, int ID)
|
||||||
{
|
{
|
||||||
vector<int> idVec( ids[0] );
|
#if CGNS_VERSION < 4000
|
||||||
for ( int i = 0; i < ids[0]; ++i )
|
nbNodes = ids[0];
|
||||||
idVec[ i ] = (int) ids[ i + 1];
|
++ids;
|
||||||
|
#endif
|
||||||
|
vector<int> idVec( nbNodes );
|
||||||
|
for ( int i = 0; i < nbNodes; ++i )
|
||||||
|
idVec[ i ] = (int) ids[ i ];
|
||||||
return mesh->AddPolygonalFaceWithID( idVec, ID );
|
return mesh->AddPolygonalFaceWithID( idVec, ID );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -585,7 +589,7 @@ namespace
|
|||||||
funVec[ CGNS_ENUMV( HEXA_8 )] = add_HEXA_8 ;
|
funVec[ CGNS_ENUMV( HEXA_8 )] = add_HEXA_8 ;
|
||||||
funVec[ CGNS_ENUMV( HEXA_20 )] = add_HEXA_20 ;
|
funVec[ CGNS_ENUMV( HEXA_20 )] = add_HEXA_20 ;
|
||||||
funVec[ CGNS_ENUMV( HEXA_27 )] = add_HEXA_27 ;
|
funVec[ CGNS_ENUMV( HEXA_27 )] = add_HEXA_27 ;
|
||||||
funVec[ CGNS_ENUMV( NGON_n )] = add_NGON ;
|
//funVec[ CGNS_ENUMV( NGON_n )] = add_NGON ;
|
||||||
}
|
}
|
||||||
return &funVec[0];
|
return &funVec[0];
|
||||||
}
|
}
|
||||||
@ -854,16 +858,34 @@ Driver_Mesh::Status DriverCGNS_Read::Perform()
|
|||||||
addMessage( cg_get_error() );
|
addMessage( cg_get_error() );
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
vector< cgsize_t > elemData( eDataSize );
|
vector< cgsize_t > elemData( eDataSize ), polyOffset;
|
||||||
if ( cg_elements_read( _fn, cgnsBase, iZone, iSec, &elemData[0], NULL ) != CG_OK )
|
#if CGNS_VERSION >= 4000
|
||||||
|
if ( elemType == CGNS_ENUMV( MIXED ) ||
|
||||||
|
elemType == CGNS_ENUMV( NGON_n ) ||
|
||||||
|
elemType == CGNS_ENUMV( NFACE_n ))
|
||||||
{
|
{
|
||||||
addMessage( cg_get_error() );
|
polyOffset.resize( end - start + 2 );
|
||||||
continue;
|
if ( cg_poly_elements_read( _fn, cgnsBase, iZone, iSec,
|
||||||
|
elemData.data(), polyOffset.data(), NULL ) != CG_OK )
|
||||||
|
{
|
||||||
|
addMessage( cg_get_error() );
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
if ( cg_elements_read( _fn, cgnsBase, iZone, iSec, elemData.data(), NULL ) != CG_OK )
|
||||||
|
{
|
||||||
|
addMessage( cg_get_error() );
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// store elements
|
// store elements
|
||||||
|
|
||||||
MESSAGE(" store elements");
|
MESSAGE(" store elements");
|
||||||
int pos = 0, cgnsNbNodes = 0, elemID = start + zone._elemIdShift;
|
int pos = 0, cgnsNbNodes = 0, elemID = start + zone._elemIdShift;
|
||||||
|
size_t iElem = 0;
|
||||||
cg_npe( elemType, &cgnsNbNodes ); // get nb nodes by element type
|
cg_npe( elemType, &cgnsNbNodes ); // get nb nodes by element type
|
||||||
curAddElemFun = addElemFuns[ elemType ];
|
curAddElemFun = addElemFuns[ elemType ];
|
||||||
SMDS_MeshElement* newElem = 0;
|
SMDS_MeshElement* newElem = 0;
|
||||||
@ -885,11 +907,20 @@ Driver_Mesh::Status DriverCGNS_Read::Perform()
|
|||||||
{
|
{
|
||||||
if ( currentType == CGNS_ENUMV( NFACE_n )) // polyhedron
|
if ( currentType == CGNS_ENUMV( NFACE_n )) // polyhedron
|
||||||
{
|
{
|
||||||
//ElementConnectivity = Nfaces1, Face11, Face21, ... FaceN1,
|
int nbFaces = 0;
|
||||||
// Nfaces2, Face12, Face22, ... FaceN2,
|
if ( polyOffset.empty() )
|
||||||
// ...
|
//ElementConnectivity = Nfaces1, Face11, Face21, ... FaceN1,
|
||||||
// NfacesM, Face1M, Face2M, ... FaceNM
|
// Nfaces2, Face12, Face22, ... FaceN2,
|
||||||
const int nbFaces = elemData[ pos++ ];
|
// ...
|
||||||
|
// NfacesM, Face1M, Face2M, ... FaceNM
|
||||||
|
nbFaces = elemData[ pos++ ];
|
||||||
|
else // CGNS_VERSION >= 4000
|
||||||
|
// ElementConnectivity = Face11, Face21, ... FaceN1,
|
||||||
|
// Face12, Face22, ... FaceN2,
|
||||||
|
// ...
|
||||||
|
// Face1M, Face2M, ... FaceNM
|
||||||
|
nbFaces = polyOffset[ iElem + 1 ] - polyOffset[ iElem ];
|
||||||
|
|
||||||
vector<int> quantities( nbFaces );
|
vector<int> quantities( nbFaces );
|
||||||
vector<const SMDS_MeshNode*> nodes, faceNodes;
|
vector<const SMDS_MeshNode*> nodes, faceNodes;
|
||||||
nodes.reserve( nbFaces * 4 );
|
nodes.reserve( nbFaces * 4 );
|
||||||
@ -924,14 +955,23 @@ Driver_Mesh::Status DriverCGNS_Read::Perform()
|
|||||||
}
|
}
|
||||||
else if ( currentType == CGNS_ENUMV( NGON_n )) // polygon
|
else if ( currentType == CGNS_ENUMV( NGON_n )) // polygon
|
||||||
{
|
{
|
||||||
// ElementConnectivity = Nnodes1, Node11, Node21, ... NodeN1,
|
int nbNodes;
|
||||||
// Nnodes2, Node12, Node22, ... NodeN2,
|
if ( polyOffset.empty() )
|
||||||
// ...
|
// ElementConnectivity = Nnodes1, Node11, Node21, ... NodeN1,
|
||||||
// NnodesM, Node1M, Node2M, ... NodeNM
|
// Nnodes2, Node12, Node22, ... NodeN2,
|
||||||
const int nbNodes = elemData[ pos ];
|
// ...
|
||||||
zone.ReplaceNodes( &elemData[pos+1], nbNodes, zone._nodeIdShift );
|
// NnodesM, Node1M, Node2M, ... NodeNM
|
||||||
newElem = add_NGON( &elemData[pos ], myMesh, elemID );
|
nbNodes = elemData[ pos ];
|
||||||
pos += nbNodes + 1;
|
else // CGNS_VERSION >= 4000
|
||||||
|
// ElementConnectivity = Node11, Node21, ... NodeN1,
|
||||||
|
// Node12, Node22, ... NodeN2,
|
||||||
|
// ...
|
||||||
|
// Node1M, Node2M, ... NodeNM
|
||||||
|
nbNodes = polyOffset[ iElem + 1 ] - polyOffset[ iElem ];
|
||||||
|
|
||||||
|
zone.ReplaceNodes( &elemData[ pos + polyOffset.empty()], nbNodes, zone._nodeIdShift );
|
||||||
|
newElem = add_NGON( &elemData[ pos ], nbNodes, myMesh, elemID );
|
||||||
|
pos += nbNodes + polyOffset.empty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else // standard elements
|
else // standard elements
|
||||||
@ -942,6 +982,7 @@ Driver_Mesh::Status DriverCGNS_Read::Perform()
|
|||||||
nbNotSuppElem += int( newElem && newElem->NbNodes() != cgnsNbNodes );
|
nbNotSuppElem += int( newElem && newElem->NbNodes() != cgnsNbNodes );
|
||||||
}
|
}
|
||||||
elemID++;
|
elemID++;
|
||||||
|
iElem++;
|
||||||
|
|
||||||
} // loop on elemData
|
} // loop on elemData
|
||||||
} // loop on cgns sections
|
} // loop on cgns sections
|
||||||
|
@ -233,6 +233,25 @@ namespace
|
|||||||
return ( e2id == elem2cgID.end() ? elem->GetID() : e2id->second );
|
return ( e2id == elem2cgID.end() ? elem->GetID() : e2id->second );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief save nb nodes of a polygon
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
void addPolySize( const cgsize_t nbNodes,
|
||||||
|
std::vector< cgsize_t >& elemData,
|
||||||
|
std::vector< cgsize_t >& polyOffset )
|
||||||
|
{
|
||||||
|
#if CGNS_VERSION < 4100
|
||||||
|
elemData.push_back( nbNodes );
|
||||||
|
polyOffset.clear(); // just avoid warning: unused parameter
|
||||||
|
#else
|
||||||
|
polyOffset.push_back((cgsize_t) elemData.size() );
|
||||||
|
(void)nbNodes; // avoid warning: unused parameter
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
@ -335,7 +354,7 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
|
|
||||||
// write into a section all successive elements of one geom type
|
// write into a section all successive elements of one geom type
|
||||||
int iSec;
|
int iSec;
|
||||||
vector< cgsize_t > elemData;
|
vector< cgsize_t > elemData, polyOffset;
|
||||||
SMDS_ElemIteratorPtr elemIt = myMesh->elementsIterator();
|
SMDS_ElemIteratorPtr elemIt = myMesh->elementsIterator();
|
||||||
vector< SMDS_ElemIteratorPtr > elemItVec;
|
vector< SMDS_ElemIteratorPtr > elemItVec;
|
||||||
if ( _elementsByType )
|
if ( _elementsByType )
|
||||||
@ -384,7 +403,7 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
else if ( elemType == SMDSEntity_Polygon ) // POLYGONS
|
else if ( elemType == SMDSEntity_Polygon ) // POLYGONS
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
elemData.push_back( elem->NbNodes() );
|
addPolySize( elem->NbNodes(), elemData, polyOffset );
|
||||||
for ( int i = 0, nb = elem->NbNodes(); i < nb; ++i )
|
for ( int i = 0, nb = elem->NbNodes(); i < nb; ++i )
|
||||||
elemData.push_back( cgnsID( elem->GetNode(i), n2cgID ));
|
elemData.push_back( cgnsID( elem->GetNode(i), n2cgID ));
|
||||||
if ( elem->GetID() != cgID )
|
if ( elem->GetID() != cgID )
|
||||||
@ -397,7 +416,7 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
else if ( elemType == SMDSEntity_Quad_Polygon ) // QUADRATIC POLYGONS
|
else if ( elemType == SMDSEntity_Quad_Polygon ) // QUADRATIC POLYGONS
|
||||||
do // write as linear NGON_n
|
do // write as linear NGON_n
|
||||||
{
|
{
|
||||||
elemData.push_back( elem->NbNodes() );
|
addPolySize( elem->NbNodes(), elemData, polyOffset );
|
||||||
interlace = & SMDS_MeshCell::interlacedSmdsOrder( SMDSEntity_Quad_Polygon,
|
interlace = & SMDS_MeshCell::interlacedSmdsOrder( SMDSEntity_Quad_Polygon,
|
||||||
elem->NbNodes() )[0];
|
elem->NbNodes() )[0];
|
||||||
for ( int i = 0, nb = elem->NbNodes(); i < nb; ++i )
|
for ( int i = 0, nb = elem->NbNodes(); i < nb; ++i )
|
||||||
@ -433,9 +452,23 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
SMESH_Comment sectionName( cg_ElementTypeName( cgType ));
|
SMESH_Comment sectionName( cg_ElementTypeName( cgType ));
|
||||||
sectionName << " " << startID << " - " << cgID-1;
|
sectionName << " " << startID << " - " << cgID-1;
|
||||||
|
|
||||||
if ( cg_section_write(_fn, iBase, iZone, sectionName.c_str(), cgType, startID,
|
|
||||||
cgID-1, /*nbndry=*/0, &elemData[0], &iSec) != CG_OK )
|
#if CGNS_VERSION >= 4000
|
||||||
return addMessage( cg_get_error(), /*fatal = */true );
|
if ( !polyOffset.empty() )
|
||||||
|
{
|
||||||
|
polyOffset.push_back((cgsize_t) elemData.size() );
|
||||||
|
if ( cg_poly_section_write(_fn, iBase, iZone, sectionName.c_str(), cgType, startID,
|
||||||
|
cgID-1, /*nbndry=*/0,
|
||||||
|
elemData.data(), polyOffset.data(), &iSec) != CG_OK )
|
||||||
|
return addMessage( cg_get_error(), /*fatal = */true );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
if ( cg_section_write(_fn, iBase, iZone, sectionName.c_str(), cgType, startID,
|
||||||
|
cgID-1, /*nbndry=*/0, elemData.data(), &iSec) != CG_OK )
|
||||||
|
return addMessage( cg_get_error(), /*fatal = */true );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write polyhedral volumes
|
// Write polyhedral volumes
|
||||||
@ -450,11 +483,13 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
set< TPolyhedFace > faces;
|
set< TPolyhedFace > faces;
|
||||||
set< TPolyhedFace >::iterator faceInSet;
|
set< TPolyhedFace >::iterator faceInSet;
|
||||||
vector<const SMDS_MeshNode *> faceNodesVec;
|
vector<const SMDS_MeshNode *> faceNodesVec;
|
||||||
|
vector< cgsize_t > faceOffset;
|
||||||
int nbPolygones = 0, faceID;
|
int nbPolygones = 0, faceID;
|
||||||
|
|
||||||
SMDS_VolumeTool vol;
|
SMDS_VolumeTool vol;
|
||||||
|
|
||||||
elemData.clear();
|
elemData.clear();
|
||||||
|
polyOffset.clear();
|
||||||
|
|
||||||
int nbPolyhTreated = 0;
|
int nbPolyhTreated = 0;
|
||||||
|
|
||||||
@ -473,7 +508,7 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
vol.Set( elem );
|
vol.Set( elem );
|
||||||
vol.SetExternalNormal();
|
vol.SetExternalNormal();
|
||||||
const int nbFaces = vol.NbFaces();
|
const int nbFaces = vol.NbFaces();
|
||||||
elemData.push_back( nbFaces );
|
addPolySize( nbFaces, elemData, polyOffset );
|
||||||
for ( int iF = 0; iF < nbFaces; ++iF )
|
for ( int iF = 0; iF < nbFaces; ++iF )
|
||||||
{
|
{
|
||||||
const int nbNodes = vol.NbFaceNodes( iF );
|
const int nbNodes = vol.NbFaceNodes( iF );
|
||||||
@ -489,7 +524,7 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
// the face is not shared by volumes
|
// the face is not shared by volumes
|
||||||
faceID = cgID++;
|
faceID = cgID++;
|
||||||
++nbPolygones;
|
++nbPolygones;
|
||||||
faceData.push_back( nbNodes );
|
addPolySize( nbNodes, faceData, faceOffset );
|
||||||
for ( int i = 0; i < nbNodes; ++i )
|
for ( int i = 0; i < nbNodes; ++i )
|
||||||
faceData.push_back( cgnsID( faceNodes[i], n2cgID ));
|
faceData.push_back( cgnsID( faceNodes[i], n2cgID ));
|
||||||
}
|
}
|
||||||
@ -501,7 +536,7 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
{
|
{
|
||||||
faceID = cgID++;
|
faceID = cgID++;
|
||||||
++nbPolygones;
|
++nbPolygones;
|
||||||
faceData.push_back( nbNodes );
|
addPolySize( nbNodes, faceData, faceOffset );
|
||||||
for ( int i = 0; i < nbNodes; ++i )
|
for ( int i = 0; i < nbNodes; ++i )
|
||||||
faceData.push_back( cgnsID( faceNodes[i], n2cgID ));
|
faceData.push_back( cgnsID( faceNodes[i], n2cgID ));
|
||||||
}
|
}
|
||||||
@ -518,18 +553,35 @@ Driver_Mesh::Status DriverCGNS_Write::Perform()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if CGNS_VERSION >= 4000
|
||||||
|
if ( nbPolygones > 0 )
|
||||||
|
{
|
||||||
|
faceOffset.push_back((cgsize_t) faceData.size() );
|
||||||
|
if ( cg_poly_section_write(_fn, iBase, iZone, "Faces of Polyhedrons", CGNS_ENUMV( NGON_n ),
|
||||||
|
cgID - nbPolygones, cgID-1, /*nbndry=*/0,
|
||||||
|
faceData.data(), faceOffset.data(), &iSec) != CG_OK )
|
||||||
|
return addMessage( cg_get_error(), /*fatal = */true );
|
||||||
|
}
|
||||||
|
|
||||||
|
polyOffset.push_back((cgsize_t) elemData.size() );
|
||||||
|
if ( cg_poly_section_write(_fn, iBase, iZone, "Polyhedrons",
|
||||||
|
CGNS_ENUMV( NFACE_n ), cgID, cgID+nbPolyhTreated-1,
|
||||||
|
/*nbndry=*/0, &elemData[0], polyOffset.data(), &iSec) != CG_OK )
|
||||||
|
return addMessage( cg_get_error(), /*fatal = */true );
|
||||||
|
#else
|
||||||
if ( nbPolygones > 0 )
|
if ( nbPolygones > 0 )
|
||||||
{
|
{
|
||||||
if ( cg_section_write(_fn, iBase, iZone, "Faces of Polyhedrons",
|
if ( cg_section_write(_fn, iBase, iZone, "Faces of Polyhedrons",
|
||||||
CGNS_ENUMV( NGON_n ), cgID - nbPolygones, cgID-1,
|
CGNS_ENUMV( NGON_n ), cgID - nbPolygones, cgID-1,
|
||||||
/*nbndry=*/0, &faceData[0], &iSec) != CG_OK )
|
/*nbndry=*/0, &faceData[0], &iSec) != CG_OK )
|
||||||
return addMessage( cg_get_error(), /*fatal = */true );
|
return addMessage( cg_get_error(), /*fatal = */true );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( cg_section_write(_fn, iBase, iZone, "Polyhedrons",
|
if ( cg_section_write(_fn, iBase, iZone, "Polyhedrons",
|
||||||
CGNS_ENUMV( NFACE_n ), cgID, cgID+nbPolyhTreated-1,
|
CGNS_ENUMV( NFACE_n ), cgID, cgID+nbPolyhTreated-1,
|
||||||
/*nbndry=*/0, &elemData[0], &iSec) != CG_OK )
|
/*nbndry=*/0, &elemData[0], &iSec) != CG_OK )
|
||||||
return addMessage( cg_get_error(), /*fatal = */true );
|
return addMessage( cg_get_error(), /*fatal = */true );
|
||||||
|
#endif
|
||||||
|
|
||||||
if ( !myMesh->GetGroups().empty() )
|
if ( !myMesh->GetGroups().empty() )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user