Salome HOME
93752e8ec349fa265f5a84300893b28f802b8118
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D_ONLY.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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 // File      : NETGENPlugin_NETGEN_2D_ONLY.cxx
21 // Author    : Edward AGAPOV (OCC)
22 // Project   : SALOME
23 //
24 #include "NETGENPlugin_NETGEN_2D_ONLY.hxx"
25
26 #include "NETGENPlugin_Mesher.hxx"
27 #include "NETGENPlugin_Hypothesis_2D.hxx"
28
29 #include <SMDS_MeshElement.hxx>
30 #include <SMDS_MeshNode.hxx>
31 #include <SMESHDS_Mesh.hxx>
32 #include <SMESH_Comment.hxx>
33 #include <SMESH_Gen.hxx>
34 #include <SMESH_Mesh.hxx>
35 #include <SMESH_MesherHelper.hxx>
36 #include <SMESH_subMesh.hxx>
37 #include <StdMeshers_FaceSide.hxx>
38 #include <StdMeshers_LengthFromEdges.hxx>
39 #include <StdMeshers_MaxElementArea.hxx>
40 #include <StdMeshers_QuadranglePreference.hxx>
41 #include <StdMeshers_ViscousLayers2D.hxx>
42
43 #include <Precision.hxx>
44 #include <Standard_ErrorHandler.hxx>
45 #include <Standard_Failure.hxx>
46
47 #include <utilities.h>
48
49 #include <list>
50 #include <vector>
51 #include <limits>
52
53 /*
54   Netgen include files
55 */
56 namespace nglib {
57 #include <nglib.h>
58 }
59 #ifndef OCCGEOMETRY
60 #define OCCGEOMETRY
61 #endif
62 #include <occgeom.hpp>
63 #include <meshing.hpp>
64 //#include <meshtype.hpp>
65 namespace netgen {
66 #ifdef NETGEN_V5
67   extern int OCCGenerateMesh (OCCGeometry&, Mesh*&, MeshingParameters&, int, int);
68 #else
69   extern int OCCGenerateMesh (OCCGeometry&, Mesh*&, int, int, char*);
70 #endif
71 #if defined(NETGEN_V5) && defined(WIN32)
72   DLL_HEADER 
73 #endif
74   extern MeshingParameters mparam;
75   extern void OCCSetLocalMeshSize(OCCGeometry & geom, Mesh & mesh);
76 }
77
78 using namespace std;
79 using namespace netgen;
80 using namespace nglib;
81
82 //=============================================================================
83 /*!
84  *  
85  */
86 //=============================================================================
87
88 NETGENPlugin_NETGEN_2D_ONLY::NETGENPlugin_NETGEN_2D_ONLY(int        hypId,
89                                                          SMESH_Gen* gen)
90   : SMESH_2D_Algo(hypId, gen)
91 {
92   _name = "NETGEN_2D_ONLY";
93   
94   _shapeType = (1 << TopAbs_FACE);// 1 bit /shape type
95   _onlyUnaryInput = false; // treat all FACEs at once
96
97   _compatibleHypothesis.push_back("MaxElementArea");
98   _compatibleHypothesis.push_back("LengthFromEdges");
99   _compatibleHypothesis.push_back("QuadranglePreference");
100   _compatibleHypothesis.push_back("NETGEN_Parameters_2D");
101   _compatibleHypothesis.push_back("ViscousLayers2D");
102
103   _hypMaxElementArea       = 0;
104   _hypLengthFromEdges      = 0;
105   _hypQuadranglePreference = 0;
106   _hypParameters           = 0;
107 }
108
109 //=============================================================================
110 /*!
111  *  
112  */
113 //=============================================================================
114
115 NETGENPlugin_NETGEN_2D_ONLY::~NETGENPlugin_NETGEN_2D_ONLY()
116 {
117   //MESSAGE("NETGENPlugin_NETGEN_2D_ONLY::~NETGENPlugin_NETGEN_2D_ONLY");
118 }
119
120 //=============================================================================
121 /*!
122  *  
123  */
124 //=============================================================================
125
126 bool NETGENPlugin_NETGEN_2D_ONLY::CheckHypothesis (SMESH_Mesh&         aMesh,
127                                                    const TopoDS_Shape& aShape,
128                                                    Hypothesis_Status&  aStatus)
129 {
130   _hypMaxElementArea = 0;
131   _hypLengthFromEdges = 0;
132   _hypQuadranglePreference = 0;
133   _hypParameters = 0;
134   _progressByTic = -1;
135
136   const list<const SMESHDS_Hypothesis*>& hyps = GetUsedHypothesis(aMesh, aShape, false);
137
138   if (hyps.empty())
139   {
140     aStatus = HYP_OK; //SMESH_Hypothesis::HYP_MISSING;
141     return true;  // (PAL13464) can work with no hypothesis, LengthFromEdges is default one
142   }
143
144   aStatus = HYP_MISSING;
145
146   bool hasVL = false;
147   list<const SMESHDS_Hypothesis*>::const_iterator ith;
148   for (ith = hyps.begin(); ith != hyps.end(); ++ith )
149   {
150     const SMESHDS_Hypothesis* hyp = (*ith);
151
152     string hypName = hyp->GetName();
153
154     if      ( hypName == "MaxElementArea")
155       _hypMaxElementArea = static_cast<const StdMeshers_MaxElementArea*> (hyp);
156     else if ( hypName == "LengthFromEdges" )
157       _hypLengthFromEdges = static_cast<const StdMeshers_LengthFromEdges*> (hyp);
158     else if ( hypName == "QuadranglePreference" )
159       _hypQuadranglePreference = static_cast<const StdMeshers_QuadranglePreference*>(hyp);
160     else if ( hypName == "NETGEN_Parameters_2D" )
161       _hypParameters = static_cast<const NETGENPlugin_Hypothesis_2D*>(hyp);
162     else if ( hypName == StdMeshers_ViscousLayers2D::GetHypType() )
163       hasVL = true;
164     else {
165       aStatus = HYP_INCOMPATIBLE;
166       return false;
167     }
168   }
169
170   int nbHyps = bool(_hypMaxElementArea) + bool(_hypLengthFromEdges) + bool(_hypParameters );
171   if ( nbHyps > 1 )
172     aStatus = HYP_CONCURENT;
173   else if ( hasVL )
174     error( StdMeshers_ViscousLayers2D::CheckHypothesis( aMesh, aShape, aStatus ));
175   else
176     aStatus = HYP_OK;
177
178   if ( aStatus == HYP_OK && _hypParameters && _hypQuadranglePreference )
179   {
180     aStatus = HYP_INCOMPAT_HYPS;
181     return error(SMESH_Comment("\"") << _hypQuadranglePreference->GetName()
182                  << "\" and \"" << _hypParameters->GetName()
183                  << "\" are incompatible hypotheses");
184   }
185
186   return ( aStatus == HYP_OK );
187 }
188
189 // namespace
190 // {
191 //   void limitSize( netgen::Mesh* ngMesh,
192 //                   const double  maxh )
193 //   {
194 //     // get bnd box
195 //     netgen::Point3d pmin, pmax;
196 //     ngMesh->GetBox( pmin, pmax, 0 );
197 //     const double dx = pmax.X() - pmin.X();
198 //     const double dy = pmax.Y() - pmin.Y();
199 //     const double dz = pmax.Z() - pmin.Z();
200
201 //     const int nbX = Max( 2, int( dx / maxh * 3 ));
202 //     const int nbY = Max( 2, int( dy / maxh * 3 ));
203 //     const int nbZ = Max( 2, int( dz / maxh * 3 ));
204
205 //     if ( ! & ngMesh->LocalHFunction() )
206 //       ngMesh->SetLocalH( pmin, pmax, 0.1 );
207
208 //     netgen::Point3d p;
209 //     for ( int i = 0; i <= nbX; ++i )
210 //     {
211 //       p.X() = pmin.X() +  i * dx / nbX;
212 //       for ( int j = 0; j <= nbY; ++j )
213 //       {
214 //         p.Y() = pmin.Y() +  j * dy / nbY;
215 //         for ( int k = 0; k <= nbZ; ++k )
216 //         {
217 //           p.Z() = pmin.Z() +  k * dz / nbZ;
218 //           ngMesh->RestrictLocalH( p, maxh );
219 //         }
220 //       }
221 //     }
222 //   }
223 // }
224
225 //=============================================================================
226 /*!
227  *Here we are going to use the NETGEN mesher
228  */
229 //=============================================================================
230
231 bool NETGENPlugin_NETGEN_2D_ONLY::Compute(SMESH_Mesh&         aMesh,
232                                           const TopoDS_Shape& aShape)
233 {
234   netgen::multithread.terminate = 0;
235   //netgen::multithread.task = "Surface meshing";
236
237   SMESHDS_Mesh* meshDS = aMesh.GetMeshDS();
238   SMESH_MesherHelper helper(aMesh);
239   helper.SetElementsOnShape( true );
240
241   NETGENPlugin_NetgenLibWrapper ngLib;
242   ngLib._isComputeOk = false;
243
244   netgen::Mesh   ngMeshNoLocSize;
245   netgen::Mesh * ngMeshes[2] = { (netgen::Mesh*) ngLib._ngMesh,  & ngMeshNoLocSize };
246   netgen::OCCGeometry occgeoComm;
247
248   // min / max sizes are set as follows:
249   // if ( _hypParameters )
250   //    min and max are defined by the user
251   // else if ( _hypLengthFromEdges )
252   //    min = aMesher.GetDefaultMinSize()
253   //    max = average segment len of a FACE
254   // else if ( _hypMaxElementArea )
255   //    min = aMesher.GetDefaultMinSize()
256   //    max = f( _hypMaxElementArea )
257   // else
258   //    min = aMesher.GetDefaultMinSize()
259   //    max = max segment len of a FACE
260
261   NETGENPlugin_Mesher aMesher( &aMesh, aShape, /*isVolume=*/false);
262   aMesher.SetParameters( _hypParameters ); // _hypParameters -> netgen::mparam
263   const bool toOptimize = _hypParameters ? _hypParameters->GetOptimize() : true;
264   if ( _hypMaxElementArea )
265   {
266     netgen::mparam.maxh = sqrt( 2. * _hypMaxElementArea->GetMaxArea() / sqrt(3.0) );
267   }
268   if ( _hypQuadranglePreference )
269     netgen::mparam.quad = true;
270
271   // local size is common for all FACEs in aShape?
272   const bool isCommonLocalSize = ( !_hypLengthFromEdges && !_hypMaxElementArea && netgen::mparam.uselocalh );
273   const bool isDefaultHyp = ( !_hypLengthFromEdges && !_hypMaxElementArea && !_hypParameters );
274
275   if ( isCommonLocalSize ) // compute common local size in ngMeshes[0]
276   {
277     //list< SMESH_subMesh* > meshedSM[4]; --> all sub-shapes are added to occgeoComm
278     aMesher.PrepareOCCgeometry( occgeoComm, aShape, aMesh );//, meshedSM );
279
280     // local size set at MESHCONST_ANALYSE step depends on
281     // minh, face_maxh, grading and curvaturesafety; find minh if not set by the user
282     if ( !_hypParameters || netgen::mparam.minh < DBL_MIN )
283     {
284       if ( !_hypParameters )
285         netgen::mparam.maxh = occgeoComm.GetBoundingBox().Diam() / 3.;
286       netgen::mparam.minh = aMesher.GetDefaultMinSize( aShape, netgen::mparam.maxh );
287     }
288     // set local size depending on curvature and NOT closeness of EDGEs
289     netgen::occparam.resthcloseedgeenable = false;
290     //netgen::occparam.resthcloseedgefac = 1.0 + netgen::mparam.grading;
291     occgeoComm.face_maxh = netgen::mparam.maxh;
292     netgen::OCCSetLocalMeshSize( occgeoComm, *ngMeshes[0] );
293     occgeoComm.emap.Clear();
294     occgeoComm.vmap.Clear();
295
296     // set local size according to size of existing segments
297     const double factor = netgen::occparam.resthcloseedgefac;
298     TopTools_IndexedMapOfShape edgeMap;
299     TopExp::MapShapes( aMesh.GetShapeToMesh(), TopAbs_EDGE, edgeMap );
300     for ( int iE = 1; iE <= edgeMap.Extent(); ++iE )
301     {
302       const TopoDS_Shape& edge = edgeMap( iE );
303       if ( SMESH_Algo::isDegenerated( TopoDS::Edge( edge )))
304         continue;
305       SMESHDS_SubMesh* smDS = meshDS->MeshElements( edge );
306       if ( !smDS ) continue;
307       SMDS_ElemIteratorPtr segIt = smDS->GetElements();
308       while ( segIt->more() )
309       {
310         const SMDS_MeshElement* seg = segIt->next();
311         SMESH_TNodeXYZ n1 = seg->GetNode(0);
312         SMESH_TNodeXYZ n2 = seg->GetNode(1);
313         gp_XYZ p = 0.5 * ( n1 + n2 );
314         netgen::Point3d pi(p.X(), p.Y(), p.Z());
315         ngMeshes[0]->RestrictLocalH( pi, factor * ( n1 - n2 ).Modulus() );
316       }
317     }
318
319     // set local size defined on shapes
320     aMesher.SetLocalSize( occgeoComm, *ngMeshes[0] );
321     try {
322       ngMeshes[0]->LoadLocalMeshSize( mparam.meshsizefilename );
323     } catch (NgException & ex) {
324       return error( COMPERR_BAD_PARMETERS, ex.What() );
325     }
326   }
327   netgen::mparam.uselocalh = toOptimize; // restore as it is used at surface optimization
328
329   // ==================
330   // Loop on all FACEs
331   // ==================
332
333   vector< const SMDS_MeshNode* > nodeVec;
334
335   TopExp_Explorer fExp( aShape, TopAbs_FACE );
336   for ( int iF = 0; fExp.More(); fExp.Next(), ++iF )
337   {
338     TopoDS_Face F = TopoDS::Face( fExp.Current() /*.Oriented( TopAbs_FORWARD )*/);
339     int    faceID = meshDS->ShapeToIndex( F );
340     SMESH_ComputeErrorPtr& faceErr = aMesh.GetSubMesh( F )->GetComputeError();
341
342     _quadraticMesh = helper.IsQuadraticSubMesh( F );
343     const bool ignoreMediumNodes = _quadraticMesh;
344
345     // build viscous layers if required
346     if ( F.Orientation() != TopAbs_FORWARD &&
347          F.Orientation() != TopAbs_REVERSED )
348       F.Orientation( TopAbs_FORWARD ); // avoid pb with TopAbs_INTERNAL
349     SMESH_ProxyMesh::Ptr proxyMesh = StdMeshers_ViscousLayers2D::Compute( aMesh, F );
350     if ( !proxyMesh )
351       continue;
352
353     // ------------------------
354     // get all EDGEs of a FACE
355     // ------------------------
356     TSideVector wires =
357       StdMeshers_FaceSide::GetFaceWires( F, aMesh, ignoreMediumNodes, faceErr, &helper, proxyMesh );
358     if ( faceErr && !faceErr->IsOK() )
359       continue;
360     int nbWires = wires.size();
361     if ( nbWires == 0 )
362     {
363       faceErr.reset
364         ( new SMESH_ComputeError
365           ( COMPERR_ALGO_FAILED, "Problem in StdMeshers_FaceSide::GetFaceWires()" ));
366       continue;
367     }
368     if ( wires[0]->NbSegments() < 3 ) // ex: a circle with 2 segments
369     {
370       faceErr.reset
371         ( new SMESH_ComputeError
372           ( COMPERR_BAD_INPUT_MESH, SMESH_Comment("Too few segments: ")<<wires[0]->NbSegments()) );
373       continue;
374     }
375
376     // ----------------------
377     // compute maxh of a FACE
378     // ----------------------
379
380     if ( !_hypParameters )
381     {
382       double edgeLength = 0;
383       if (_hypLengthFromEdges )
384       {
385         // compute edgeLength as an average segment length
386         int nbSegments = 0;
387         for ( int iW = 0; iW < nbWires; ++iW )
388         {
389           edgeLength += wires[ iW ]->Length();
390           nbSegments += wires[ iW ]->NbSegments();
391         }
392         if ( nbSegments )
393           edgeLength /= nbSegments;
394         netgen::mparam.maxh = edgeLength;
395       }
396       else if ( isDefaultHyp )
397       {
398         // set edgeLength by a longest segment
399         double maxSeg2 = 0;
400         for ( int iW = 0; iW < nbWires; ++iW )
401         {
402           const UVPtStructVec& points = wires[ iW ]->GetUVPtStruct();
403           if ( points.empty() )
404             return error( COMPERR_BAD_INPUT_MESH );
405           gp_Pnt pPrev = SMESH_TNodeXYZ( points[0].node );
406           for ( size_t i = 1; i < points.size(); ++i )
407           {
408             gp_Pnt p = SMESH_TNodeXYZ( points[i].node );
409             maxSeg2 = Max( maxSeg2, p.SquareDistance( pPrev ));
410             pPrev = p;
411           }
412         }
413         edgeLength = sqrt( maxSeg2 ) * 1.05;
414         netgen::mparam.maxh = edgeLength;
415       }
416       if ( netgen::mparam.maxh < DBL_MIN )
417         netgen::mparam.maxh = occgeoComm.GetBoundingBox().Diam();
418
419       if ( !isCommonLocalSize )
420       {
421         netgen::mparam.minh = aMesher.GetDefaultMinSize( F, netgen::mparam.maxh );
422       }
423     }
424
425     // prepare occgeom
426     netgen::OCCGeometry occgeom;
427     occgeom.shape = F;
428     occgeom.fmap.Add( F );
429     occgeom.CalcBoundingBox();
430     occgeom.facemeshstatus.SetSize(1);
431     occgeom.facemeshstatus = 0;
432     occgeom.face_maxh_modified.SetSize(1);
433     occgeom.face_maxh_modified = 0;
434     occgeom.face_maxh.SetSize(1);
435     occgeom.face_maxh = netgen::mparam.maxh;
436
437     // -------------------------
438     // Fill netgen mesh
439     // -------------------------
440
441     // MESHCONST_ANALYSE step may lead to a failure, so we make an attempt
442     // w/o MESHCONST_ANALYSE at the second loop
443     int err = 0;
444     enum { LOC_SIZE, NO_LOC_SIZE };
445     int iLoop = isCommonLocalSize ? 0 : 1;
446     for ( ; iLoop < 2; iLoop++ )
447     {
448       //bool isMESHCONST_ANALYSE = false;
449       InitComputeError();
450
451       netgen::Mesh * ngMesh = ngMeshes[ iLoop ];
452       ngMesh->DeleteMesh();
453
454       if ( iLoop == NO_LOC_SIZE )
455       {
456         ngMesh->SetGlobalH ( mparam.maxh );
457         ngMesh->SetMinimalH( mparam.minh );
458         Box<3> bb = occgeom.GetBoundingBox();
459         bb.Increase (bb.Diam()/10);
460         ngMesh->SetLocalH (bb.PMin(), bb.PMax(), mparam.grading);
461         aMesher.SetLocalSize( occgeom, *ngMesh );
462         try {
463           ngMesh->LoadLocalMeshSize( mparam.meshsizefilename );
464         } catch (NgException & ex) {
465           return error( COMPERR_BAD_PARMETERS, ex.What() );
466         }
467       }
468
469       nodeVec.clear();
470       faceErr = aMesher.AddSegmentsToMesh( *ngMesh, occgeom, wires, helper, nodeVec,
471                                            /*overrideMinH=*/!_hypParameters);
472       if ( faceErr && !faceErr->IsOK() )
473         break;
474
475       //if ( !isCommonLocalSize )
476       //limitSize( ngMesh, mparam.maxh * 0.8);
477
478       // -------------------------
479       // Generate surface mesh
480       // -------------------------
481
482       const int startWith = MESHCONST_MESHSURFACE;
483       const int endWith   = toOptimize ? MESHCONST_OPTSURFACE : MESHCONST_MESHSURFACE;
484
485       SMESH_Comment str;
486       try {
487         OCC_CATCH_SIGNALS;
488
489 #ifdef NETGEN_V5
490         err = netgen::OCCGenerateMesh(occgeom, ngMesh, netgen::mparam, startWith, endWith);
491 #else
492         char *optstr = 0;
493         err = netgen::OCCGenerateMesh(occgeom, ngMesh, startWith, endWith, optstr);
494 #endif
495         if ( netgen::multithread.terminate )
496           return false;
497         if ( err )
498           str << "Error in netgen::OCCGenerateMesh() at " << netgen::multithread.task;
499       }
500       catch (Standard_Failure& ex)
501       {
502         err = 1;
503         str << "Exception in  netgen::OCCGenerateMesh()"
504             << " at " << netgen::multithread.task
505             << ": " << ex.DynamicType()->Name();
506         if ( ex.GetMessageString() && strlen( ex.GetMessageString() ))
507           str << ": " << ex.GetMessageString();
508       }
509       catch (...) {
510         err = 1;
511         str << "Exception in  netgen::OCCGenerateMesh()"
512             << " at " << netgen::multithread.task;
513       }
514       if ( err )
515       {
516         if ( aMesher.FixFaceMesh( occgeom, *ngMesh, 1 ))
517           break;
518         if ( iLoop == LOC_SIZE )
519         {
520           netgen::mparam.minh = netgen::mparam.maxh;
521           netgen::mparam.maxh = 0;
522           for ( size_t iW = 0; iW < wires.size(); ++iW )
523           {
524             StdMeshers_FaceSidePtr wire = wires[ iW ];
525             const vector<UVPtStruct>& uvPtVec = wire->GetUVPtStruct();
526             for ( size_t iP = 1; iP < uvPtVec.size(); ++iP )
527             {
528               SMESH_TNodeXYZ   p( uvPtVec[ iP ].node );
529               netgen::Point3d np( p.X(),p.Y(),p.Z());
530               double segLen = p.Distance( uvPtVec[ iP-1 ].node );
531               double   size = ngMesh->GetH( np );
532               netgen::mparam.minh = Min( netgen::mparam.minh, size );
533               netgen::mparam.maxh = Max( netgen::mparam.maxh, segLen );
534             }
535           }
536           //cerr << "min " << netgen::mparam.minh << " max " << netgen::mparam.maxh << endl;
537           netgen::mparam.minh *= 0.9;
538           netgen::mparam.maxh *= 1.1;
539           continue;
540         }
541         else
542         {
543           faceErr.reset( new SMESH_ComputeError( COMPERR_ALGO_FAILED, str ));
544         }
545       }
546
547
548       // ----------------------------------------------------
549       // Fill the SMESHDS with the generated nodes and faces
550       // ----------------------------------------------------
551
552       int nbNodes = ngMesh->GetNP();
553       int nbFaces = ngMesh->GetNSE();
554
555       int nbInputNodes = nodeVec.size()-1;
556       nodeVec.resize( nbNodes+1, 0 );
557
558       // add nodes
559       for ( int ngID = nbInputNodes + 1; ngID <= nbNodes; ++ngID )
560       {
561         const MeshPoint& ngPoint = ngMesh->Point( ngID );
562         SMDS_MeshNode * node = meshDS->AddNode(ngPoint(0), ngPoint(1), ngPoint(2));
563         nodeVec[ ngID ] = node;
564       }
565
566       // create faces
567       int i,j;
568       vector<const SMDS_MeshNode*> nodes;
569       for ( i = 1; i <= nbFaces ; ++i )
570       {
571         const Element2d& elem = ngMesh->SurfaceElement(i);
572         nodes.resize( elem.GetNP() );
573         for (j=1; j <= elem.GetNP(); ++j)
574         {
575           int pind = elem.PNum(j);
576           if ( pind < 1 )
577             break;
578           nodes[ j-1 ] = nodeVec[ pind ];
579           if ( nodes[ j-1 ]->GetPosition()->GetTypeOfPosition() == SMDS_TOP_3DSPACE )
580           {
581             const PointGeomInfo& pgi = elem.GeomInfoPi(j);
582             meshDS->SetNodeOnFace( nodes[ j-1 ], faceID, pgi.u, pgi.v);
583           }
584         }
585         if ( j > elem.GetNP() )
586         {
587           if ( elem.GetType() == TRIG )
588             helper.AddFace(nodes[0],nodes[1],nodes[2]);
589           else
590             helper.AddFace(nodes[0],nodes[1],nodes[2],nodes[3]);
591         }
592       }
593
594       break;
595     } // two attempts
596   } // loop on FACEs
597
598   return true;
599 }
600
601 void NETGENPlugin_NETGEN_2D_ONLY::CancelCompute()
602 {
603   SMESH_Algo::CancelCompute();
604   netgen::multithread.terminate = 1;
605 }
606
607 //================================================================================
608 /*!
609  * \brief Return progress of Compute() [0.,1]
610  */
611 //================================================================================
612
613 double NETGENPlugin_NETGEN_2D_ONLY::GetProgress() const
614 {
615   return -1;
616   // const char* task1 = "Surface meshing";
617   // //const char* task2 = "Optimizing surface";
618   // double& progress = const_cast<NETGENPlugin_NETGEN_2D_ONLY*>( this )->_progress;
619   // if ( _progressByTic < 0. &&
620   //      strncmp( netgen::multithread.task, task1, 3 ) == 0 )
621   // {
622   //   progress = Min( 0.25, SMESH_Algo::GetProgressByTic() ); // [0, 0.25]
623   // }
624   // else //if ( strncmp( netgen::multithread.task, task2, 3 ) == 0)
625   // {
626   //   if ( _progressByTic < 0 )
627   //   {
628   //     NETGENPlugin_NETGEN_2D_ONLY* me = (NETGENPlugin_NETGEN_2D_ONLY*) this;
629   //     me->_progressByTic = 0.25 / (_progressTic+1);
630   //   }
631   //   const_cast<NETGENPlugin_NETGEN_2D_ONLY*>( this )->_progressTic++;
632   //   progress = Max( progress, _progressByTic * _progressTic );
633   // }
634   // //cout << netgen::multithread.task << " " << _progressTic << endl;
635   // return Min( progress, 0.99 );
636 }
637
638 //=============================================================================
639 /*!
640  *
641  */
642 //=============================================================================
643
644 bool NETGENPlugin_NETGEN_2D_ONLY::Evaluate(SMESH_Mesh& aMesh,
645                                            const TopoDS_Shape& aShape,
646                                            MapShapeNbElems& aResMap)
647 {
648   TopoDS_Face F = TopoDS::Face(aShape);
649   if(F.IsNull())
650     return false;
651
652   // collect info from edges
653   int nb0d = 0, nb1d = 0;
654   bool IsQuadratic = false;
655   bool IsFirst = true;
656   double fullLen = 0.0;
657   TopTools_MapOfShape tmpMap;
658   for (TopExp_Explorer exp(F, TopAbs_EDGE); exp.More(); exp.Next()) {
659     TopoDS_Edge E = TopoDS::Edge(exp.Current());
660     if( tmpMap.Contains(E) )
661       continue;
662     tmpMap.Add(E);
663     SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(exp.Current());
664     MapShapeNbElemsItr anIt = aResMap.find(aSubMesh);
665     if( anIt==aResMap.end() ) {
666       SMESH_subMesh *sm = aMesh.GetSubMesh(F);
667       SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
668       smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
669       return false;
670     }
671     std::vector<int> aVec = (*anIt).second;
672     nb0d += aVec[SMDSEntity_Node];
673     nb1d += Max(aVec[SMDSEntity_Edge],aVec[SMDSEntity_Quad_Edge]);
674     double aLen = SMESH_Algo::EdgeLength(E);
675     fullLen += aLen;
676     if(IsFirst) {
677       IsQuadratic = (aVec[SMDSEntity_Quad_Edge] > aVec[SMDSEntity_Edge]);
678       IsFirst = false;
679     }
680   }
681   tmpMap.Clear();
682
683   // compute edge length
684   double ELen = 0;
685   if (( _hypLengthFromEdges ) || ( !_hypLengthFromEdges && !_hypMaxElementArea )) {
686     if ( nb1d > 0 )
687       ELen = fullLen / nb1d;
688   }
689   if ( _hypMaxElementArea ) {
690     double maxArea = _hypMaxElementArea->GetMaxArea();
691     ELen = sqrt(2. * maxArea/sqrt(3.0));
692   }
693   GProp_GProps G;
694   BRepGProp::SurfaceProperties(F,G);
695   double anArea = G.Mass();
696
697   const int hugeNb = numeric_limits<int>::max()/10;
698   if ( anArea / hugeNb > ELen*ELen )
699   {
700     SMESH_subMesh *sm = aMesh.GetSubMesh(F);
701     SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
702     smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated.\nToo small element length",this));
703     return false;
704   }
705   int nbFaces = (int) ( anArea / ( ELen*ELen*sqrt(3.) / 4 ) );
706   int nbNodes = (int) ( ( nbFaces*3 - (nb1d-1)*2 ) / 6 + 1 );
707   std::vector<int> aVec(SMDSEntity_Last);
708   for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aVec[i]=0;
709   if( IsQuadratic ) {
710     aVec[SMDSEntity_Node] = nbNodes;
711     aVec[SMDSEntity_Quad_Triangle] = nbFaces;
712   }
713   else {
714     aVec[SMDSEntity_Node] = nbNodes;
715     aVec[SMDSEntity_Triangle] = nbFaces;
716   }
717   SMESH_subMesh *sm = aMesh.GetSubMesh(F);
718   aResMap.insert(std::make_pair(sm,aVec));
719
720   return true;
721 }