Salome HOME
Merge from V6_main_20120808 08Aug12
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D.cxx
1 // Copyright (C) 2007-2012  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
23 //  NETGENPlugin : C++ implementation
24 // File   : NETGENPlugin_NETGEN_2D.cxx
25 // Author : Michael Sazonov (OCN)
26 // Date   : 20/03/2006
27 // Project   : SALOME
28 //=============================================================================
29 //
30 #include "NETGENPlugin_NETGEN_2D.hxx"
31 #include "NETGENPlugin_Hypothesis_2D.hxx"
32 #include "NETGENPlugin_SimpleHypothesis_2D.hxx"
33 #include "NETGENPlugin_Mesher.hxx"
34
35 #include <SMESH_Gen.hxx>
36 #include <SMESH_Mesh.hxx>
37 #include <SMESH_ControlsDef.hxx>
38 #include <SMESHDS_Mesh.hxx>
39 #include <utilities.h>
40
41 #include <list>
42
43 #ifdef WITH_SMESH_CANCEL_COMPUTE
44 namespace nglib {
45 #include <nglib.h>
46 }
47 #include <meshing.hpp>
48 #endif
49
50 using namespace std;
51
52 //=============================================================================
53 /*!
54  *  
55  */
56 //=============================================================================
57
58 NETGENPlugin_NETGEN_2D::NETGENPlugin_NETGEN_2D(int hypId, int studyId,
59                                                SMESH_Gen* gen)
60   : SMESH_2D_Algo(hypId, studyId, gen)
61 {
62   MESSAGE("NETGENPlugin_NETGEN_2D::NETGENPlugin_NETGEN_2D");
63   _name = "NETGEN_2D";
64   _shapeType = (1 << TopAbs_FACE); // 1 bit /shape type
65   _compatibleHypothesis.push_back("NETGEN_Parameters_2D");
66   _compatibleHypothesis.push_back("NETGEN_SimpleParameters_2D");
67   _requireDiscreteBoundary = false;
68   _onlyUnaryInput = false;
69   _hypothesis = NULL;
70   _supportSubmeshes = true;
71 }
72
73 //=============================================================================
74 /*!
75  *  
76  */
77 //=============================================================================
78
79 NETGENPlugin_NETGEN_2D::~NETGENPlugin_NETGEN_2D()
80 {
81   MESSAGE("NETGENPlugin_NETGEN_2D::~NETGENPlugin_NETGEN_2D");
82 }
83
84 //=============================================================================
85 /*!
86  *  
87  */
88 //=============================================================================
89
90 bool NETGENPlugin_NETGEN_2D::CheckHypothesis
91                          (SMESH_Mesh& aMesh,
92                           const TopoDS_Shape& aShape,
93                           SMESH_Hypothesis::Hypothesis_Status& aStatus)
94 {
95   _hypothesis = NULL;
96
97   const list<const SMESHDS_Hypothesis*>& hyps = GetUsedHypothesis(aMesh, aShape);
98   int nbHyp = hyps.size();
99   if (!nbHyp)
100   {
101     aStatus = SMESH_Hypothesis::HYP_OK;
102     return true;  // can work with no hypothesis
103   }
104   // use only the first hypothesis
105   const SMESHDS_Hypothesis* theHyp = hyps.front();
106
107   string hypName = theHyp->GetName();
108   if ( find( _compatibleHypothesis.begin(), _compatibleHypothesis.end(),
109              hypName ) != _compatibleHypothesis.end() )
110   {
111     _hypothesis = theHyp;
112     aStatus = SMESH_Hypothesis::HYP_OK;
113   }
114   else
115   {
116     aStatus = SMESH_Hypothesis::HYP_INCOMPATIBLE;
117   }
118
119   return aStatus == SMESH_Hypothesis::HYP_OK;
120 }
121
122 //=============================================================================
123 /*!
124  *
125  */
126 //=============================================================================
127
128 bool NETGENPlugin_NETGEN_2D::Compute(SMESH_Mesh&         aMesh,
129                                      const TopoDS_Shape& aShape)
130 {
131 #ifdef WITH_SMESH_CANCEL_COMPUTE
132   netgen::multithread.terminate = 0;
133 #endif
134
135   NETGENPlugin_Mesher mesher(&aMesh, aShape, false);
136   mesher.SetParameters(dynamic_cast<const NETGENPlugin_Hypothesis*>(_hypothesis));
137   mesher.SetParameters(dynamic_cast<const NETGENPlugin_SimpleHypothesis_2D*>(_hypothesis));
138   return mesher.Compute();
139 }
140
141 #ifdef WITH_SMESH_CANCEL_COMPUTE
142 void NETGENPlugin_NETGEN_2D::CancelCompute()
143 {
144   SMESH_Algo::CancelCompute();
145   netgen::multithread.terminate = 1;
146 }
147 #endif
148
149 //=============================================================================
150 /*!
151  *
152  */
153 //=============================================================================
154
155 bool NETGENPlugin_NETGEN_2D::Evaluate(SMESH_Mesh&         aMesh,
156                                       const TopoDS_Shape& aShape,
157                                       MapShapeNbElems& aResMap)
158 {
159
160   NETGENPlugin_Mesher mesher(&aMesh, aShape, false);
161   mesher.SetParameters(dynamic_cast<const NETGENPlugin_Hypothesis*>(_hypothesis));
162   mesher.SetParameters(dynamic_cast<const NETGENPlugin_SimpleHypothesis_2D*>(_hypothesis));
163   return mesher.Evaluate(aResMap);
164 }