Salome HOME
Copyright update: 2016
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D3D.cxx
1 // Copyright (C) 2007-2016  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, or (at your option) any later version.
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_2D3D.cxx
25 // Author : Michael Sazonov (OCN)
26 // Date   : 20/03/2006
27 // Project   : SALOME
28 //=============================================================================
29 //
30 #include "NETGENPlugin_NETGEN_2D3D.hxx"
31 #include "NETGENPlugin_Hypothesis.hxx"
32 #include "NETGENPlugin_SimpleHypothesis_3D.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 namespace nglib {
44 #include <nglib.h>
45 }
46 #include <meshing.hpp>
47
48 using namespace std;
49
50 //=============================================================================
51 /*!
52  *  
53  */
54 //=============================================================================
55
56 NETGENPlugin_NETGEN_2D3D::NETGENPlugin_NETGEN_2D3D(int hypId, int studyId,
57                                                    SMESH_Gen* gen)
58   : SMESH_3D_Algo(hypId, studyId, gen)
59 {
60   MESSAGE("NETGENPlugin_NETGEN_2D3D::NETGENPlugin_NETGEN_2D3D");
61   _name = "NETGEN_2D3D";
62   _shapeType = (1 << TopAbs_SHELL) | (1 << TopAbs_SOLID);// 1 bit /shape type
63   _compatibleHypothesis.push_back("NETGEN_Parameters");
64   _compatibleHypothesis.push_back("NETGEN_SimpleParameters_3D");
65   _requireDiscreteBoundary = false;
66   _onlyUnaryInput = false;
67   _hypothesis = NULL;
68   _supportSubmeshes = true;
69 }
70
71 //=============================================================================
72 /*!
73  *  
74  */
75 //=============================================================================
76
77 NETGENPlugin_NETGEN_2D3D::~NETGENPlugin_NETGEN_2D3D()
78 {
79   MESSAGE("NETGENPlugin_NETGEN_2D3D::~NETGENPlugin_NETGEN_2D3D");
80 }
81
82 //=============================================================================
83 /*!
84  *  
85  */
86 //=============================================================================
87
88 bool NETGENPlugin_NETGEN_2D3D::CheckHypothesis
89                          (SMESH_Mesh& aMesh,
90                           const TopoDS_Shape& aShape,
91                           SMESH_Hypothesis::Hypothesis_Status& aStatus)
92 {
93   MESSAGE("NETGENPlugin_NETGEN_2D3D::CheckHypothesis");
94
95   _hypothesis = NULL;
96   _mesher     = NULL;
97
98   const list<const SMESHDS_Hypothesis*>& hyps = GetUsedHypothesis(aMesh, aShape);
99   int nbHyp = hyps.size();
100   if (!nbHyp)
101   {
102     aStatus = SMESH_Hypothesis::HYP_OK;
103     return true;  // can work with no hypothesis
104   }
105
106   const SMESHDS_Hypothesis* theHyp = hyps.front(); // use only the first hypothesis
107
108   string hypName = theHyp->GetName();
109
110   if ( find( _compatibleHypothesis.begin(), _compatibleHypothesis.end(),
111              hypName ) != _compatibleHypothesis.end() )
112   {
113     _hypothesis = theHyp;
114     aStatus = SMESH_Hypothesis::HYP_OK;
115   }
116   else
117   {
118     aStatus = SMESH_Hypothesis::HYP_INCOMPATIBLE;
119   }
120
121   return aStatus == SMESH_Hypothesis::HYP_OK;
122 }
123
124 //=============================================================================
125 /*!
126  *  Here we are going to use the NETGEN mesher
127  */
128 //=============================================================================
129
130 bool NETGENPlugin_NETGEN_2D3D::Compute(SMESH_Mesh&         aMesh,
131                                        const TopoDS_Shape& aShape)
132 {
133   netgen::multithread.terminate = 0;
134
135   NETGENPlugin_Mesher mesher(&aMesh, aShape, true);
136   mesher.SetParameters(dynamic_cast<const NETGENPlugin_Hypothesis*>(_hypothesis));
137   mesher.SetParameters(dynamic_cast<const NETGENPlugin_SimpleHypothesis_3D*>(_hypothesis));
138   mesher.SetSelfPointer( &_mesher );
139   return mesher.Compute();
140 }
141
142 //=============================================================================
143 /*!
144  *
145  */
146 //=============================================================================
147
148 void NETGENPlugin_NETGEN_2D3D::CancelCompute()
149 {
150   SMESH_Algo::CancelCompute();
151   netgen::multithread.terminate = 1;
152 }
153
154 //================================================================================
155 /*!
156  * \brief Return progress of Compute() [0.,1]
157  */
158 //================================================================================
159
160 double NETGENPlugin_NETGEN_2D3D::GetProgress() const
161 {
162   double & progress = (double &)_progress;
163   if ( _mesher )
164     progress = _mesher->GetProgress(this, &_progressTic, &_progress);
165   else if ( _progress > 0.001 )
166     progress = 0.99;
167
168   return _progress;
169 }
170
171 //=============================================================================
172 /*!
173  *
174  */
175 //=============================================================================
176
177 bool NETGENPlugin_NETGEN_2D3D::Evaluate(SMESH_Mesh&         aMesh,
178                                         const TopoDS_Shape& aShape,
179                                         MapShapeNbElems& aResMap)
180 {
181   NETGENPlugin_Mesher mesher(&aMesh, aShape, true);
182   mesher.SetParameters(dynamic_cast<const NETGENPlugin_Hypothesis*>(_hypothesis));
183   mesher.SetParameters(dynamic_cast<const NETGENPlugin_SimpleHypothesis_2D*>(_hypothesis));
184   return mesher.Evaluate(aResMap);
185 }