SALOME - SMESH
NETGENPlugin_Mesher.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // NETGENPlugin : C++ implementation
23 // File : NETGENPlugin_Mesher.hxx
24 // Author : Michael Sazonov (OCN)
25 // Date : 31/03/2006
26 // Project : SALOME
27 // $Header$
28 //=============================================================================
29 //
30 #ifndef _NETGENPlugin_Mesher_HXX_
31 #define _NETGENPlugin_Mesher_HXX_
32 
33 #include "NETGENPlugin_Defs.hxx"
34 #include "StdMeshers_FaceSide.hxx"
35 #include <map>
36 
37 class SMESH_Mesh;
38 class SMESHDS_Mesh;
39 class TopoDS_Shape;
42 namespace netgen {
43  class OCCGeometry;
44  class Mesh;
45 }
46 
52 {
53  public:
54  // ---------- PUBLIC METHODS ----------
55 
56  NETGENPlugin_Mesher (SMESH_Mesh* mesh, const TopoDS_Shape& aShape,
57  const bool isVolume);
58 
61 
62  bool Compute();
63 
64  bool Evaluate(MapShapeNbElems& aResMap);
65 
66  static void PrepareOCCgeometry(netgen::OCCGeometry& occgeom,
67  const TopoDS_Shape& shape,
68  SMESH_Mesh& mesh,
69  std::list< SMESH_subMesh* > * meshedSM=0);
70 
71  static void RemoveTmpFiles();
72 
73 protected:
74 
75  bool fillNgMesh(netgen::OCCGeometry& occgeom,
76  netgen::Mesh& ngMesh,
77  std::vector<SMDS_MeshNode*>& nodeVec,
78  const std::list< SMESH_subMesh* > & meshedSM);
79 
81 
82 
83  private:
85  const TopoDS_Shape& _shape;
86  bool _isVolume;
87  bool _optimize;
88 
90  std::map< int, std::pair<int,int> > _faceDescriptors;
91 };
92 
93 #endif
NETGENPlugin_Mesher::SetParameters
void SetParameters(const NETGENPlugin_Hypothesis *hyp)
NETGENPlugin_Mesher::fillNgMesh
bool fillNgMesh(netgen::OCCGeometry &occgeom, netgen::Mesh &ngMesh, std::vector< SMDS_MeshNode * > &nodeVec, const std::list< SMESH_subMesh * > &meshedSM)
NETGENPlugin_Mesher
This class calls the NETGEN mesher of OCC geometry.
Definition: NETGENPlugin_Mesher.hxx:52
NETGENPlugin_Mesher::_shape
const TopoDS_Shape & _shape
Definition: NETGENPlugin_Mesher.hxx:85
NETGENPlugin_Mesher::_mesh
SMESH_Mesh * _mesh
Definition: NETGENPlugin_Mesher.hxx:84
NETGENPlugin_Mesher::RemoveTmpFiles
static void RemoveTmpFiles()
SMESHDS_Mesh
Definition: SMESHDS_Mesh.hxx:59
netgen
Definition: NETGENPlugin_Mesher.hxx:42
NETGENPlugin_Mesher::Compute
bool Compute()
NETGENPlugin_Hypothesis
Definition: NETGENPlugin_Hypothesis.hxx:42
NETGENPlugin_Mesher::Evaluate
bool Evaluate(MapShapeNbElems &aResMap)
NETGENPlugin_Mesher::SetParameters
void SetParameters(const NETGENPlugin_SimpleHypothesis_2D *hyp)
NETGENPLUGIN_EXPORT
#define NETGENPLUGIN_EXPORT
Definition: NETGENPlugin_Defs.hxx:36
NETGENPlugin_Mesher::_isVolume
bool _isVolume
Definition: NETGENPlugin_Mesher.hxx:86
NETGENPlugin_Mesher::_optimize
bool _optimize
Definition: NETGENPlugin_Mesher.hxx:87
NETGENPlugin_Mesher::_simpleHyp
const NETGENPlugin_SimpleHypothesis_2D * _simpleHyp
Definition: NETGENPlugin_Mesher.hxx:89
NETGENPlugin_Mesher::NETGENPlugin_Mesher
NETGENPlugin_Mesher(SMESH_Mesh *mesh, const TopoDS_Shape &aShape, const bool isVolume)
MapShapeNbElems
std::map< SMESH_subMesh *, std::vector< int > > MapShapeNbElems
Definition: SMESH_Algo.hxx:55
SMESH_Mesh
Definition: SMESH_Mesh.hxx:55
NETGENPlugin_Defs.hxx
NETGENPlugin_Mesher::defaultParameters
void defaultParameters()
NETGENPlugin_Mesher::_faceDescriptors
std::map< int, std::pair< int, int > > _faceDescriptors
Definition: NETGENPlugin_Mesher.hxx:90
NETGENPlugin_Mesher::PrepareOCCgeometry
static void PrepareOCCgeometry(netgen::OCCGeometry &occgeom, const TopoDS_Shape &shape, SMESH_Mesh &mesh, std::list< SMESH_subMesh * > *meshedSM=0)
StdMeshers_FaceSide.hxx
NETGENPlugin_SimpleHypothesis_2D
Definition: NETGENPlugin_SimpleHypothesis_2D.hxx:42