2010-05-14 15:49:35 +00:00
|
|
|
// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
|
2006-05-06 08:54:13 +00:00
|
|
|
//
|
2009-02-17 07:15:34 +00:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2006-05-06 08:54:13 +00:00
|
|
|
//
|
2009-02-17 07:15:34 +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
|
|
|
|
// version 2.1 of the License.
|
2006-05-06 08:54:13 +00:00
|
|
|
//
|
2009-02-17 07:15:34 +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.
|
2006-05-06 08:54:13 +00:00
|
|
|
//
|
2009-02-17 07:15:34 +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
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2006-05-06 08:54:13 +00:00
|
|
|
//
|
2010-05-14 15:49:35 +00:00
|
|
|
|
2004-03-26 07:05:19 +00:00
|
|
|
//=============================================================================
|
|
|
|
// File : NETGENPlugin_NETGEN_3D.cxx
|
|
|
|
// Moved here from SMESH_NETGEN_3D.cxx
|
|
|
|
// Created : lundi 27 Janvier 2003
|
|
|
|
// Author : Nadir BOUHAMOU (CEA)
|
|
|
|
// Project : SALOME
|
|
|
|
//=============================================================================
|
2009-02-17 07:15:34 +00:00
|
|
|
//
|
2004-03-26 07:05:19 +00:00
|
|
|
#include "NETGENPlugin_NETGEN_3D.hxx"
|
2005-05-18 07:29:05 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
#include "NETGENPlugin_Mesher.hxx"
|
2008-03-07 07:47:18 +00:00
|
|
|
|
2004-03-26 07:05:19 +00:00
|
|
|
#include "SMDS_MeshElement.hxx"
|
|
|
|
#include "SMDS_MeshNode.hxx"
|
2008-03-07 07:47:18 +00:00
|
|
|
#include "SMESHDS_Mesh.hxx"
|
|
|
|
#include "SMESH_Comment.hxx"
|
|
|
|
#include "SMESH_ControlsDef.hxx"
|
|
|
|
#include "SMESH_Gen.hxx"
|
|
|
|
#include "SMESH_Mesh.hxx"
|
2009-03-10 16:36:42 +00:00
|
|
|
#include "SMESH_MeshEditor.hxx"
|
2011-01-18 12:25:36 +00:00
|
|
|
#include "SMESH_MesherHelper.hxx"
|
2010-12-24 08:22:38 +00:00
|
|
|
#include "StdMeshers_MaxElementVolume.hxx"
|
2011-01-18 12:25:36 +00:00
|
|
|
#include "StdMeshers_QuadToTriaAdaptor.hxx"
|
|
|
|
#include "StdMeshers_ViscousLayers.hxx"
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
#include <BRepGProp.hxx>
|
2005-11-16 06:52:27 +00:00
|
|
|
#include <BRep_Tool.hxx>
|
2009-06-29 13:17:40 +00:00
|
|
|
#include <GProp_GProps.hxx>
|
2005-12-20 14:07:13 +00:00
|
|
|
#include <TopExp.hxx>
|
|
|
|
#include <TopExp_Explorer.hxx>
|
2010-05-14 15:49:35 +00:00
|
|
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
2005-12-20 14:07:13 +00:00
|
|
|
#include <TopoDS.hxx>
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2008-03-07 07:47:18 +00:00
|
|
|
#include <Standard_Failure.hxx>
|
|
|
|
#include <Standard_ErrorHandler.hxx>
|
|
|
|
|
2004-03-26 07:05:19 +00:00
|
|
|
#include "utilities.h"
|
|
|
|
|
2005-05-18 07:29:05 +00:00
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
|
2004-03-26 07:05:19 +00:00
|
|
|
/*
|
|
|
|
Netgen include files
|
|
|
|
*/
|
|
|
|
|
2011-02-17 14:41:02 +00:00
|
|
|
#ifndef OCCGEOMETRY
|
2010-05-14 15:49:35 +00:00
|
|
|
#define OCCGEOMETRY
|
2011-02-17 14:41:02 +00:00
|
|
|
#endif
|
2010-05-14 15:49:35 +00:00
|
|
|
#include <occgeom.hpp>
|
2006-05-06 08:54:13 +00:00
|
|
|
namespace nglib {
|
|
|
|
#include <nglib.h>
|
|
|
|
}
|
|
|
|
using namespace nglib;
|
2009-03-10 16:36:42 +00:00
|
|
|
using namespace std;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
NETGENPlugin_NETGEN_3D::NETGENPlugin_NETGEN_3D(int hypId, int studyId, SMESH_Gen* gen)
|
2004-03-26 07:05:19 +00:00
|
|
|
: SMESH_3D_Algo(hypId, studyId, gen)
|
|
|
|
{
|
|
|
|
MESSAGE("NETGENPlugin_NETGEN_3D::NETGENPlugin_NETGEN_3D");
|
|
|
|
_name = "NETGEN_3D";
|
|
|
|
_shapeType = (1 << TopAbs_SHELL) | (1 << TopAbs_SOLID);// 1 bit /shape type
|
|
|
|
_compatibleHypothesis.push_back("MaxElementVolume");
|
2011-01-18 12:25:36 +00:00
|
|
|
_compatibleHypothesis.push_back("ViscousLayers");
|
2004-03-26 07:05:19 +00:00
|
|
|
|
|
|
|
_maxElementVolume = 0.;
|
|
|
|
|
|
|
|
_hypMaxElementVolume = NULL;
|
2011-01-18 12:25:36 +00:00
|
|
|
|
|
|
|
_requireShape = false; // can work without shape
|
2004-03-26 07:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
NETGENPlugin_NETGEN_3D::~NETGENPlugin_NETGEN_3D()
|
|
|
|
{
|
|
|
|
MESSAGE("NETGENPlugin_NETGEN_3D::~NETGENPlugin_NETGEN_3D");
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
bool NETGENPlugin_NETGEN_3D::CheckHypothesis (SMESH_Mesh& aMesh,
|
|
|
|
const TopoDS_Shape& aShape,
|
|
|
|
Hypothesis_Status& aStatus)
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
|
|
|
MESSAGE("NETGENPlugin_NETGEN_3D::CheckHypothesis");
|
|
|
|
|
|
|
|
_hypMaxElementVolume = NULL;
|
2011-01-18 12:25:36 +00:00
|
|
|
_viscousLayersHyp = NULL;
|
2005-10-11 09:14:49 +00:00
|
|
|
_maxElementVolume = DBL_MAX;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
const list<const SMESHDS_Hypothesis*>& hyps =
|
|
|
|
GetUsedHypothesis(aMesh, aShape, /*ignoreAuxiliary=*/false);
|
|
|
|
list <const SMESHDS_Hypothesis* >::const_iterator h = hyps.begin();
|
|
|
|
if ( h == hyps.end())
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
2005-10-11 09:14:49 +00:00
|
|
|
aStatus = SMESH_Hypothesis::HYP_OK;
|
|
|
|
return true; // can work with no hypothesis
|
2004-03-26 07:05:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
aStatus = HYP_OK;
|
|
|
|
for ( ; h != hyps.end(); ++h )
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
if ( !_hypMaxElementVolume )
|
|
|
|
_hypMaxElementVolume = dynamic_cast< const StdMeshers_MaxElementVolume*> ( *h );
|
|
|
|
if ( !_viscousLayersHyp )
|
|
|
|
_viscousLayersHyp = dynamic_cast< const StdMeshers_ViscousLayers*> ( *h );
|
|
|
|
|
|
|
|
if ( *h != _hypMaxElementVolume &&
|
|
|
|
*h != _viscousLayersHyp )
|
|
|
|
aStatus = HYP_INCOMPATIBLE;
|
2010-12-24 08:22:38 +00:00
|
|
|
}
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
if ( _hypMaxElementVolume )
|
|
|
|
_maxElementVolume = _hypMaxElementVolume->GetMaxVolume();
|
|
|
|
|
|
|
|
return aStatus == HYP_OK;
|
2004-03-26 07:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*Here we are going to use the NETGEN mesher
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
2005-05-13 07:59:02 +00:00
|
|
|
bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
|
|
|
const TopoDS_Shape& aShape)
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
|
|
|
MESSAGE("NETGENPlugin_NETGEN_3D::Compute with maxElmentsize = " << _maxElementVolume);
|
|
|
|
|
|
|
|
SMESHDS_Mesh* meshDS = aMesh.GetMeshDS();
|
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
SMESH_MesherHelper helper(aMesh);
|
|
|
|
bool _quadraticMesh = helper.IsQuadraticSubMesh(aShape);
|
|
|
|
helper.SetElementsOnShape( true );
|
2005-11-16 06:52:27 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
int Netgen_NbOfNodes = 0;
|
2011-01-18 12:25:36 +00:00
|
|
|
int Netgen_param2ndOrder = 0;
|
|
|
|
double Netgen_paramFine = 1.;
|
|
|
|
double Netgen_paramSize = pow( 72, 1/6. ) * pow( _maxElementVolume, 1/3. );
|
2005-12-20 14:07:13 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
double Netgen_point[3];
|
|
|
|
int Netgen_triangle[3];
|
2011-01-18 12:25:36 +00:00
|
|
|
int Netgen_tetrahedron[4];
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
NETGENPlugin_NetgenLibWrapper ngLib;
|
|
|
|
Ng_Mesh * Netgen_mesh = ngLib._ngMesh;
|
2006-03-13 16:03:52 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
// vector of nodes in which node index == netgen ID
|
|
|
|
vector< const SMDS_MeshNode* > nodeVec;
|
|
|
|
{
|
|
|
|
const int invalid_ID = -1;
|
2005-05-18 07:29:05 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
// maps nodes to ng ID
|
|
|
|
typedef map< const SMDS_MeshNode*, int, TIDCompare > TNodeToIDMap;
|
|
|
|
typedef TNodeToIDMap::value_type TN2ID;
|
|
|
|
TNodeToIDMap nodeToNetgenID;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
// find internal shapes
|
|
|
|
NETGENPlugin_Internals internals( aMesh, aShape, /*is3D=*/true );
|
2009-02-17 07:15:34 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
// ---------------------------------
|
|
|
|
// Feed the Netgen with surface mesh
|
|
|
|
// ---------------------------------
|
|
|
|
|
|
|
|
TopAbs_ShapeEnum mainType = aMesh.GetShapeToMesh().ShapeType();
|
|
|
|
bool checkReverse = ( mainType == TopAbs_COMPOUND || mainType == TopAbs_COMPSOLID );
|
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
SMESH_ProxyMesh::Ptr proxyMesh( new SMESH_ProxyMesh( aMesh ));
|
|
|
|
if ( _viscousLayersHyp )
|
|
|
|
{
|
|
|
|
proxyMesh = _viscousLayersHyp->Compute( aMesh, aShape );
|
|
|
|
if ( !proxyMesh )
|
|
|
|
return false;
|
|
|
|
}
|
2010-05-14 15:49:35 +00:00
|
|
|
if ( aMesh.NbQuadrangles() > 0 )
|
2011-01-18 12:25:36 +00:00
|
|
|
{
|
|
|
|
StdMeshers_QuadToTriaAdaptor* Adaptor = new StdMeshers_QuadToTriaAdaptor;
|
|
|
|
Adaptor->Compute(aMesh,aShape,proxyMesh.get());
|
|
|
|
proxyMesh.reset( Adaptor );
|
|
|
|
}
|
2010-05-14 15:49:35 +00:00
|
|
|
|
|
|
|
for ( TopExp_Explorer exFa( aShape, TopAbs_FACE ); exFa.More(); exFa.Next())
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
2010-05-14 15:49:35 +00:00
|
|
|
const TopoDS_Shape& aShapeFace = exFa.Current();
|
|
|
|
int faceID = meshDS->ShapeToIndex( aShapeFace );
|
|
|
|
bool isInternalFace = internals.isInternalShape( faceID );
|
2009-02-17 07:15:34 +00:00
|
|
|
bool isRev = false;
|
2010-05-14 15:49:35 +00:00
|
|
|
if ( checkReverse && !isInternalFace &&
|
|
|
|
helper.NbAncestors(aShapeFace, aMesh, aShape.ShapeType()) > 1 )
|
2009-02-17 07:15:34 +00:00
|
|
|
// IsReversedSubMesh() can work wrong on strongly curved faces,
|
|
|
|
// so we use it as less as possible
|
|
|
|
isRev = SMESH_Algo::IsReversedSubMesh( TopoDS::Face(aShapeFace), meshDS );
|
2005-12-20 14:07:13 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
const SMESHDS_SubMesh * aSubMeshDSFace = proxyMesh->GetSubMesh( aShapeFace );
|
2010-05-14 15:49:35 +00:00
|
|
|
if ( !aSubMeshDSFace ) continue;
|
2005-05-18 07:29:05 +00:00
|
|
|
SMDS_ElemIteratorPtr iteratorElem = aSubMeshDSFace->GetElements();
|
2010-05-14 15:49:35 +00:00
|
|
|
while ( iteratorElem->more() ) // loop on elements on a geom face
|
2005-05-18 07:29:05 +00:00
|
|
|
{
|
2010-05-14 15:49:35 +00:00
|
|
|
// check mesh face
|
2005-05-18 07:29:05 +00:00
|
|
|
const SMDS_MeshElement* elem = iteratorElem->next();
|
2008-03-07 07:47:18 +00:00
|
|
|
if ( !elem )
|
|
|
|
return error( COMPERR_BAD_INPUT_MESH, "Null element encounters");
|
2011-01-18 12:25:36 +00:00
|
|
|
if ( elem->NbCornerNodes() != 3 )
|
|
|
|
return error( COMPERR_BAD_INPUT_MESH, "Not triangle element encounters");
|
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
// Add nodes of triangles and triangles them-selves to netgen mesh
|
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
// add three nodes of triangle
|
|
|
|
bool hasDegen = false;
|
|
|
|
for ( int iN = 0; iN < 3; ++iN )
|
2010-05-14 15:49:35 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
const SMDS_MeshNode* node = elem->GetNode( iN );
|
|
|
|
const int shapeID = node->getshapeId();
|
|
|
|
if ( node->GetPosition()->GetTypeOfPosition() == SMDS_TOP_EDGE &&
|
|
|
|
helper.IsDegenShape( shapeID ))
|
2010-05-14 15:49:35 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
// ignore all nodes on degeneraged edge and use node on its vertex instead
|
|
|
|
TopoDS_Shape vertex = TopoDS_Iterator( meshDS->IndexToShape( shapeID )).Value();
|
|
|
|
node = SMESH_Algo::VertexNode( TopoDS::Vertex( vertex ), meshDS );
|
|
|
|
hasDegen = true;
|
2009-02-17 07:15:34 +00:00
|
|
|
}
|
2011-01-18 12:25:36 +00:00
|
|
|
int& ngID = nodeToNetgenID.insert(TN2ID( node, invalid_ID )).first->second;
|
|
|
|
if ( ngID == invalid_ID )
|
2010-05-14 15:49:35 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
ngID = ++Netgen_NbOfNodes;
|
|
|
|
Netgen_point [ 0 ] = node->X();
|
|
|
|
Netgen_point [ 1 ] = node->Y();
|
|
|
|
Netgen_point [ 2 ] = node->Z();
|
|
|
|
Ng_AddPoint(Netgen_mesh, Netgen_point);
|
2009-02-17 07:15:34 +00:00
|
|
|
}
|
2011-01-18 12:25:36 +00:00
|
|
|
Netgen_triangle[ isRev ? 2-iN : iN ] = ngID;
|
2005-05-18 07:29:05 +00:00
|
|
|
}
|
2011-01-18 12:25:36 +00:00
|
|
|
// add triangle
|
|
|
|
if ( hasDegen && (Netgen_triangle[0] == Netgen_triangle[1] ||
|
|
|
|
Netgen_triangle[0] == Netgen_triangle[2] ||
|
|
|
|
Netgen_triangle[2] == Netgen_triangle[1] ))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Ng_AddSurfaceElement(Netgen_mesh, NG_TRIG, Netgen_triangle);
|
|
|
|
|
|
|
|
if ( isInternalFace && !proxyMesh->IsTemporary( elem ))
|
|
|
|
{
|
|
|
|
swap( Netgen_triangle[1], Netgen_triangle[2] );
|
|
|
|
Ng_AddSurfaceElement(Netgen_mesh, NG_TRIG, Netgen_triangle);
|
2005-12-20 14:07:13 +00:00
|
|
|
}
|
2010-05-14 15:49:35 +00:00
|
|
|
} // loop on elements on a face
|
|
|
|
} // loop on faces of a SOLID or SHELL
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
// insert old nodes into nodeVec
|
|
|
|
nodeVec.resize( nodeToNetgenID.size() + 1, 0 );
|
|
|
|
TNodeToIDMap::iterator n_id = nodeToNetgenID.begin();
|
|
|
|
for ( ; n_id != nodeToNetgenID.end(); ++n_id )
|
|
|
|
nodeVec[ n_id->second ] = n_id->first;
|
|
|
|
nodeToNetgenID.clear();
|
2006-03-13 16:03:52 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
if ( internals.hasInternalVertexInSolid() )
|
2009-02-17 07:15:34 +00:00
|
|
|
{
|
2010-05-14 15:49:35 +00:00
|
|
|
netgen::OCCGeometry occgeo;
|
|
|
|
NETGENPlugin_Mesher::addIntVerticesInSolids( occgeo,
|
|
|
|
(netgen::Mesh&) *Netgen_mesh,
|
|
|
|
nodeVec,
|
|
|
|
internals);
|
2011-01-18 12:25:36 +00:00
|
|
|
Netgen_NbOfNodes = Ng_GetNP(Netgen_mesh);
|
2009-02-17 07:15:34 +00:00
|
|
|
}
|
2005-05-18 07:29:05 +00:00
|
|
|
}
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2005-05-18 07:29:05 +00:00
|
|
|
// -------------------------
|
|
|
|
// Generate the volume mesh
|
|
|
|
// -------------------------
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
Ng_Meshing_Parameters Netgen_param;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
Netgen_param.secondorder = Netgen_param2ndOrder;
|
|
|
|
Netgen_param.fineness = Netgen_paramFine;
|
|
|
|
Netgen_param.maxh = Netgen_paramSize;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
Ng_Result status;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
try {
|
2008-03-07 07:47:18 +00:00
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
2011-01-18 12:25:36 +00:00
|
|
|
status = Ng_GenerateVolumeMesh(Netgen_mesh, &Netgen_param);
|
2008-03-07 07:47:18 +00:00
|
|
|
}
|
2011-01-18 12:25:36 +00:00
|
|
|
catch (Standard_Failure& exc) {
|
|
|
|
error(COMPERR_OCC_EXCEPTION, exc.GetMessageString());
|
|
|
|
status = NG_VOLUME_FAILURE;
|
2005-05-18 07:29:05 +00:00
|
|
|
}
|
2011-01-18 12:25:36 +00:00
|
|
|
catch (...) {
|
|
|
|
error("Exception in Ng_GenerateVolumeMesh()");
|
|
|
|
status = NG_VOLUME_FAILURE;
|
|
|
|
}
|
|
|
|
if ( GetComputeError()->IsOK() ) {
|
|
|
|
switch ( status ) {
|
|
|
|
case NG_SURFACE_INPUT_ERROR:error( status, "NG_SURFACE_INPUT_ERROR");
|
|
|
|
case NG_VOLUME_FAILURE: error( status, "NG_VOLUME_FAILURE");
|
|
|
|
case NG_STL_INPUT_ERROR: error( status, "NG_STL_INPUT_ERROR");
|
|
|
|
case NG_SURFACE_FAILURE: error( status, "NG_SURFACE_FAILURE");
|
|
|
|
case NG_FILE_NOT_FOUND: error( status, "NG_FILE_NOT_FOUND");
|
|
|
|
};
|
2008-03-07 07:47:18 +00:00
|
|
|
}
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2005-05-18 07:29:05 +00:00
|
|
|
int Netgen_NbOfNodesNew = Ng_GetNP(Netgen_mesh);
|
2010-05-14 15:49:35 +00:00
|
|
|
int Netgen_NbOfTetra = Ng_GetNE(Netgen_mesh);
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
MESSAGE("End of Volume Mesh Generation. status=" << status <<
|
2005-05-18 07:29:05 +00:00
|
|
|
", nb new nodes: " << Netgen_NbOfNodesNew - Netgen_NbOfNodes <<
|
|
|
|
", nb tetra: " << Netgen_NbOfTetra);
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2005-05-18 07:29:05 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Feed back the SMESHDS with the generated Nodes and Volume Elements
|
|
|
|
// -------------------------------------------------------------------
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
if ( status == NG_VOLUME_FAILURE )
|
2010-05-14 15:49:35 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
SMESH_ComputeErrorPtr err = NETGENPlugin_Mesher::readErrors(nodeVec);
|
|
|
|
if ( err && !err->myBadElements.empty() )
|
|
|
|
error( err );
|
2010-05-14 15:49:35 +00:00
|
|
|
}
|
|
|
|
|
2008-03-07 07:47:18 +00:00
|
|
|
bool isOK = ( /*status == NG_OK &&*/ Netgen_NbOfTetra > 0 );// get whatever built
|
2005-05-18 07:29:05 +00:00
|
|
|
if ( isOK )
|
|
|
|
{
|
|
|
|
// create and insert new nodes into nodeVec
|
2010-05-14 15:49:35 +00:00
|
|
|
nodeVec.resize( Netgen_NbOfNodesNew + 1, 0 );
|
2005-09-22 06:54:23 +00:00
|
|
|
int nodeIndex = Netgen_NbOfNodes + 1;
|
2005-05-18 07:29:05 +00:00
|
|
|
for ( ; nodeIndex <= Netgen_NbOfNodesNew; ++nodeIndex )
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
2005-05-18 07:29:05 +00:00
|
|
|
Ng_GetPoint( Netgen_mesh, nodeIndex, Netgen_point );
|
2010-05-14 15:49:35 +00:00
|
|
|
nodeVec.at(nodeIndex) = helper.AddNode(Netgen_point[0], Netgen_point[1], Netgen_point[2]);
|
2004-03-26 07:05:19 +00:00
|
|
|
}
|
|
|
|
|
2005-05-18 07:29:05 +00:00
|
|
|
// create tetrahedrons
|
|
|
|
for ( int elemIndex = 1; elemIndex <= Netgen_NbOfTetra; ++elemIndex )
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
2005-05-18 07:29:05 +00:00
|
|
|
Ng_GetVolumeElement(Netgen_mesh, elemIndex, Netgen_tetrahedron);
|
2011-01-18 12:25:36 +00:00
|
|
|
helper.AddVolume (nodeVec.at( Netgen_tetrahedron[0] ),
|
|
|
|
nodeVec.at( Netgen_tetrahedron[1] ),
|
|
|
|
nodeVec.at( Netgen_tetrahedron[2] ),
|
|
|
|
nodeVec.at( Netgen_tetrahedron[3] ));
|
2004-03-26 07:05:19 +00:00
|
|
|
}
|
2005-05-18 07:29:05 +00:00
|
|
|
}
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
return (status == NG_OK);
|
2005-05-18 07:29:05 +00:00
|
|
|
}
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Compute tetrahedral mesh from 2D mesh without geometry
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
2008-03-07 07:47:18 +00:00
|
|
|
SMESH_MesherHelper* aHelper)
|
2004-03-26 07:05:19 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
MESSAGE("NETGENPlugin_NETGEN_3D::Compute with maxElmentsize = " << _maxElementVolume);
|
2008-03-07 07:47:18 +00:00
|
|
|
const int invalid_ID = -1;
|
|
|
|
bool _quadraticMesh = false;
|
|
|
|
|
|
|
|
SMESH_MesherHelper::MType MeshType = aHelper->IsQuadraticMesh();
|
2011-01-18 12:25:36 +00:00
|
|
|
|
2008-03-07 07:47:18 +00:00
|
|
|
if(MeshType == SMESH_MesherHelper::COMP)
|
|
|
|
return error( COMPERR_BAD_INPUT_MESH,
|
|
|
|
SMESH_Comment("Mesh with linear and quadratic elements given."));
|
|
|
|
else if (MeshType == SMESH_MesherHelper::QUADRATIC)
|
|
|
|
_quadraticMesh = true;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2008-03-07 07:47:18 +00:00
|
|
|
// ---------------------------------
|
|
|
|
// Feed the Netgen with surface mesh
|
|
|
|
// ---------------------------------
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
int Netgen_NbOfNodes = 0;
|
|
|
|
int Netgen_param2ndOrder = 0;
|
|
|
|
double Netgen_paramFine = 1.;
|
|
|
|
double Netgen_paramSize = pow( 72, 1/6. ) * pow( _maxElementVolume, 1/3. );
|
|
|
|
|
2008-03-07 07:47:18 +00:00
|
|
|
double Netgen_point[3];
|
2011-01-18 12:25:36 +00:00
|
|
|
int Netgen_triangle[3];
|
|
|
|
int Netgen_tetrahedron[4];
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2010-05-14 15:49:35 +00:00
|
|
|
NETGENPlugin_NetgenLibWrapper ngLib;
|
|
|
|
Ng_Mesh * Netgen_mesh = ngLib._ngMesh;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
SMESH_ProxyMesh::Ptr proxyMesh( new SMESH_ProxyMesh( aMesh ));
|
|
|
|
if ( aMesh.NbQuadrangles() > 0 )
|
2008-03-07 07:47:18 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
StdMeshers_QuadToTriaAdaptor* Adaptor = new StdMeshers_QuadToTriaAdaptor;
|
|
|
|
Adaptor->Compute(aMesh);
|
|
|
|
proxyMesh.reset( Adaptor );
|
2008-03-07 07:47:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
// maps nodes to ng ID
|
|
|
|
typedef map< const SMDS_MeshNode*, int, TIDCompare > TNodeToIDMap;
|
|
|
|
typedef TNodeToIDMap::value_type TN2ID;
|
|
|
|
TNodeToIDMap nodeToNetgenID;
|
|
|
|
|
|
|
|
SMDS_ElemIteratorPtr fIt = proxyMesh->GetFaces();
|
|
|
|
while( fIt->more())
|
2008-03-07 07:47:18 +00:00
|
|
|
{
|
2011-01-18 12:25:36 +00:00
|
|
|
// check element
|
|
|
|
const SMDS_MeshElement* elem = fIt->next();
|
|
|
|
if ( !elem )
|
|
|
|
return error( COMPERR_BAD_INPUT_MESH, "Null element encounters");
|
|
|
|
if ( elem->NbCornerNodes() != 3 )
|
|
|
|
return error( COMPERR_BAD_INPUT_MESH, "Not triangle element encounters");
|
|
|
|
|
|
|
|
// add three nodes of triangle
|
|
|
|
for ( int iN = 0; iN < 3; ++iN )
|
|
|
|
{
|
|
|
|
const SMDS_MeshNode* node = elem->GetNode( iN );
|
|
|
|
int& ngID = nodeToNetgenID.insert(TN2ID( node, invalid_ID )).first->second;
|
|
|
|
if ( ngID == invalid_ID )
|
|
|
|
{
|
|
|
|
ngID = ++Netgen_NbOfNodes;
|
|
|
|
Netgen_point [ 0 ] = node->X();
|
|
|
|
Netgen_point [ 1 ] = node->Y();
|
|
|
|
Netgen_point [ 2 ] = node->Z();
|
|
|
|
Ng_AddPoint(Netgen_mesh, Netgen_point);
|
|
|
|
}
|
|
|
|
Netgen_triangle[ iN ] = ngID;
|
2008-03-07 07:47:18 +00:00
|
|
|
}
|
|
|
|
Ng_AddSurfaceElement(Netgen_mesh, NG_TRIG, Netgen_triangle);
|
|
|
|
}
|
2011-01-18 12:25:36 +00:00
|
|
|
proxyMesh.reset(); // delete tmp faces
|
2008-03-07 07:47:18 +00:00
|
|
|
|
2010-11-25 12:50:21 +00:00
|
|
|
// vector of nodes in which node index == netgen ID
|
|
|
|
vector< const SMDS_MeshNode* > nodeVec ( nodeToNetgenID.size() + 1 );
|
|
|
|
// insert old nodes into nodeVec
|
2011-01-18 12:25:36 +00:00
|
|
|
TNodeToIDMap::iterator n_id = nodeToNetgenID.begin();
|
|
|
|
for ( ; n_id != nodeToNetgenID.end(); ++n_id )
|
2010-11-25 12:50:21 +00:00
|
|
|
nodeVec.at( n_id->second ) = n_id->first;
|
|
|
|
nodeToNetgenID.clear();
|
|
|
|
|
2008-03-07 07:47:18 +00:00
|
|
|
// -------------------------
|
|
|
|
// Generate the volume mesh
|
|
|
|
// -------------------------
|
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
Ng_Meshing_Parameters Netgen_param;
|
|
|
|
|
|
|
|
Netgen_param.secondorder = Netgen_param2ndOrder;
|
|
|
|
Netgen_param.fineness = Netgen_paramFine;
|
|
|
|
Netgen_param.maxh = Netgen_paramSize;
|
|
|
|
|
|
|
|
Ng_Result status;
|
|
|
|
|
|
|
|
try {
|
|
|
|
#if (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE) > 0x060100
|
|
|
|
OCC_CATCH_SIGNALS;
|
|
|
|
#endif
|
|
|
|
status = Ng_GenerateVolumeMesh(Netgen_mesh, &Netgen_param);
|
|
|
|
}
|
|
|
|
catch (Standard_Failure& exc) {
|
|
|
|
error(COMPERR_OCC_EXCEPTION, exc.GetMessageString());
|
|
|
|
status = NG_VOLUME_FAILURE;
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
error("Exception in Ng_GenerateVolumeMesh()");
|
|
|
|
status = NG_VOLUME_FAILURE;
|
|
|
|
}
|
|
|
|
if ( GetComputeError()->IsOK() ) {
|
|
|
|
switch ( status ) {
|
|
|
|
case NG_SURFACE_INPUT_ERROR:error( status, "NG_SURFACE_INPUT_ERROR");
|
|
|
|
case NG_VOLUME_FAILURE: error( status, "NG_VOLUME_FAILURE");
|
|
|
|
case NG_STL_INPUT_ERROR: error( status, "NG_STL_INPUT_ERROR");
|
|
|
|
case NG_SURFACE_FAILURE: error( status, "NG_SURFACE_FAILURE");
|
|
|
|
case NG_FILE_NOT_FOUND: error( status, "NG_FILE_NOT_FOUND");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
int Netgen_NbOfNodesNew = Ng_GetNP(Netgen_mesh);
|
|
|
|
|
|
|
|
int Netgen_NbOfTetra = Ng_GetNE(Netgen_mesh);
|
|
|
|
|
|
|
|
MESSAGE("End of Volume Mesh Generation. status=" << status <<
|
|
|
|
", nb new nodes: " << Netgen_NbOfNodesNew - Netgen_NbOfNodes <<
|
|
|
|
", nb tetra: " << Netgen_NbOfTetra);
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Feed back the SMESHDS with the generated Nodes and Volume Elements
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
|
|
|
|
if ( status == NG_VOLUME_FAILURE )
|
|
|
|
{
|
|
|
|
SMESH_ComputeErrorPtr err = NETGENPlugin_Mesher::readErrors(nodeVec);
|
|
|
|
if ( err && !err->myBadElements.empty() )
|
|
|
|
error( err );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isOK = ( Netgen_NbOfTetra > 0 );// get whatever built
|
|
|
|
if ( isOK )
|
|
|
|
{
|
|
|
|
// create and insert new nodes into nodeVec
|
|
|
|
nodeVec.resize( Netgen_NbOfNodesNew + 1 );
|
|
|
|
int nodeIndex = Netgen_NbOfNodes + 1;
|
|
|
|
|
|
|
|
for ( ; nodeIndex <= Netgen_NbOfNodesNew; ++nodeIndex )
|
|
|
|
{
|
|
|
|
Ng_GetPoint( Netgen_mesh, nodeIndex, Netgen_point );
|
|
|
|
nodeVec.at(nodeIndex) = aHelper->AddNode(Netgen_point[0],Netgen_point[1],Netgen_point[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create tetrahedrons
|
|
|
|
for ( int elemIndex = 1; elemIndex <= Netgen_NbOfTetra; ++elemIndex )
|
|
|
|
{
|
|
|
|
Ng_GetVolumeElement(Netgen_mesh, elemIndex, Netgen_tetrahedron);
|
|
|
|
aHelper->AddVolume (nodeVec.at( Netgen_tetrahedron[0] ),
|
|
|
|
nodeVec.at( Netgen_tetrahedron[1] ),
|
|
|
|
nodeVec.at( Netgen_tetrahedron[2] ),
|
|
|
|
nodeVec.at( Netgen_tetrahedron[3] ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (status == NG_OK);
|
2004-03-26 07:05:19 +00:00
|
|
|
}
|
2009-06-29 13:17:40 +00:00
|
|
|
|
2011-01-18 12:25:36 +00:00
|
|
|
|
2009-06-29 13:17:40 +00:00
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
bool NETGENPlugin_NETGEN_3D::Evaluate(SMESH_Mesh& aMesh,
|
2010-01-26 07:16:30 +00:00
|
|
|
const TopoDS_Shape& aShape,
|
|
|
|
MapShapeNbElems& aResMap)
|
2009-06-29 13:17:40 +00:00
|
|
|
{
|
|
|
|
int nbtri = 0, nbqua = 0;
|
|
|
|
double fullArea = 0.0;
|
2010-05-14 15:49:35 +00:00
|
|
|
for (TopExp_Explorer expF(aShape, TopAbs_FACE); expF.More(); expF.Next()) {
|
|
|
|
TopoDS_Face F = TopoDS::Face( expF.Current() );
|
2009-06-29 13:17:40 +00:00
|
|
|
SMESH_subMesh *sm = aMesh.GetSubMesh(F);
|
|
|
|
MapShapeNbElemsItr anIt = aResMap.find(sm);
|
2009-08-06 12:46:03 +00:00
|
|
|
if( anIt==aResMap.end() ) {
|
|
|
|
SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
|
|
|
|
smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
|
|
|
|
return false;
|
|
|
|
}
|
2009-06-29 13:17:40 +00:00
|
|
|
std::vector<int> aVec = (*anIt).second;
|
2009-08-25 05:47:16 +00:00
|
|
|
nbtri += Max(aVec[SMDSEntity_Triangle],aVec[SMDSEntity_Quad_Triangle]);
|
|
|
|
nbqua += Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
|
2009-06-29 13:17:40 +00:00
|
|
|
GProp_GProps G;
|
|
|
|
BRepGProp::SurfaceProperties(F,G);
|
|
|
|
double anArea = G.Mass();
|
|
|
|
fullArea += anArea;
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect info from edges
|
|
|
|
int nb0d_e = 0, nb1d_e = 0;
|
|
|
|
bool IsQuadratic = false;
|
|
|
|
bool IsFirst = true;
|
|
|
|
TopTools_MapOfShape tmpMap;
|
2010-05-14 15:49:35 +00:00
|
|
|
for (TopExp_Explorer expF(aShape, TopAbs_EDGE); expF.More(); expF.Next()) {
|
|
|
|
TopoDS_Edge E = TopoDS::Edge(expF.Current());
|
2009-06-29 13:17:40 +00:00
|
|
|
if( tmpMap.Contains(E) )
|
|
|
|
continue;
|
|
|
|
tmpMap.Add(E);
|
2010-05-14 15:49:35 +00:00
|
|
|
SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(expF.Current());
|
2009-06-29 13:17:40 +00:00
|
|
|
MapShapeNbElemsItr anIt = aResMap.find(aSubMesh);
|
2009-08-25 07:49:58 +00:00
|
|
|
if( anIt==aResMap.end() ) {
|
|
|
|
SMESH_ComputeErrorPtr& smError = aSubMesh->GetComputeError();
|
|
|
|
smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,
|
2010-01-26 07:16:30 +00:00
|
|
|
"Submesh can not be evaluated",this));
|
2009-08-25 07:49:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-06-29 13:17:40 +00:00
|
|
|
std::vector<int> aVec = (*anIt).second;
|
2009-08-25 05:47:16 +00:00
|
|
|
nb0d_e += aVec[SMDSEntity_Node];
|
|
|
|
nb1d_e += Max(aVec[SMDSEntity_Edge],aVec[SMDSEntity_Quad_Edge]);
|
2009-06-29 13:17:40 +00:00
|
|
|
if(IsFirst) {
|
2009-08-25 05:47:16 +00:00
|
|
|
IsQuadratic = (aVec[SMDSEntity_Quad_Edge] > aVec[SMDSEntity_Edge]);
|
2009-06-29 13:17:40 +00:00
|
|
|
IsFirst = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tmpMap.Clear();
|
|
|
|
|
|
|
|
double ELen_face = sqrt(2.* ( fullArea/(nbtri+nbqua*2) ) / sqrt(3.0) );
|
|
|
|
double ELen_vol = pow( 72, 1/6. ) * pow( _maxElementVolume, 1/3. );
|
|
|
|
double ELen = Min(ELen_vol,ELen_face*2);
|
|
|
|
|
|
|
|
GProp_GProps G;
|
|
|
|
BRepGProp::VolumeProperties(aShape,G);
|
|
|
|
double aVolume = G.Mass();
|
|
|
|
double tetrVol = 0.1179*ELen*ELen*ELen;
|
|
|
|
double CoeffQuality = 0.9;
|
2010-02-09 11:21:29 +00:00
|
|
|
int nbVols = int( aVolume/tetrVol/CoeffQuality );
|
2009-06-29 13:17:40 +00:00
|
|
|
int nb1d_f = (nbtri*3 + nbqua*4 - nb1d_e) / 2;
|
2010-02-09 11:21:29 +00:00
|
|
|
int nb1d_in = (nbVols*6 - nb1d_e - nb1d_f ) / 5;
|
2009-08-25 05:47:16 +00:00
|
|
|
std::vector<int> aVec(SMDSEntity_Last);
|
|
|
|
for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aVec[i]=0;
|
2009-06-29 13:17:40 +00:00
|
|
|
if( IsQuadratic ) {
|
2009-08-25 05:47:16 +00:00
|
|
|
aVec[SMDSEntity_Node] = nb1d_in/6 + 1 + nb1d_in;
|
|
|
|
aVec[SMDSEntity_Quad_Tetra] = nbVols - nbqua*2;
|
|
|
|
aVec[SMDSEntity_Quad_Pyramid] = nbqua;
|
2009-06-29 13:17:40 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-08-25 05:47:16 +00:00
|
|
|
aVec[SMDSEntity_Node] = nb1d_in/6 + 1;
|
|
|
|
aVec[SMDSEntity_Tetra] = nbVols - nbqua*2;
|
|
|
|
aVec[SMDSEntity_Pyramid] = nbqua;
|
2009-06-29 13:17:40 +00:00
|
|
|
}
|
|
|
|
SMESH_subMesh *sm = aMesh.GetSubMesh(aShape);
|
|
|
|
aResMap.insert(std::make_pair(sm,aVec));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|