]> SALOME platform Git repositories - plugins/hybridplugin.git/blob - src/HYBRIDPlugin/HYBRIDPlugin_HYBRID.hxx
Salome HOME
20140612_1537 clone to HYBRIDPLUGIN Rename dirs and files
[plugins/hybridplugin.git] / src / HYBRIDPlugin / HYBRIDPlugin_HYBRID.hxx
1 // Copyright (C) 2004-2013  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_Algo.hxx"
30 #include "SMESH_Gen.hxx"
31 #include "SMESH_Gen_i.hxx"
32
33 #include <map>
34 #include <vector>
35
36 extern "C"
37 {
38   #include "libmesh5.h"
39 }
40
41 #ifndef GMFVERSION
42 #define GMFVERSION GmfDouble
43 #endif
44 #define GMFDIMENSION 3
45
46 class GHS3DPlugin_Hypothesis;
47 class SMDS_MeshNode;
48 class SMESH_Mesh;
49 class StdMeshers_ViscousLayers;
50 class TCollection_AsciiString;
51 class _Ghs2smdsConvertor;
52 class TopoDS_Shape;
53
54 class GHS3DPlugin_GHS3D: public SMESH_3D_Algo
55 {
56 public:
57   GHS3DPlugin_GHS3D(int hypId, int studyId, SMESH_Gen* gen);
58   virtual ~GHS3DPlugin_GHS3D();
59
60   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
61                                const TopoDS_Shape& aShape,
62                                Hypothesis_Status&  aStatus);
63
64   virtual bool Compute(SMESH_Mesh&         aMesh,
65                        const TopoDS_Shape& aShape);
66
67   virtual void CancelCompute();
68   bool         computeCanceled() { return _compute_canceled;};
69
70   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
71                         MapShapeNbElems& aResMap);
72
73   virtual bool Compute(SMESH_Mesh&         theMesh,
74                        SMESH_MesherHelper* aHelper);
75
76   virtual void SubmeshRestored(SMESH_subMesh* subMesh);
77
78   virtual void SetEventListener(SMESH_subMesh* subMesh);
79
80   bool         importGMFMesh(const char* aGMFFileName, SMESH_Mesh& aMesh);
81
82   static const char* Name() { return "GHS3D_3D"; }
83
84 protected:
85   const GHS3DPlugin_Hypothesis*   _hyp;
86   const StdMeshers_ViscousLayers* _viscousLayersHyp;
87   std::string                     _genericName;
88    
89 private:
90
91   bool         storeErrorDescription(const TCollection_AsciiString& logFile,
92                                      const _Ghs2smdsConvertor &     toSmdsConvertor );
93   TopoDS_Shape entryToShape(std::string entry);
94   
95   int  _iShape;
96   int  _nbShape;
97   bool _keepFiles;
98   bool _removeLogOnSuccess;
99   bool _logInStandardOutput;
100   SALOMEDS::Study_var myStudy;
101   SMESH_Gen_i* smeshGen_i;
102
103   volatile bool _compute_canceled;
104 };
105
106 /*!
107  * \brief Convertor of GHS3D elements to SMDS ones
108  */
109 class _Ghs2smdsConvertor
110 {
111   const std::map <int,const SMDS_MeshNode*> * _ghs2NodeMap;
112   const std::vector <const SMDS_MeshNode*> *  _nodeByGhsId;
113
114 public:
115   _Ghs2smdsConvertor( const std::map <int,const SMDS_MeshNode*> & ghs2NodeMap);
116
117   _Ghs2smdsConvertor( const std::vector <const SMDS_MeshNode*> &  nodeByGhsId);
118
119   const SMDS_MeshElement* getElement(const std::vector<int>& ghsNodes) const;
120 };
121
122 #endif