]> SALOME platform Git repositories - plugins/ghs3dplugin.git/blob - src/GHS3DPlugin_GHS3D.hxx
Salome HOME
0020832: EDF 1359 SMESH : Automatic meshing of boundary layers
[plugins/ghs3dplugin.git] / src / GHS3DPlugin_GHS3D.hxx
1 //  Copyright (C) 2004-2010  CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //=============================================================================
21 // File      : GHS3DPlugin_GHS3D.hxx
22 // Author    : Edward AGAPOV, modified by Lioka RAZAFINDRAZAKA (CEA) 09/02/2007
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #ifndef _GHS3DPlugin_GHS3D_HXX_
27 #define _GHS3DPlugin_GHS3D_HXX_
28
29 #include "SMESH_3D_Algo.hxx"
30
31 #include <map>
32 #include <vector>
33
34 class GHS3DPlugin_Hypothesis;
35 class SMDS_MeshNode;
36 class SMESH_Mesh;
37 class StdMeshers_ViscousLayers;
38 class TCollection_AsciiString;
39 class _Ghs2smdsConvertor;
40
41 class GHS3DPlugin_GHS3D: public SMESH_3D_Algo
42 {
43 public:
44   GHS3DPlugin_GHS3D(int hypId, int studyId, SMESH_Gen* gen);
45   virtual ~GHS3DPlugin_GHS3D();
46
47   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
48                                const TopoDS_Shape& aShape,
49                                Hypothesis_Status&  aStatus);
50
51   virtual bool Compute(SMESH_Mesh&         aMesh,
52                        const TopoDS_Shape& aShape);
53
54   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
55                         MapShapeNbElems& aResMap);
56
57   virtual bool Compute(SMESH_Mesh&         theMesh,
58                        SMESH_MesherHelper* aHelper);
59
60 private:
61
62   bool storeErrorDescription(const TCollection_AsciiString& logFile,
63                              const _Ghs2smdsConvertor &     toSmdsConvertor );
64
65   int  _iShape;
66   int  _nbShape;
67   bool _keepFiles;
68   const GHS3DPlugin_Hypothesis* _hyp;
69   const StdMeshers_ViscousLayers* _viscousLayersHyp;
70 };
71
72 /*!
73  * \brief Convertor of GHS3D elements to SMDS ones
74  */
75 class _Ghs2smdsConvertor
76 {
77   const std::map <int,const SMDS_MeshNode*> * _ghs2NodeMap;
78   const std::vector <const SMDS_MeshNode*> *  _nodeByGhsId;
79
80 public:
81   _Ghs2smdsConvertor( const std::map <int,const SMDS_MeshNode*> & ghs2NodeMap);
82
83   _Ghs2smdsConvertor( const std::vector <const SMDS_MeshNode*> &  nodeByGhsId);
84
85   const SMDS_MeshElement* getElement(const std::vector<int>& ghsNodes) const;
86 };
87
88 #endif