Salome HOME
22401: [CEA 992] Regression on SMESH using NETGEN 2D
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_Mesher.cxx
1 // Copyright (C) 2007-2013  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_Mesher.cxx
25 // Author    : Michael Sazonov (OCN)
26 // Date      : 31/03/2006
27 // Project   : SALOME
28 //=============================================================================
29
30 #include "NETGENPlugin_Mesher.hxx"
31 #include "NETGENPlugin_Hypothesis_2D.hxx"
32 #include "NETGENPlugin_SimpleHypothesis_3D.hxx"
33
34 #include <SMDS_FaceOfNodes.hxx>
35 #include <SMDS_MeshElement.hxx>
36 #include <SMDS_MeshNode.hxx>
37 #include <SMESHDS_Mesh.hxx>
38 #include <SMESH_Block.hxx>
39 #include <SMESH_Comment.hxx>
40 #include <SMESH_ComputeError.hxx>
41 #include <SMESH_File.hxx>
42 #include <SMESH_Gen_i.hxx>
43 #include <SMESH_Mesh.hxx>
44 #include <SMESH_MesherHelper.hxx>
45 #include <SMESH_subMesh.hxx>
46 #include <StdMeshers_QuadToTriaAdaptor.hxx>
47 #include <StdMeshers_ViscousLayers2D.hxx>
48
49 #include <SALOMEDS_Tool.hxx>
50
51 #include <utilities.h>
52
53 #include <BRepBuilderAPI_Copy.hxx>
54 #include <BRep_Tool.hxx>
55 #include <Bnd_B3d.hxx>
56 #include <NCollection_Map.hxx>
57 #include <Standard_ErrorHandler.hxx>
58 #include <Standard_ProgramError.hxx>
59 #include <TopExp.hxx>
60 #include <TopExp_Explorer.hxx>
61 #include <TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx>
62 #include <TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx>
63 #include <TopTools_DataMapOfShapeInteger.hxx>
64 #include <TopTools_DataMapOfShapeShape.hxx>
65 #include <TopTools_MapOfShape.hxx>
66 #include <TopoDS.hxx>
67 #include <OSD_File.hxx>
68 #include <OSD_Path.hxx>
69
70 // Netgen include files
71 #ifndef OCCGEOMETRY
72 #define OCCGEOMETRY
73 #endif
74 #include <occgeom.hpp>
75 #include <meshing.hpp>
76 //#include <ngexception.hpp>
77 namespace netgen {
78 #ifdef NETGEN_V5
79   extern int OCCGenerateMesh (OCCGeometry&, Mesh*&, MeshingParameters&, int, int);
80 #else
81   extern int OCCGenerateMesh (OCCGeometry&, Mesh*&, int, int, char*);
82 #endif
83   //extern void OCCSetLocalMeshSize(OCCGeometry & geom, Mesh & mesh);
84   extern MeshingParameters mparam;
85   extern volatile multithreadt multithread;
86 }
87
88 #include <vector>
89 #include <limits>
90
91 #ifdef WIN32
92 #include <process.h>
93 #endif
94 using namespace nglib;
95 using namespace std;
96
97 #ifdef _DEBUG_
98 #define nodeVec_ACCESS(index) ((SMDS_MeshNode*) nodeVec.at((index)))
99 #else
100 #define nodeVec_ACCESS(index) ((SMDS_MeshNode*) nodeVec[index])
101 #endif
102
103 #define NGPOINT_COORDS(p) p(0),p(1),p(2)
104
105 // dump elements added to ng mesh
106 //#define DUMP_SEGMENTS
107 //#define DUMP_TRIANGLES
108 //#define DUMP_TRIANGLES_SCRIPT "/tmp/trias.py" //!< debug AddIntVerticesInSolids()
109
110 TopTools_IndexedMapOfShape ShapesWithLocalSize;
111 std::map<int,double> VertexId2LocalSize;
112 std::map<int,double> EdgeId2LocalSize;
113 std::map<int,double> FaceId2LocalSize;
114
115 //=============================================================================
116 /*!
117  *
118  */
119 //=============================================================================
120
121 NETGENPlugin_Mesher::NETGENPlugin_Mesher (SMESH_Mesh*         mesh,
122                                           const TopoDS_Shape& aShape,
123                                           const bool          isVolume)
124   : _mesh    (mesh),
125     _shape   (aShape),
126     _isVolume(isVolume),
127     _optimize(true),
128     _fineness(NETGENPlugin_Hypothesis::GetDefaultFineness()),
129     _isViscousLayers2D(false),
130     _ngMesh(NULL),
131     _occgeom(NULL),
132     _curShapeIndex(-1),
133     _progressTic(1),
134     _totalTime(1.0),
135     _simpleHyp(NULL),
136     _ptrToMe(NULL)
137 {
138   SetDefaultParameters();
139   ShapesWithLocalSize.Clear();
140   VertexId2LocalSize.clear();
141   EdgeId2LocalSize.clear();
142   FaceId2LocalSize.clear();
143 }
144
145 //================================================================================
146 /*!
147  * Destuctor
148  */
149 //================================================================================
150
151 NETGENPlugin_Mesher::~NETGENPlugin_Mesher()
152 {
153   if ( _ptrToMe )
154     *_ptrToMe = NULL;
155   _ptrToMe = 0;
156   _ngMesh = NULL;
157 }
158
159 //================================================================================
160 /*!
161  * Set pointer to NETGENPlugin_Mesher* field of the holder, that will be
162  * nullified at destruction of this
163  */
164 //================================================================================
165
166 void NETGENPlugin_Mesher::SetSelfPointer( NETGENPlugin_Mesher ** ptr )
167 {
168   if ( _ptrToMe )
169     *_ptrToMe = NULL;
170
171   _ptrToMe = ptr;
172
173   if ( _ptrToMe )
174     *_ptrToMe = this;
175 }
176
177 //================================================================================
178 /*!
179  * \brief Initialize global NETGEN parameters with default values
180  */
181 //================================================================================
182
183 void NETGENPlugin_Mesher::SetDefaultParameters()
184 {
185   netgen::MeshingParameters& mparams = netgen::mparam;
186   // maximal mesh edge size
187   mparams.maxh = 0;//NETGENPlugin_Hypothesis::GetDefaultMaxSize();
188   mparams.minh = 0;
189   // minimal number of segments per edge
190   mparams.segmentsperedge = NETGENPlugin_Hypothesis::GetDefaultNbSegPerEdge();
191   // rate of growth of size between elements
192   mparams.grading = NETGENPlugin_Hypothesis::GetDefaultGrowthRate();
193   // safety factor for curvatures (elements per radius)
194   mparams.curvaturesafety = NETGENPlugin_Hypothesis::GetDefaultNbSegPerRadius();
195   // create elements of second order
196   mparams.secondorder = NETGENPlugin_Hypothesis::GetDefaultSecondOrder() ? 1 : 0;
197   // quad-dominated surface meshing
198   if (_isVolume)
199     mparams.quad = 0;
200   else
201     mparams.quad = NETGENPlugin_Hypothesis_2D::GetDefaultQuadAllowed() ? 1 : 0;
202   _fineness = NETGENPlugin_Hypothesis::GetDefaultFineness();
203 }
204
205 //=============================================================================
206 /*!
207  *
208  */
209 //=============================================================================
210 void SetLocalSize(TopoDS_Shape GeomShape, double LocalSize)
211 {
212   TopAbs_ShapeEnum GeomType = GeomShape.ShapeType();
213   if (GeomType == TopAbs_COMPOUND) {
214     for (TopoDS_Iterator it (GeomShape); it.More(); it.Next()) {
215       SetLocalSize(it.Value(), LocalSize);
216     }
217     return;
218   }
219   int key;
220   if (! ShapesWithLocalSize.Contains(GeomShape))
221     key = ShapesWithLocalSize.Add(GeomShape);
222   else
223     key = ShapesWithLocalSize.FindIndex(GeomShape);
224   if (GeomType == TopAbs_VERTEX) {
225     VertexId2LocalSize[key] = LocalSize;
226   } else if (GeomType == TopAbs_EDGE) {
227     EdgeId2LocalSize[key] = LocalSize;
228   } else if (GeomType == TopAbs_FACE) {
229     FaceId2LocalSize[key] = LocalSize;
230   }
231 }
232
233 //=============================================================================
234 /*!
235  * Pass parameters to NETGEN
236  */
237 //=============================================================================
238 void NETGENPlugin_Mesher::SetParameters(const NETGENPlugin_Hypothesis* hyp)
239 {
240   if (hyp)
241   {
242     netgen::MeshingParameters& mparams = netgen::mparam;
243     // Initialize global NETGEN parameters:
244     // maximal mesh segment size
245     mparams.maxh = hyp->GetMaxSize();
246     // maximal mesh element linear size
247     mparams.minh = hyp->GetMinSize();
248     // minimal number of segments per edge
249     mparams.segmentsperedge = hyp->GetNbSegPerEdge();
250     // rate of growth of size between elements
251     mparams.grading = hyp->GetGrowthRate();
252     // safety factor for curvatures (elements per radius)
253     mparams.curvaturesafety = hyp->GetNbSegPerRadius();
254     // create elements of second order
255     mparams.secondorder = hyp->GetSecondOrder() ? 1 : 0;
256     // quad-dominated surface meshing
257     // only triangles are allowed for volumic mesh (before realizing IMP 0021676)
258     //if (!_isVolume)
259       mparams.quad = hyp->GetQuadAllowed() ? 1 : 0;
260     _optimize = hyp->GetOptimize();
261     _fineness = hyp->GetFineness();
262     _simpleHyp = NULL;
263
264     SMESH_Gen_i* smeshGen_i = SMESH_Gen_i::GetSMESHGen();
265     CORBA::Object_var anObject = smeshGen_i->GetNS()->Resolve("/myStudyManager");
266     SALOMEDS::StudyManager_var aStudyMgr = SALOMEDS::StudyManager::_narrow(anObject);
267     SALOMEDS::Study_var myStudy = aStudyMgr->GetStudyByID(hyp->GetStudyId());
268     
269     const NETGENPlugin_Hypothesis::TLocalSize localSizes = hyp->GetLocalSizesAndEntries();
270     NETGENPlugin_Hypothesis::TLocalSize::const_iterator it = localSizes.begin();
271     for (it ; it != localSizes.end() ; it++)
272       {
273         std::string entry = (*it).first;
274         double val = (*it).second;
275         // --
276         GEOM::GEOM_Object_var aGeomObj;
277         TopoDS_Shape S = TopoDS_Shape();
278         SALOMEDS::SObject_var aSObj = myStudy->FindObjectID( entry.c_str() );
279         if (!aSObj->_is_nil()) {
280           CORBA::Object_var obj = aSObj->GetObject();
281           aGeomObj = GEOM::GEOM_Object::_narrow(obj);
282           aSObj->UnRegister();
283         }
284         if ( !aGeomObj->_is_nil() )
285           S = smeshGen_i->GeomObjectToShape( aGeomObj.in() );
286         // --
287         SetLocalSize(S, val);
288       }
289   }
290 }
291
292 //=============================================================================
293 /*!
294  * Pass simple parameters to NETGEN
295  */
296 //=============================================================================
297
298 void NETGENPlugin_Mesher::SetParameters(const NETGENPlugin_SimpleHypothesis_2D* hyp)
299 {
300   _simpleHyp = hyp;
301   if ( _simpleHyp )
302     SetDefaultParameters();
303 }
304
305 //=============================================================================
306 /*!
307  *  Link - a pair of integer numbers
308  */
309 //=============================================================================
310 struct Link
311 {
312   int n1, n2;
313   Link(int _n1, int _n2) : n1(_n1), n2(_n2) {}
314   Link() : n1(0), n2(0) {}
315 };
316
317 int HashCode(const Link& aLink, int aLimit)
318 {
319   return HashCode(aLink.n1 + aLink.n2, aLimit);
320 }
321
322 Standard_Boolean IsEqual(const Link& aLink1, const Link& aLink2)
323 {
324   return (aLink1.n1 == aLink2.n1 && aLink1.n2 == aLink2.n2 ||
325           aLink1.n1 == aLink2.n2 && aLink1.n2 == aLink2.n1);
326 }
327
328 namespace
329 {
330   //================================================================================
331   /*!
332    * \brief return id of netgen point corresponding to SMDS node
333    */
334   //================================================================================
335   typedef map< const SMDS_MeshNode*, int > TNode2IdMap;
336
337   int ngNodeId( const SMDS_MeshNode* node,
338                 netgen::Mesh&        ngMesh,
339                 TNode2IdMap&         nodeNgIdMap)
340   {
341     int newNgId = ngMesh.GetNP() + 1;
342
343     TNode2IdMap::iterator node_id = nodeNgIdMap.insert( make_pair( node, newNgId )).first;
344
345     if ( node_id->second == newNgId)
346     {
347 #if defined(DUMP_SEGMENTS) || defined(DUMP_TRIANGLES)
348       cout << "Ng " << newNgId << " - " << node;
349 #endif
350       netgen::MeshPoint p( netgen::Point<3> (node->X(), node->Y(), node->Z()) );
351       ngMesh.AddPoint( p );
352     }
353     return node_id->second;
354   }
355
356   //================================================================================
357   /*!
358    * \brief Return computed EDGEs connected to the given one
359    */
360   //================================================================================
361
362   list< TopoDS_Edge > getConnectedEdges( const TopoDS_Edge&                 edge,
363                                          const TopoDS_Face&                 face,
364                                          const set< SMESH_subMesh* > &      computedSM,
365                                          const SMESH_MesherHelper&          helper,
366                                          map< SMESH_subMesh*, set< int > >& addedEdgeSM2Faces)
367   {
368     // get ordered EDGEs
369     list< TopoDS_Edge > edges;
370     list< int > nbEdgesInWire;
371     int nbWires = SMESH_Block::GetOrderedEdges( face, edges, nbEdgesInWire);
372
373     // find <edge> within <edges>
374     list< TopoDS_Edge >::iterator eItFwd = edges.begin();
375     for ( ; eItFwd != edges.end(); ++eItFwd )
376       if ( edge.IsSame( *eItFwd ))
377         break;
378     if ( eItFwd == edges.end()) return list< TopoDS_Edge>();
379
380     if ( eItFwd->Orientation() >= TopAbs_INTERNAL )
381     {
382       // connected INTERNAL edges returned from GetOrderedEdges() are wrongly oriented
383       // so treat each INTERNAL edge separately
384       TopoDS_Edge e = *eItFwd;
385       edges.clear();
386       edges.push_back( e );
387       return edges;
388     }
389
390     // get all computed EDGEs connected to <edge>
391
392     list< TopoDS_Edge >::iterator eItBack = eItFwd, ePrev;
393     TopoDS_Vertex vCommon;
394     TopTools_MapOfShape eAdded; // map used not to add a seam edge twice to <edges>
395     eAdded.Add( edge );
396
397     // put edges before <edge> to <edges> back
398     while ( edges.begin() != eItFwd )
399       edges.splice( edges.end(), edges, edges.begin() );
400
401     // search forward
402     ePrev = eItFwd;
403     while ( ++eItFwd != edges.end() )
404     {
405       SMESH_subMesh* sm = helper.GetMesh()->GetSubMesh( *eItFwd );
406
407       bool connected = TopExp::CommonVertex( *ePrev, *eItFwd, vCommon );
408       bool computed  = sm->IsMeshComputed();
409       bool added     = addedEdgeSM2Faces[ sm ].count( helper.GetSubShapeID() );
410       bool doubled   = !eAdded.Add( *eItFwd );
411       bool orientOK  = (( ePrev ->Orientation() < TopAbs_INTERNAL ) ==
412                         ( eItFwd->Orientation() < TopAbs_INTERNAL )    );
413       if ( !connected || !computed || !orientOK || added || doubled )
414       {
415         // stop advancement; move edges from tail to head
416         while ( edges.back() != *ePrev )
417           edges.splice( edges.begin(), edges, --edges.end() );
418         break;
419       }
420       ePrev = eItFwd;
421     }
422     // search backward
423     while ( eItBack != edges.begin() )
424     {
425       ePrev = eItBack;
426       --eItBack;
427       SMESH_subMesh* sm = helper.GetMesh()->GetSubMesh( *eItBack );
428
429       bool connected = TopExp::CommonVertex( *ePrev, *eItBack, vCommon );
430       bool computed  = sm->IsMeshComputed();
431       bool added     = addedEdgeSM2Faces[ sm ].count( helper.GetSubShapeID() );
432       bool doubled   = !eAdded.Add( *eItBack );
433       bool orientOK  = (( ePrev  ->Orientation() < TopAbs_INTERNAL ) ==
434                         ( eItBack->Orientation() < TopAbs_INTERNAL )    );
435       if ( !connected || !computed || !orientOK || added || doubled)
436       {
437         // stop advancement
438         edges.erase( edges.begin(), ePrev );
439         break;
440       }
441     }
442     if ( edges.front() != edges.back() )
443     {
444       // assure that the 1st vertex is meshed
445       TopoDS_Edge eLast = edges.back();
446       while ( !SMESH_Algo::VertexNode( SMESH_MesherHelper::IthVertex( 0, edges.front()), helper.GetMeshDS())
447               &&
448               edges.front() != eLast )
449         edges.splice( edges.end(), edges, edges.begin() );
450     }
451     return edges;
452   }
453
454   //================================================================================
455   /*!
456    * \brief Make triangulation of a shape precise enough
457    */
458   //================================================================================
459
460   void updateTriangulation( const TopoDS_Shape& shape )
461   {
462     // static set< Poly_Triangulation* > updated;
463
464     // TopLoc_Location loc;
465     // TopExp_Explorer fExp( shape, TopAbs_FACE );
466     // for ( ; fExp.More(); fExp.Next() )
467     // {
468     //   Handle(Poly_Triangulation) triangulation =
469     //     BRep_Tool::Triangulation ( TopoDS::Face( fExp.Current() ), loc);
470     //   if ( triangulation.IsNull() ||
471     //        updated.insert( triangulation.operator->() ).second )
472     //   {
473     //     BRepTools::Clean (shape);
474         try {
475           OCC_CATCH_SIGNALS;
476           BRepMesh_IncrementalMesh e(shape, 0.01, true);
477         }
478         catch (Standard_Failure)
479         {
480         }
481   //       updated.erase( triangulation.operator->() );
482   //       triangulation = BRep_Tool::Triangulation ( TopoDS::Face( fExp.Current() ), loc);
483   //       updated.insert( triangulation.operator->() );
484   //     }
485   //   }
486   }
487 }
488
489 //================================================================================
490 /*!
491  * \brief Initialize netgen::OCCGeometry with OCCT shape
492  */
493 //================================================================================
494
495 void NETGENPlugin_Mesher::PrepareOCCgeometry(netgen::OCCGeometry&     occgeo,
496                                              const TopoDS_Shape&      shape,
497                                              SMESH_Mesh&              mesh,
498                                              list< SMESH_subMesh* > * meshedSM,
499                                              NETGENPlugin_Internals*  intern)
500 {
501   updateTriangulation( shape );
502
503   Bnd_Box bb;
504   BRepBndLib::Add (shape, bb);
505   double x1,y1,z1,x2,y2,z2;
506   bb.Get (x1,y1,z1,x2,y2,z2);
507   MESSAGE("shape bounding box:\n" <<
508           "(" << x1 << " " << y1 << " " << z1 << ") " <<
509           "(" << x2 << " " << y2 << " " << z2 << ")");
510   netgen::Point<3> p1 = netgen::Point<3> (x1,y1,z1);
511   netgen::Point<3> p2 = netgen::Point<3> (x2,y2,z2);
512   occgeo.boundingbox = netgen::Box<3> (p1,p2);
513
514   occgeo.shape = shape;
515   occgeo.changed = 1;
516
517   // fill maps of shapes of occgeo with not yet meshed subshapes
518
519   // get root submeshes
520   list< SMESH_subMesh* > rootSM;
521   const int shapeID = mesh.GetMeshDS()->ShapeToIndex( shape );
522   if ( shapeID > 0 ) { // SMESH_subMesh with ID 0 may exist, don't use it!
523     rootSM.push_back( mesh.GetSubMesh( shape ));
524   }
525   else {
526     for ( TopoDS_Iterator it( shape ); it.More(); it.Next() )
527       rootSM.push_back( mesh.GetSubMesh( it.Value() ));
528   }
529
530   // add subshapes of empty submeshes
531   list< SMESH_subMesh* >::iterator rootIt = rootSM.begin(), rootEnd = rootSM.end();
532   for ( ; rootIt != rootEnd; ++rootIt ) {
533     SMESH_subMesh * root = *rootIt;
534     SMESH_subMeshIteratorPtr smIt = root->getDependsOnIterator(/*includeSelf=*/true,
535                                                                /*complexShapeFirst=*/true);
536     // to find a right orientation of subshapes (PAL20462)
537     TopTools_IndexedMapOfShape subShapes;
538     TopExp::MapShapes(root->GetSubShape(), subShapes);
539     while ( smIt->more() )
540     {
541       SMESH_subMesh* sm = smIt->next();
542       TopoDS_Shape shape = sm->GetSubShape();
543       if ( intern && intern->isShapeToPrecompute( shape ))
544         continue;
545       if ( !meshedSM || sm->IsEmpty() )
546       {
547         if ( shape.ShapeType() != TopAbs_VERTEX )
548           shape = subShapes( subShapes.FindIndex( shape ));// shape -> index -> oriented shape
549         if ( shape.Orientation() >= TopAbs_INTERNAL )
550           shape.Orientation( TopAbs_FORWARD ); // isuue 0020676
551         switch ( shape.ShapeType() ) {
552         case TopAbs_FACE  : occgeo.fmap.Add( shape ); break;
553         case TopAbs_EDGE  : occgeo.emap.Add( shape ); break;
554         case TopAbs_VERTEX: occgeo.vmap.Add( shape ); break;
555         case TopAbs_SOLID :occgeo.somap.Add( shape ); break;
556         default:;
557         }
558       }
559       // collect submeshes of meshed shapes
560       else if (meshedSM)
561       {
562         const int dim = SMESH_Gen::GetShapeDim( shape );
563         meshedSM[ dim ].push_back( sm );
564       }
565     }
566   }
567   occgeo.facemeshstatus.SetSize (occgeo.fmap.Extent());
568   occgeo.facemeshstatus = 0;
569   occgeo.face_maxh_modified.SetSize(occgeo.fmap.Extent());
570   occgeo.face_maxh_modified = 0;
571   occgeo.face_maxh.SetSize(occgeo.fmap.Extent());
572   occgeo.face_maxh = netgen::mparam.maxh;
573 }
574
575 //================================================================================
576 /*!
577  * \brief Return a default min size value suitable for the given geometry.
578  */
579 //================================================================================
580
581 double NETGENPlugin_Mesher::GetDefaultMinSize(const TopoDS_Shape& geom,
582                                               const double        maxSize)
583 {
584   updateTriangulation( geom );
585
586   TopLoc_Location loc;
587   int i1, i2, i3;
588   const int* pi[4] = { &i1, &i2, &i3, &i1 };
589   double minh = 1e100;
590   Bnd_B3d bb;
591   TopExp_Explorer fExp( geom, TopAbs_FACE );
592   for ( ; fExp.More(); fExp.Next() )
593   {
594     Handle(Poly_Triangulation) triangulation =
595       BRep_Tool::Triangulation ( TopoDS::Face( fExp.Current() ), loc);
596     if ( triangulation.IsNull() ) continue;
597     const double fTol = BRep_Tool::Tolerance( TopoDS::Face( fExp.Current() ));
598     const TColgp_Array1OfPnt&   points = triangulation->Nodes();
599     const Poly_Array1OfTriangle& trias = triangulation->Triangles();
600     for ( int iT = trias.Lower(); iT <= trias.Upper(); ++iT )
601     {
602       trias(iT).Get( i1, i2, i3 );
603       for ( int j = 0; j < 3; ++j )
604       {
605         double dist2 = points(*pi[j]).SquareDistance( points( *pi[j+1] ));
606         if ( dist2 < minh && fTol*fTol < dist2 )
607           minh = dist2;
608         bb.Add( points(*pi[j]));
609       }
610     }
611   }
612   if ( minh > 0.25 * bb.SquareExtent() ) // simple geometry, rough triangulation
613   {
614     minh = 1e-3 * sqrt( bb.SquareExtent());
615     //cout << "BND BOX minh = " <<minh << endl;
616   }
617   else
618   {
619     minh = 3 * sqrt( minh ); // triangulation for visualization is rather fine
620     //cout << "TRIANGULATION minh = " <<minh << endl;
621   }
622   if ( minh > 0.5 * maxSize )
623     minh = maxSize / 3.;
624
625   return minh;
626 }
627
628 //================================================================================
629 /*!
630  * \brief Restrict size of elements at a given point
631  */
632 //================================================================================
633
634 void NETGENPlugin_Mesher::RestrictLocalSize(netgen::Mesh& ngMesh, const gp_XYZ& p, const double size)
635 {
636   if ( netgen::mparam.minh > size )
637   {
638     ngMesh.SetMinimalH( size );
639     netgen::mparam.minh = size;
640   }
641   netgen::Point3d pi(p.X(), p.Y(), p.Z());
642   ngMesh.RestrictLocalH( pi, size );
643 }
644
645 //================================================================================
646 /*!
647  * \brief fill ngMesh with nodes and elements of computed submeshes
648  */
649 //================================================================================
650
651 bool NETGENPlugin_Mesher::FillNgMesh(netgen::OCCGeometry&           occgeom,
652                                      netgen::Mesh&                  ngMesh,
653                                      vector<const SMDS_MeshNode*>&  nodeVec,
654                                      const list< SMESH_subMesh* > & meshedSM,
655                                      SMESH_ProxyMesh::Ptr           proxyMesh)
656 {
657   TNode2IdMap nodeNgIdMap;
658   for ( int i = 1; i < nodeVec.size(); ++i )
659     nodeNgIdMap.insert( make_pair( nodeVec[i], i ));
660
661   TopTools_MapOfShape visitedShapes;
662   map< SMESH_subMesh*, set< int > > visitedEdgeSM2Faces;
663   set< SMESH_subMesh* > computedSM( meshedSM.begin(), meshedSM.end() );
664
665   SMESH_MesherHelper helper (*_mesh);
666
667   int faceNgID = ngMesh.GetNFD();
668
669   list< SMESH_subMesh* >::const_iterator smIt, smEnd = meshedSM.end();
670   for ( smIt = meshedSM.begin(); smIt != smEnd; ++smIt )
671   {
672     SMESH_subMesh* sm = *smIt;
673     if ( !visitedShapes.Add( sm->GetSubShape() ))
674       continue;
675
676     const SMESHDS_SubMesh * smDS = sm->GetSubMeshDS();
677     if ( !smDS ) continue;
678
679     switch ( sm->GetSubShape().ShapeType() )
680     {
681     case TopAbs_EDGE: { // EDGE
682       // ----------------------
683       TopoDS_Edge geomEdge  = TopoDS::Edge( sm->GetSubShape() );
684       if ( geomEdge.Orientation() >= TopAbs_INTERNAL )
685         geomEdge.Orientation( TopAbs_FORWARD ); // issue 0020676
686
687       // Add ng segments for each not meshed FACE the EDGE bounds
688       PShapeIteratorPtr fIt = helper.GetAncestors( geomEdge, *sm->GetFather(), TopAbs_FACE );
689       while ( const TopoDS_Shape * anc = fIt->next() )
690       {
691         faceNgID = occgeom.fmap.FindIndex( *anc );
692         if ( faceNgID < 1 )
693           continue; // meshed face
694
695         int faceSMDSId = helper.GetMeshDS()->ShapeToIndex( *anc );
696         if ( visitedEdgeSM2Faces[ sm ].count( faceSMDSId ))
697           continue; // already treated EDGE
698
699         TopoDS_Face face = TopoDS::Face( occgeom.fmap( faceNgID ));
700         if ( face.Orientation() >= TopAbs_INTERNAL )
701           face.Orientation( TopAbs_FORWARD ); // issue 0020676
702
703         // get all meshed EDGEs of the FACE connected to geomEdge (issue 0021140)
704         helper.SetSubShape( face );
705         list< TopoDS_Edge > edges = getConnectedEdges( geomEdge, face, computedSM, helper,
706                                                        visitedEdgeSM2Faces );
707         if ( edges.empty() )
708           continue; // wrong ancestor?
709
710         // find out orientation of <edges> within <face>
711         TopoDS_Edge eNotSeam = edges.front();
712         if ( helper.HasSeam() )
713         {
714           list< TopoDS_Edge >::iterator eIt = edges.begin();
715           while ( helper.IsRealSeam( *eIt )) ++eIt;
716           if ( eIt != edges.end() )
717             eNotSeam = *eIt;
718         }
719         TopAbs_Orientation fOri = helper.GetSubShapeOri( face, eNotSeam );
720         bool isForwad = ( fOri == eNotSeam.Orientation() || fOri >= TopAbs_INTERNAL );
721
722         // get all nodes from connected <edges>
723         bool isQuad   = smDS->NbElements() ? smDS->GetElements()->next()->IsQuadratic() : false;
724         StdMeshers_FaceSide fSide( face, edges, _mesh, isForwad, isQuad );
725         const vector<UVPtStruct>& points = fSide.GetUVPtStruct();
726         int i, nbSeg = fSide.NbSegments();
727
728         // remember EDGEs of fSide to treat only once
729         for ( int iE = 0; iE < fSide.NbEdges(); ++iE )
730           visitedEdgeSM2Faces[ helper.GetMesh()->GetSubMesh( fSide.Edge(iE )) ].insert(faceSMDSId);
731
732         double otherSeamParam = 0;
733         bool isSeam = false;
734
735         // add segments
736
737         int prevNgId = ngNodeId( points[0].node, ngMesh, nodeNgIdMap );
738
739         for ( i = 0; i < nbSeg; ++i )
740         {
741           const UVPtStruct& p1 = points[ i ];
742           const UVPtStruct& p2 = points[ i+1 ];
743
744           if ( p1.node->GetPosition()->GetTypeOfPosition() == SMDS_TOP_VERTEX ) //an EDGE begins
745           {
746             isSeam = false;
747             if ( helper.IsRealSeam( p1.node->getshapeId() ))
748             {
749               TopoDS_Edge e = fSide.Edge( fSide.EdgeIndex( 0.5 * ( p1.normParam + p2.normParam )));
750               isSeam = helper.IsRealSeam( e );
751               if ( isSeam )
752               {
753                 otherSeamParam = helper.GetOtherParam( helper.GetPeriodicIndex() & 1 ? p2.u : p2.v );
754               }
755             }
756           }
757           netgen::Segment seg;
758           // ng node ids
759           seg[0] = prevNgId;
760           seg[1] = prevNgId = ngNodeId( p2.node, ngMesh, nodeNgIdMap );
761           // node param on curve
762           seg.epgeominfo[ 0 ].dist = p1.param;
763           seg.epgeominfo[ 1 ].dist = p2.param;
764           // uv on face
765           seg.epgeominfo[ 0 ].u = p1.u;
766           seg.epgeominfo[ 0 ].v = p1.v;
767           seg.epgeominfo[ 1 ].u = p2.u;
768           seg.epgeominfo[ 1 ].v = p2.v;
769
770           //geomEdge = fSide.Edge( fSide.EdgeIndex( 0.5 * ( p1.normParam + p2.normParam )));
771           //seg.epgeominfo[ 0 ].edgenr = seg.epgeominfo[ 1 ].edgenr = occgeom.emap.FindIndex( geomEdge );
772
773           //seg.epgeominfo[ iEnd ].edgenr = edgeID; //  = geom.emap.FindIndex(edge);
774           seg.si = faceNgID;                   // = geom.fmap.FindIndex (face);
775           seg.edgenr = ngMesh.GetNSeg() + 1; // segment id
776           ngMesh.AddSegment (seg);
777
778           SMESH_TNodeXYZ np1( p1.node ), np2( p2.node );
779           RestrictLocalSize( ngMesh, 0.5*(np1+np2), (np1-np2).Modulus() );
780
781 #ifdef DUMP_SEGMENTS
782           cout << "Segment: " << seg.edgenr << " on SMESH face " << helper.GetMeshDS()->ShapeToIndex( face ) << endl
783                << "\tface index: " << seg.si << endl
784                << "\tp1: " << seg[0] << endl
785                << "\tp2: " << seg[1] << endl
786                << "\tp0 param: " << seg.epgeominfo[ 0 ].dist << endl
787                << "\tp0 uv: " << seg.epgeominfo[ 0 ].u <<", "<< seg.epgeominfo[ 0 ].v << endl
788             //<< "\tp0 edge: " << seg.epgeominfo[ 0 ].edgenr << endl
789                << "\tp1 param: " << seg.epgeominfo[ 1 ].dist << endl
790                << "\tp1 uv: " << seg.epgeominfo[ 1 ].u <<", "<< seg.epgeominfo[ 1 ].v << endl;
791             //<< "\tp1 edge: " << seg.epgeominfo[ 1 ].edgenr << endl;
792 #endif
793           if ( isSeam )
794           {
795             if ( helper.GetPeriodicIndex() && 1 ) {
796               seg.epgeominfo[ 0 ].u = otherSeamParam;
797               seg.epgeominfo[ 1 ].u = otherSeamParam;
798               swap (seg.epgeominfo[0].v, seg.epgeominfo[1].v);
799             } else {
800               seg.epgeominfo[ 0 ].v = otherSeamParam;
801               seg.epgeominfo[ 1 ].v = otherSeamParam;
802               swap (seg.epgeominfo[0].u, seg.epgeominfo[1].u);
803             }
804             swap (seg[0], seg[1]);
805             swap (seg.epgeominfo[0].dist, seg.epgeominfo[1].dist);
806             seg.edgenr = ngMesh.GetNSeg() + 1; // segment id
807             ngMesh.AddSegment (seg);
808 #ifdef DUMP_SEGMENTS
809             cout << "Segment: " << seg.edgenr << endl
810                  << "\t is SEAM (reverse) of the previous. "
811                  << " Other " << (helper.GetPeriodicIndex() && 1 ? "U" : "V")
812                  << " = " << otherSeamParam << endl;
813 #endif
814           }
815           else if ( fOri == TopAbs_INTERNAL )
816           {
817             swap (seg[0], seg[1]);
818             swap( seg.epgeominfo[0], seg.epgeominfo[1] );
819             seg.edgenr = ngMesh.GetNSeg() + 1; // segment id
820             ngMesh.AddSegment (seg);
821 #ifdef DUMP_SEGMENTS
822             cout << "Segment: " << seg.edgenr << endl << "\t is REVERSE of the previous" << endl;
823 #endif
824           }
825         }
826       } // loop on geomEdge ancestors
827
828       break;
829     } // case TopAbs_EDGE
830
831     case TopAbs_FACE: { // FACE
832       // ----------------------
833       const TopoDS_Face& geomFace  = TopoDS::Face( sm->GetSubShape() );
834       helper.SetSubShape( geomFace );
835       bool isInternalFace = ( geomFace.Orientation() == TopAbs_INTERNAL );
836
837       // Find solids the geomFace bounds
838       int solidID1 = 0, solidID2 = 0;
839       StdMeshers_QuadToTriaAdaptor* quadAdaptor =
840         dynamic_cast<StdMeshers_QuadToTriaAdaptor*>( proxyMesh.get() );
841       if ( quadAdaptor )
842       {
843         solidID1 = occgeom.somap.FindIndex( quadAdaptor->GetShape() );
844       }
845       else
846       {  
847         PShapeIteratorPtr solidIt = helper.GetAncestors( geomFace, *sm->GetFather(), TopAbs_SOLID);
848         while ( const TopoDS_Shape * solid = solidIt->next() )
849         {
850           int id = occgeom.somap.FindIndex ( *solid );
851           if ( solidID1 && id != solidID1 ) solidID2 = id;
852           else                              solidID1 = id;
853         }
854       }
855       // Add ng face descriptors of meshed faces
856       faceNgID++;
857       ngMesh.AddFaceDescriptor (netgen::FaceDescriptor(faceNgID, solidID1, solidID2, 0));
858
859       // if second oreder is required, even already meshed faces must be passed to NETGEN
860       int fID = occgeom.fmap.Add( geomFace );
861       while ( fID < faceNgID ) // geomFace is already in occgeom.fmap, add a copy
862         fID = occgeom.fmap.Add( BRepBuilderAPI_Copy( geomFace, /*copyGeom=*/false ));
863       // Problem with the second order in a quadrangular mesh remains.
864       // 1) All quadrangles geberated by NETGEN are moved to an inexistent face
865       //    by FillSMesh() (find AddFaceDescriptor)
866       // 2) Temporary triangles generated by StdMeshers_QuadToTriaAdaptor
867       //    are on faces where quadrangles were.
868       // Due to these 2 points, wrong geom faces are used while conversion to qudratic
869       // of the mentioned above quadrangles and triangles
870
871       // Orient the face correctly in solidID1 (issue 0020206)
872       bool reverse = false;
873       if ( solidID1 ) {
874         TopoDS_Shape solid = occgeom.somap( solidID1 );
875         TopAbs_Orientation faceOriInSolid = helper.GetSubShapeOri( solid, geomFace );
876         if ( faceOriInSolid >= 0 )
877           reverse =
878             helper.IsReversedSubMesh( TopoDS::Face( geomFace.Oriented( faceOriInSolid )));
879       }
880
881       // Add surface elements
882
883       netgen::Element2d tri(3);
884       tri.SetIndex ( faceNgID );
885
886
887 #ifdef DUMP_TRIANGLES
888       cout << "SMESH face " << helper.GetMeshDS()->ShapeToIndex( geomFace )
889            << " internal="<<isInternalFace << endl;
890 #endif
891       if ( proxyMesh )
892         smDS = proxyMesh->GetSubMesh( geomFace );
893
894       SMDS_ElemIteratorPtr faces = smDS->GetElements();
895       while ( faces->more() )
896       {
897         const SMDS_MeshElement* f = faces->next();
898         if ( f->NbNodes() % 3 != 0 ) // not triangle
899         {
900           PShapeIteratorPtr solidIt=helper.GetAncestors(geomFace,*sm->GetFather(),TopAbs_SOLID);
901           if ( const TopoDS_Shape * solid = solidIt->next() )
902             sm = _mesh->GetSubMesh( *solid );
903           SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
904           smError.reset( new SMESH_ComputeError(COMPERR_BAD_INPUT_MESH,"Not triangle submesh"));
905           smError->myBadElements.push_back( f );
906           return false;
907         }
908
909         for ( int i = 0; i < 3; ++i )
910         {
911           const SMDS_MeshNode* node = f->GetNode( i ), * inFaceNode=0;
912
913           // get node UV on face
914           int shapeID = node->getshapeId();
915           if ( helper.IsSeamShape( shapeID ))
916             if ( helper.IsSeamShape( f->GetNodeWrap( i+1 )->getshapeId() ))
917               inFaceNode = f->GetNodeWrap( i-1 );
918             else 
919               inFaceNode = f->GetNodeWrap( i+1 );
920           gp_XY uv = helper.GetNodeUV( geomFace, node, inFaceNode );
921
922           int ind = reverse ? 3-i : i+1;
923           tri.GeomInfoPi(ind).u = uv.X();
924           tri.GeomInfoPi(ind).v = uv.Y();
925           tri.PNum      (ind) = ngNodeId( node, ngMesh, nodeNgIdMap );
926         }
927
928         ngMesh.AddSurfaceElement (tri);
929 #ifdef DUMP_TRIANGLES
930         cout << tri << endl;
931 #endif
932
933         if ( isInternalFace )
934         {
935           swap( tri[1], tri[2] );
936           ngMesh.AddSurfaceElement (tri);
937 #ifdef DUMP_TRIANGLES
938         cout << tri << endl;
939 #endif
940         }
941       }
942       break;
943     } // case TopAbs_FACE
944
945     case TopAbs_VERTEX: { // VERTEX
946       // --------------------------
947       // issue 0021405. Add node only if a VERTEX is shared by a not meshed EDGE,
948       // else netgen removes a free node and nodeVector becomes invalid
949       PShapeIteratorPtr ansIt = helper.GetAncestors( sm->GetSubShape(),
950                                                      *sm->GetFather(),
951                                                      TopAbs_EDGE );
952       bool toAdd = false;
953       while ( const TopoDS_Shape* e = ansIt->next() )
954       {
955         SMESH_subMesh* eSub = helper.GetMesh()->GetSubMesh( *e );
956         if (( toAdd = eSub->IsEmpty() )) break;
957       }
958       if ( toAdd )
959       {
960         SMDS_NodeIteratorPtr nodeIt = smDS->GetNodes();
961         if ( nodeIt->more() )
962           ngNodeId( nodeIt->next(), ngMesh, nodeNgIdMap );
963       }
964       break;
965     }
966     default:;
967     } // switch
968   } // loop on submeshes
969
970   // fill nodeVec
971   nodeVec.resize( ngMesh.GetNP() + 1 );
972   TNode2IdMap::iterator node_NgId, nodeNgIdEnd = nodeNgIdMap.end();
973   for ( node_NgId = nodeNgIdMap.begin(); node_NgId != nodeNgIdEnd; ++node_NgId)
974     nodeVec[ node_NgId->second ] = node_NgId->first;
975
976   return true;
977 }
978
979 //================================================================================
980 /*!
981  * \brief Duplicate mesh faces on internal geom faces
982  */
983 //================================================================================
984
985 void NETGENPlugin_Mesher::FixIntFaces(const netgen::OCCGeometry& occgeom,
986                                       netgen::Mesh&              ngMesh,
987                                       NETGENPlugin_Internals&    internalShapes)
988 {
989   SMESHDS_Mesh* meshDS = internalShapes.getMesh().GetMeshDS();
990   
991   // find ng indices of internal faces
992   set<int> ngFaceIds;
993   for ( int ngFaceID = 1; ngFaceID <= occgeom.fmap.Extent(); ++ngFaceID )
994   {
995     int smeshID = meshDS->ShapeToIndex( occgeom.fmap( ngFaceID ));
996     if ( internalShapes.isInternalShape( smeshID ))
997       ngFaceIds.insert( ngFaceID );
998   }
999   if ( !ngFaceIds.empty() )
1000   {
1001     // duplicate faces
1002     int i, nbFaces = ngMesh.GetNSE();
1003     for (int i = 1; i <= nbFaces; ++i)
1004     {
1005       netgen::Element2d elem = ngMesh.SurfaceElement(i);
1006       if ( ngFaceIds.count( elem.GetIndex() ))
1007       {
1008         swap( elem[1], elem[2] );
1009         ngMesh.AddSurfaceElement (elem);
1010       }
1011     }
1012   }
1013 }
1014
1015 namespace
1016 {
1017   //================================================================================
1018   // define gp_XY_Subtracted pointer to function calling gp_XY::Subtracted(gp_XY)
1019   gp_XY_FunPtr(Subtracted);
1020   //gp_XY_FunPtr(Added);
1021
1022   //================================================================================
1023   /*!
1024    * \brief Evaluate distance between two 2d points along the surface
1025    */
1026   //================================================================================
1027
1028   double evalDist( const gp_XY&                uv1,
1029                    const gp_XY&                uv2,
1030                    const Handle(Geom_Surface)& surf,
1031                    const int                   stopHandler=-1)
1032   {
1033     if ( stopHandler > 0 ) // continue recursion
1034     {
1035       gp_XY mid = SMESH_MesherHelper::GetMiddleUV( surf, uv1, uv2 );
1036       return evalDist( uv1,mid, surf, stopHandler-1 ) + evalDist( mid,uv2, surf, stopHandler-1 );
1037     }
1038     double dist3D = surf->Value( uv1.X(), uv1.Y() ).Distance( surf->Value( uv2.X(), uv2.Y() ));
1039     if ( stopHandler == 0 ) // stop recursion
1040       return dist3D;
1041     
1042     // start recursion if necessary
1043     double dist2D = SMESH_MesherHelper::applyIn2D(surf, uv1, uv2, gp_XY_Subtracted, 0).Modulus();
1044     if ( fabs( dist3D - dist2D ) < dist2D * 1e-10 )
1045       return dist3D; // equal parametrization of a planar surface
1046
1047     return evalDist( uv1, uv2, surf, 3 ); // start recursion
1048   }
1049
1050   //================================================================================
1051   /*!
1052    * \brief Data of vertex internal in geom face
1053    */
1054   //================================================================================
1055
1056   struct TIntVData
1057   {
1058     gp_XY uv;        //!< UV in face parametric space
1059     int   ngId;      //!< ng id of corrsponding node
1060     gp_XY uvClose;   //!< UV of closest boundary node
1061     int   ngIdClose; //!< ng id of closest boundary node
1062   };
1063
1064   //================================================================================
1065   /*!
1066    * \brief Data of vertex internal in solid
1067    */
1068   //================================================================================
1069
1070   struct TIntVSoData
1071   {
1072     int   ngId;      //!< ng id of corresponding node
1073     int   ngIdClose; //!< ng id of closest 2d mesh element
1074     int   ngIdCloseN; //!< ng id of closest node of the closest 2d mesh element
1075   };
1076
1077   inline double dist2(const netgen::MeshPoint& p1, const netgen::MeshPoint& p2)
1078   {
1079     return gp_Pnt( NGPOINT_COORDS(p1)).SquareDistance( gp_Pnt( NGPOINT_COORDS(p2)));
1080   }
1081 }
1082
1083 //================================================================================
1084 /*!
1085  * \brief Make netgen take internal vertices in faces into account by adding
1086  *        segments including internal vertices
1087  *
1088  * This function works in supposition that 1D mesh is already computed in ngMesh
1089  */
1090 //================================================================================
1091
1092 void NETGENPlugin_Mesher::AddIntVerticesInFaces(const netgen::OCCGeometry&     occgeom,
1093                                                 netgen::Mesh&                  ngMesh,
1094                                                 vector<const SMDS_MeshNode*>&  nodeVec,
1095                                                 NETGENPlugin_Internals&        internalShapes)
1096 {
1097   if ( nodeVec.size() < ngMesh.GetNP() )
1098     nodeVec.resize( ngMesh.GetNP(), 0 );
1099
1100   SMESHDS_Mesh* meshDS = internalShapes.getMesh().GetMeshDS();
1101   SMESH_MesherHelper helper( internalShapes.getMesh() );
1102
1103   const map<int,list<int> >& face2Vert = internalShapes.getFacesWithVertices();
1104   map<int,list<int> >::const_iterator f2v = face2Vert.begin();
1105   for ( ; f2v != face2Vert.end(); ++f2v )
1106   {
1107     const TopoDS_Face& face = TopoDS::Face( meshDS->IndexToShape( f2v->first ));
1108     if ( face.IsNull() ) continue;
1109     int faceNgID = occgeom.fmap.FindIndex (face);
1110     if ( faceNgID < 0 ) continue;
1111
1112     TopLoc_Location loc;
1113     Handle(Geom_Surface) surf = BRep_Tool::Surface(face,loc);
1114
1115     helper.SetSubShape( face );
1116     helper.SetElementsOnShape( true );
1117
1118     // Get data of internal vertices and add them to ngMesh
1119
1120     multimap< double, TIntVData > dist2VData; // sort vertices by distance from boundary nodes
1121
1122     int i, nbSegInit = ngMesh.GetNSeg();
1123
1124     // boundary characteristics
1125     double totSegLen2D = 0;
1126     int totNbSeg = 0;
1127
1128     const list<int>& iVertices = f2v->second;
1129     list<int>::const_iterator iv = iVertices.begin();
1130     for ( int nbV = 0; iv != iVertices.end(); ++iv, nbV++ )
1131     {
1132       TIntVData vData;
1133       // get node on vertex
1134       const TopoDS_Vertex V = TopoDS::Vertex( meshDS->IndexToShape( *iv ));
1135       const SMDS_MeshNode * nV = SMESH_Algo::VertexNode( V, meshDS );
1136       if ( !nV )
1137       {
1138         SMESH_subMesh* sm = helper.GetMesh()->GetSubMesh( V );
1139         sm->ComputeStateEngine( SMESH_subMesh::COMPUTE );
1140         nV = SMESH_Algo::VertexNode( V, meshDS );
1141         if ( !nV ) continue;
1142       }
1143       // add ng node
1144       netgen::MeshPoint mp( netgen::Point<3> (nV->X(), nV->Y(), nV->Z()) );
1145       ngMesh.AddPoint ( mp, 1, netgen::EDGEPOINT );
1146       vData.ngId = ngMesh.GetNP();
1147       nodeVec.push_back( nV );
1148
1149       // get node UV
1150       bool uvOK = false;
1151       vData.uv = helper.GetNodeUV( face, nV, 0, &uvOK );
1152       if ( !uvOK ) helper.CheckNodeUV( face, nV, vData.uv, BRep_Tool::Tolerance(V),/*force=*/1);
1153
1154       // loop on all segments of the face to find the node closest to vertex and to count
1155       // average segment 2d length
1156       double closeDist2 = numeric_limits<double>::max(), dist2;
1157       int ngIdLast = 0;
1158       for (i = 1; i <= ngMesh.GetNSeg(); ++i)
1159       {
1160         netgen::Segment & seg = ngMesh.LineSegment(i);
1161         if ( seg.si != faceNgID ) continue;
1162         gp_XY uv[2];
1163         for ( int iEnd = 0; iEnd < 2; ++iEnd)
1164         {
1165           uv[iEnd].SetCoord( seg.epgeominfo[iEnd].u, seg.epgeominfo[iEnd].v );
1166           if ( ngIdLast == seg[ iEnd ] ) continue;
1167           dist2 = helper.applyIn2D(surf, uv[iEnd], vData.uv, gp_XY_Subtracted,0).SquareModulus();
1168           if ( dist2 < closeDist2 )
1169             vData.ngIdClose = seg[ iEnd ], vData.uvClose = uv[iEnd], closeDist2 = dist2;
1170           ngIdLast = seg[ iEnd ];
1171         }
1172         if ( !nbV )
1173         {
1174           totSegLen2D += helper.applyIn2D(surf, uv[0], uv[1], gp_XY_Subtracted, false).Modulus();
1175           totNbSeg++;
1176         }
1177       }
1178       dist2VData.insert( make_pair( closeDist2, vData ));
1179     }
1180
1181     if ( totNbSeg == 0 ) break;
1182     double avgSegLen2d = totSegLen2D / totNbSeg;
1183
1184     // Loop on vertices to add segments
1185
1186     multimap< double, TIntVData >::iterator dist_vData = dist2VData.begin();
1187     for ( ; dist_vData != dist2VData.end(); ++dist_vData )
1188     {
1189       double closeDist2 = dist_vData->first, dist2;
1190       TIntVData & vData = dist_vData->second;
1191
1192       // try to find more close node among segments added for internal vertices
1193       for (i = nbSegInit+1; i <= ngMesh.GetNSeg(); ++i)
1194       {
1195         netgen::Segment & seg = ngMesh.LineSegment(i);
1196         if ( seg.si != faceNgID ) continue;
1197         gp_XY uv[2];
1198         for ( int iEnd = 0; iEnd < 2; ++iEnd)
1199         {
1200           uv[iEnd].SetCoord( seg.epgeominfo[iEnd].u, seg.epgeominfo[iEnd].v );
1201           dist2 = helper.applyIn2D(surf, uv[iEnd], vData.uv, gp_XY_Subtracted,0).SquareModulus();
1202           if ( dist2 < closeDist2 )
1203             vData.ngIdClose = seg[ iEnd ], vData.uvClose = uv[iEnd], closeDist2 = dist2;
1204         }
1205       }
1206       // decide whether to use the closest node as the second end of segment or to
1207       // create a new point
1208       int segEnd1 = vData.ngId;
1209       int segEnd2 = vData.ngIdClose; // to use closest node
1210       gp_XY uvV = vData.uv, uvP = vData.uvClose;
1211       double segLenHint  = ngMesh.GetH( ngMesh.Point( vData.ngId ));
1212       double nodeDist2D  = sqrt( closeDist2 );
1213       double nodeDist3D  = evalDist( vData.uv, vData.uvClose, surf );
1214       bool avgLenOK  = ( avgSegLen2d < 0.75 * nodeDist2D );
1215       bool hintLenOK = ( segLenHint  < 0.75 * nodeDist3D );
1216       //cout << "uvV " << uvV.X() <<","<<uvV.Y() << " ";
1217       if ( hintLenOK || avgLenOK )
1218       {
1219         // create a point between the closest node and V
1220
1221         // how far from V
1222         double r = min( 0.5, ( hintLenOK ? segLenHint/nodeDist3D : avgSegLen2d/nodeDist2D ));
1223         // direction from V to closet node in 2D
1224         gp_Dir2d v2n( helper.applyIn2D(surf, uvP, uvV, gp_XY_Subtracted, false ));
1225         // new point
1226         uvP = vData.uv + r * nodeDist2D * v2n.XY();
1227         gp_Pnt P = surf->Value( uvP.X(), uvP.Y() ).Transformed( loc );
1228
1229         netgen::MeshPoint mp( netgen::Point<3> (P.X(), P.Y(), P.Z()));
1230         ngMesh.AddPoint ( mp, 1, netgen::EDGEPOINT );
1231         segEnd2 = ngMesh.GetNP();
1232         //cout << "Middle " << r << " uv " << uvP.X() << "," << uvP.Y() << "( " << ngMesh.Point(segEnd2).X()<<","<<ngMesh.Point(segEnd2).Y()<<","<<ngMesh.Point(segEnd2).Z()<<" )"<< endl;
1233         SMDS_MeshNode * nP = helper.AddNode(P.X(), P.Y(), P.Z());
1234         nodeVec.push_back( nP );
1235       }
1236       //else cout << "at Node " << " uv " << uvP.X() << "," << uvP.Y() << endl;
1237
1238       // Add the segment
1239       netgen::Segment seg;
1240
1241       if ( segEnd1 > segEnd2 ) swap( segEnd1, segEnd2 ), swap( uvV, uvP );
1242       seg[0] = segEnd1;  // ng node id
1243       seg[1] = segEnd2;  // ng node id
1244       seg.edgenr = ngMesh.GetNSeg() + 1;// segment id
1245       seg.si = faceNgID;
1246
1247       seg.epgeominfo[ 0 ].dist = 0; // param on curve
1248       seg.epgeominfo[ 0 ].u    = uvV.X();
1249       seg.epgeominfo[ 0 ].v    = uvV.Y();
1250       seg.epgeominfo[ 1 ].dist = 1; // param on curve
1251       seg.epgeominfo[ 1 ].u    = uvP.X();
1252       seg.epgeominfo[ 1 ].v    = uvP.Y();
1253
1254 //       seg.epgeominfo[ 0 ].edgenr = 10; //  = geom.emap.FindIndex(edge);
1255 //       seg.epgeominfo[ 1 ].edgenr = 10; //  = geom.emap.FindIndex(edge);
1256
1257       ngMesh.AddSegment (seg);
1258
1259       // add reverse segment
1260       swap (seg[0], seg[1]);
1261       swap( seg.epgeominfo[0], seg.epgeominfo[1] );
1262       seg.edgenr = ngMesh.GetNSeg() + 1; // segment id
1263       ngMesh.AddSegment (seg);
1264     }
1265
1266   }
1267 }
1268
1269 //================================================================================
1270 /*!
1271  * \brief Make netgen take internal vertices in solids into account by adding
1272  *        faces including internal vertices
1273  *
1274  * This function works in supposition that 2D mesh is already computed in ngMesh
1275  */
1276 //================================================================================
1277
1278 void NETGENPlugin_Mesher::AddIntVerticesInSolids(const netgen::OCCGeometry&     occgeom,
1279                                                  netgen::Mesh&                  ngMesh,
1280                                                  vector<const SMDS_MeshNode*>&  nodeVec,
1281                                                  NETGENPlugin_Internals&        internalShapes)
1282 {
1283 #ifdef DUMP_TRIANGLES_SCRIPT
1284   // create a python script making a mesh containing triangles added for internal vertices
1285   ofstream py(DUMP_TRIANGLES_SCRIPT);
1286   py << "import SMESH"<< endl
1287      << "from salome.smesh import smeshBuilder"<<endl
1288      << "smesh = smeshBuilder.New(salome.myStudy)"
1289      << "m = smesh.Mesh(name='triangles')" << endl;
1290 #endif
1291   if ( nodeVec.size() < ngMesh.GetNP() )
1292     nodeVec.resize( ngMesh.GetNP(), 0 );
1293
1294   SMESHDS_Mesh* meshDS = internalShapes.getMesh().GetMeshDS();
1295   SMESH_MesherHelper helper( internalShapes.getMesh() );
1296
1297   const map<int,list<int> >& so2Vert = internalShapes.getSolidsWithVertices();
1298   map<int,list<int> >::const_iterator s2v = so2Vert.begin();
1299   for ( ; s2v != so2Vert.end(); ++s2v )
1300   {
1301     const TopoDS_Shape& solid = meshDS->IndexToShape( s2v->first );
1302     if ( solid.IsNull() ) continue;
1303     int solidNgID = occgeom.somap.FindIndex (solid);
1304     if ( solidNgID < 0 && !occgeom.somap.IsEmpty() ) continue;
1305
1306     helper.SetSubShape( solid );
1307     helper.SetElementsOnShape( true );
1308
1309     // find ng indices of faces within the solid
1310     set<int> ngFaceIds;
1311     for (TopExp_Explorer fExp(solid, TopAbs_FACE); fExp.More(); fExp.Next() )
1312       ngFaceIds.insert( occgeom.fmap.FindIndex( fExp.Current() ));
1313     if ( ngFaceIds.size() == 1 && *ngFaceIds.begin() == 0 )
1314       ngFaceIds.insert( 1 );
1315
1316     // Get data of internal vertices and add them to ngMesh
1317
1318     multimap< double, TIntVSoData > dist2VData; // sort vertices by distance from ng faces
1319
1320     int i, nbFaceInit = ngMesh.GetNSE();
1321
1322     // boundary characteristics
1323     double totSegLen = 0;
1324     int totNbSeg = 0;
1325
1326     const list<int>& iVertices = s2v->second;
1327     list<int>::const_iterator iv = iVertices.begin();
1328     for ( int nbV = 0; iv != iVertices.end(); ++iv, nbV++ )
1329     {
1330       TIntVSoData vData;
1331       const TopoDS_Vertex V = TopoDS::Vertex( meshDS->IndexToShape( *iv ));
1332
1333       // get node on vertex
1334       const SMDS_MeshNode * nV = SMESH_Algo::VertexNode( V, meshDS );
1335       if ( !nV )
1336       {
1337         SMESH_subMesh* sm = helper.GetMesh()->GetSubMesh( V );
1338         sm->ComputeStateEngine( SMESH_subMesh::COMPUTE );
1339         nV = SMESH_Algo::VertexNode( V, meshDS );
1340         if ( !nV ) continue;
1341       }
1342       // add ng node
1343       netgen::MeshPoint mpV( netgen::Point<3> (nV->X(), nV->Y(), nV->Z()) );
1344       ngMesh.AddPoint ( mpV, 1, netgen::FIXEDPOINT );
1345       vData.ngId = ngMesh.GetNP();
1346       nodeVec.push_back( nV );
1347
1348       // loop on all 2d elements to find the one closest to vertex and to count
1349       // average segment length
1350       double closeDist2 = numeric_limits<double>::max(), avgDist2;
1351       for (i = 1; i <= ngMesh.GetNSE(); ++i)
1352       {
1353         const netgen::Element2d& elem = ngMesh.SurfaceElement(i);
1354         if ( !ngFaceIds.count( elem.GetIndex() )) continue;
1355         avgDist2 = 0;
1356         multimap< double, int> dist2nID; // sort nodes of element by distance from V
1357         for ( int j = 0; j < elem.GetNP(); ++j)
1358         {
1359           netgen::MeshPoint mp = ngMesh.Point( elem[j] );
1360           double d2 = dist2( mpV, mp );
1361           dist2nID.insert( make_pair( d2, elem[j] ));
1362           avgDist2 += d2 / elem.GetNP();
1363           if ( !nbV )
1364             totNbSeg++, totSegLen+= sqrt( dist2( mp, ngMesh.Point( elem[(j+1)%elem.GetNP()])));
1365         }
1366         double dist = dist2nID.begin()->first; //avgDist2;
1367         if ( dist < closeDist2 )
1368           vData.ngIdClose= i, vData.ngIdCloseN= dist2nID.begin()->second, closeDist2= dist;
1369       }
1370       dist2VData.insert( make_pair( closeDist2, vData ));
1371     }
1372
1373     if ( totNbSeg == 0 ) break;
1374     double avgSegLen = totSegLen / totNbSeg;
1375
1376     // Loop on vertices to add triangles
1377
1378     multimap< double, TIntVSoData >::iterator dist_vData = dist2VData.begin();
1379     for ( ; dist_vData != dist2VData.end(); ++dist_vData )
1380     {
1381       double closeDist2   = dist_vData->first;
1382       TIntVSoData & vData = dist_vData->second;
1383
1384       const netgen::MeshPoint& mpV = ngMesh.Point( vData.ngId );
1385
1386       // try to find more close face among ones added for internal vertices
1387       for (i = nbFaceInit+1; i <= ngMesh.GetNSE(); ++i)
1388       {
1389         double avgDist2 = 0;
1390         multimap< double, int> dist2nID;
1391         const netgen::Element2d& elem = ngMesh.SurfaceElement(i);
1392         for ( int j = 0; j < elem.GetNP(); ++j)
1393         {
1394           double d = dist2( mpV, ngMesh.Point( elem[j] ));
1395           dist2nID.insert( make_pair( d, elem[j] ));
1396           avgDist2 += d / elem.GetNP();
1397           if ( avgDist2 < closeDist2 )
1398             vData.ngIdClose= i, vData.ngIdCloseN= dist2nID.begin()->second, closeDist2= avgDist2;
1399         }
1400       }
1401       // sort nodes of the closest face by angle with vector from V to the closest node
1402       const double tol = numeric_limits<double>::min();
1403       map< double, int > angle2ID;
1404       const netgen::Element2d& closeFace = ngMesh.SurfaceElement( vData.ngIdClose );
1405       netgen::MeshPoint mp[2];
1406       mp[0] = ngMesh.Point( vData.ngIdCloseN );
1407       gp_XYZ p1( NGPOINT_COORDS( mp[0] ));
1408       gp_XYZ pV( NGPOINT_COORDS( mpV ));
1409       gp_Vec v2p1( pV, p1 );
1410       double distN1 = v2p1.Magnitude();
1411       if ( distN1 <= tol ) continue;
1412       v2p1 /= distN1;
1413       for ( int j = 0; j < closeFace.GetNP(); ++j)
1414       {
1415         mp[1] = ngMesh.Point( closeFace[j] );
1416         gp_Vec v2p( pV, gp_Pnt( NGPOINT_COORDS( mp[1] )) );
1417         angle2ID.insert( make_pair( v2p1.Angle( v2p ), closeFace[j]));
1418       }
1419       // get node with angle of 60 degrees or greater
1420       map< double, int >::iterator angle_id = angle2ID.lower_bound( 60. * M_PI / 180. );
1421       if ( angle_id == angle2ID.end() ) angle_id = --angle2ID.end();
1422       const double minAngle = 30. * M_PI / 180.;
1423       const double angle = angle_id->first;
1424       bool angleOK = ( angle > minAngle );
1425
1426       // find points to create a triangle
1427       netgen::Element2d tri(3);
1428       tri.SetIndex ( 1 );
1429       tri[0] = vData.ngId;
1430       tri[1] = vData.ngIdCloseN; // to use the closest nodes
1431       tri[2] = angle_id->second; // to use the node with best angle
1432
1433       // decide whether to use the closest node and the node with best angle or to create new ones
1434       for ( int isBestAngleN = 0; isBestAngleN < 2; ++isBestAngleN )
1435       {
1436         bool createNew = !angleOK, distOK = true;
1437         double distFromV;
1438         int triInd = isBestAngleN ? 2 : 1;
1439         mp[isBestAngleN] = ngMesh.Point( tri[triInd] );
1440         if ( isBestAngleN )
1441         {
1442           if ( angleOK )
1443           {
1444             double distN2 = sqrt( dist2( mpV, mp[isBestAngleN]));
1445             createNew = ( fabs( distN2 - distN1 ) > 0.25 * distN1 );
1446           }
1447           else if ( angle < tol )
1448           {
1449             v2p1.SetX( v2p1.X() + 1e-3 );
1450           }
1451           distFromV = distN1;
1452         }
1453         else
1454         {
1455           double segLenHint = ngMesh.GetH( ngMesh.Point( vData.ngId ));
1456           bool avgLenOK  = ( avgSegLen < 0.75 * distN1 );
1457           bool hintLenOK = ( segLenHint  < 0.75 * distN1 );
1458           createNew = (createNew || avgLenOK || hintLenOK );
1459           // we create a new node not closer than 0.5 to the closest face
1460           // in order not to clash with other close face
1461           double r = min( 0.5, ( hintLenOK ? segLenHint : avgSegLen ) / distN1 );
1462           distFromV = r * distN1;
1463         }
1464         if ( createNew )
1465         {
1466           // create a new point, between the node and the vertex if angleOK
1467           gp_XYZ p( NGPOINT_COORDS( mp[isBestAngleN] ));
1468           gp_Vec v2p( pV, p ); v2p.Normalize();
1469           if ( isBestAngleN && !angleOK )
1470             p = p1 + gp_Dir( v2p.XYZ() - v2p1.XYZ()).XYZ() * distN1 * 0.95;
1471           else
1472             p = pV + v2p.XYZ() * distFromV;
1473
1474           if ( !isBestAngleN ) p1 = p, distN1 = distFromV;
1475
1476           mp[isBestAngleN].SetPoint( netgen::Point<3> (p.X(), p.Y(), p.Z()));
1477           ngMesh.AddPoint ( mp[isBestAngleN], 1, netgen::SURFACEPOINT );
1478           tri[triInd] = ngMesh.GetNP();
1479           nodeVec.push_back( helper.AddNode( p.X(), p.Y(), p.Z()) );
1480         }
1481       }
1482       ngMesh.AddSurfaceElement (tri);
1483       swap( tri[1], tri[2] );
1484       ngMesh.AddSurfaceElement (tri);
1485
1486 #ifdef DUMP_TRIANGLES_SCRIPT
1487       py << "n1 = m.AddNode( "<< mpV.X()<<", "<< mpV.Y()<<", "<< mpV.Z()<<") "<< endl
1488          << "n2 = m.AddNode( "<< mp[0].X()<<", "<< mp[0].Y()<<", "<< mp[0].Z()<<") "<< endl
1489          << "n3 = m.AddNode( "<< mp[1].X()<<", "<< mp[1].Y()<<", "<< mp[1].Z()<<" )" << endl
1490          << "m.AddFace([n1,n2,n3])" << endl;
1491 #endif
1492     } // loop on internal vertices of a solid
1493
1494   } // loop on solids with internal vertices
1495 }
1496
1497 //================================================================================
1498 /*!
1499  * \brief Fill netgen mesh with segments of a FACE
1500  *  \param ngMesh - netgen mesh
1501  *  \param geom - container of OCCT geometry to mesh
1502  *  \param wires - data of nodes on FACE boundary
1503  *  \param helper - mesher helper holding the FACE
1504  *  \param nodeVec - vector of nodes in which node index == netgen ID
1505  *  \retval SMESH_ComputeErrorPtr - error description 
1506  */
1507 //================================================================================
1508
1509 SMESH_ComputeErrorPtr
1510 NETGENPlugin_Mesher::AddSegmentsToMesh(netgen::Mesh&                    ngMesh,
1511                                        netgen::OCCGeometry&             geom,
1512                                        const TSideVector&               wires,
1513                                        SMESH_MesherHelper&              helper,
1514                                        vector< const SMDS_MeshNode* > & nodeVec)
1515 {
1516   // ----------------------------
1517   // Check wires and count nodes
1518   // ----------------------------
1519   int nbNodes = 0;
1520   for ( int iW = 0; iW < wires.size(); ++iW )
1521   {
1522     StdMeshers_FaceSidePtr wire = wires[ iW ];
1523     if ( wire->MissVertexNode() )
1524     {
1525       // Commented for issue 0020960. It worked for the case, let's wait for case where it doesn't.
1526       // It seems that there is no reason for this limitation
1527 //       return TError
1528 //         (new SMESH_ComputeError(COMPERR_BAD_INPUT_MESH, "Missing nodes on vertices"));
1529     }
1530     const vector<UVPtStruct>& uvPtVec = wire->GetUVPtStruct();
1531     if ( uvPtVec.size() != wire->NbPoints() )
1532       return SMESH_ComputeError::New(COMPERR_BAD_INPUT_MESH,
1533                                      SMESH_Comment("Unexpected nb of points on wire ") << iW
1534                                      << ": " << uvPtVec.size()<<" != "<<wire->NbPoints());
1535     nbNodes += wire->NbPoints();
1536   }
1537   nodeVec.reserve( nodeVec.size() + nbNodes + 1 );
1538   if ( nodeVec.empty() )
1539     nodeVec.push_back( 0 );
1540
1541   // -----------------
1542   // Fill netgen mesh
1543   // -----------------
1544
1545   const bool wasNgMeshEmpty = ( ngMesh.GetNP() < 1 ); /* true => this method is called by
1546                                                          NETGENPlugin_NETGEN_2D_ONLY */
1547
1548   // map for nodes on vertices since they can be shared between wires
1549   // ( issue 0020676, face_int_box.brep) and nodes built by NETGEN
1550   map<const SMDS_MeshNode*, int > node2ngID;
1551   if ( !wasNgMeshEmpty ) // fill node2ngID with nodes built by NETGEN
1552   {
1553     set< int > subIDs; // ids of sub-shapes of the FACE
1554     for ( int iW = 0; iW < wires.size(); ++iW )
1555     {
1556       StdMeshers_FaceSidePtr wire = wires[ iW ];
1557       for ( int iE = 0, nbE = wire->NbEdges(); iE < nbE; ++iE )
1558       {
1559         subIDs.insert( wire->EdgeID( iE ));
1560         subIDs.insert( helper.GetMeshDS()->ShapeToIndex( wire->FirstVertex( iE )));
1561       }
1562     }
1563     for ( size_t ngID = 1; ngID < nodeVec.size(); ++ngID )
1564       if ( subIDs.count( nodeVec[ngID]->getshapeId() ))
1565         node2ngID.insert( make_pair( nodeVec[ngID], ngID ));
1566   }
1567
1568   const int solidID = 0, faceID = geom.fmap.FindIndex( helper.GetSubShape() );
1569   if ( ngMesh.GetNFD() < 1 )
1570     ngMesh.AddFaceDescriptor (netgen::FaceDescriptor(faceID, solidID, solidID, 0));
1571
1572   for ( int iW = 0; iW < wires.size(); ++iW )
1573   {
1574     StdMeshers_FaceSidePtr wire = wires[ iW ];
1575     const vector<UVPtStruct>& uvPtVec = wire->GetUVPtStruct();
1576     const int nbSegments = wire->NbPoints() - 1;
1577
1578     // assure the 1st node to be in node2ngID, which is needed to correctly
1579     // "close chain of segments" (see below) in case if the 1st node is not
1580     // onVertex because it is on a Viscous layer
1581     node2ngID.insert( make_pair( uvPtVec[ 0 ].node, ngMesh.GetNP() + 1 ));
1582
1583     // compute length of every segment
1584     vector<double> segLen( nbSegments );
1585     for ( int i = 0; i < nbSegments; ++i )
1586       segLen[i] = SMESH_TNodeXYZ( uvPtVec[ i ].node ).Distance( uvPtVec[ i+1 ].node );
1587
1588     int edgeID = 1, posID = -2;
1589     bool isInternalWire = false;
1590     double vertexNormPar = 0;
1591     const int prevNbNGSeg = ngMesh.GetNSeg();
1592     for ( int i = 0; i < nbSegments; ++i ) // loop on segments
1593     {
1594       // Add the first point of a segment
1595
1596       const SMDS_MeshNode * n = uvPtVec[ i ].node;
1597       const int posShapeID = n->getshapeId();
1598       bool onVertex = ( n->GetPosition()->GetTypeOfPosition() == SMDS_TOP_VERTEX );
1599       bool onEdge   = ( n->GetPosition()->GetTypeOfPosition() == SMDS_TOP_EDGE   );
1600
1601       // skip nodes on degenerated edges
1602       if ( helper.IsDegenShape( posShapeID ) &&
1603            helper.IsDegenShape( uvPtVec[ i+1 ].node->getshapeId() ))
1604         continue;
1605
1606       int ngID1 = ngMesh.GetNP() + 1, ngID2 = ngID1+1;
1607       if ( onVertex || ( !wasNgMeshEmpty && onEdge ))
1608         ngID1 = node2ngID.insert( make_pair( n, ngID1 )).first->second;
1609       if ( ngID1 > ngMesh.GetNP() )
1610       {
1611         netgen::MeshPoint mp( netgen::Point<3> (n->X(), n->Y(), n->Z()) );
1612         ngMesh.AddPoint ( mp, 1, netgen::EDGEPOINT );
1613         nodeVec.push_back( n );
1614       }
1615       else // n is in ngMesh already, and ngID2 in prev segment is wrong
1616       {
1617         ngID2 = ngMesh.GetNP() + 1;
1618         if ( i > 0 ) // prev segment belongs to same wire
1619         {
1620           netgen::Segment& prevSeg = ngMesh.LineSegment( ngMesh.GetNSeg() );
1621           prevSeg[1] = ngID1;
1622         }
1623       }
1624
1625       // Add the segment
1626
1627       netgen::Segment seg;
1628
1629       seg[0]     = ngID1;                // ng node id
1630       seg[1]     = ngID2;                // ng node id
1631       seg.edgenr = ngMesh.GetNSeg() + 1; // ng segment id
1632       seg.si     = faceID;               // = geom.fmap.FindIndex (face);
1633
1634       for ( int iEnd = 0; iEnd < 2; ++iEnd)
1635       {
1636         const UVPtStruct& pnt = uvPtVec[ i + iEnd ];
1637
1638         seg.epgeominfo[ iEnd ].dist = pnt.param; // param on curve
1639         seg.epgeominfo[ iEnd ].u    = pnt.u;
1640         seg.epgeominfo[ iEnd ].v    = pnt.v;
1641
1642         // find out edge id and node parameter on edge
1643         onVertex = ( pnt.normParam + 1e-10 > vertexNormPar );
1644         if ( onVertex || posShapeID != posID )
1645         {
1646           // get edge id
1647           double normParam = pnt.normParam;
1648           if ( onVertex )
1649             normParam = 0.5 * ( uvPtVec[ i ].normParam + uvPtVec[ i+1 ].normParam );
1650           int edgeIndexInWire = wire->EdgeIndex( normParam );
1651           vertexNormPar = wire->LastParameter( edgeIndexInWire );
1652           const TopoDS_Edge& edge = wire->Edge( edgeIndexInWire );
1653           edgeID = geom.emap.FindIndex( edge );
1654           posID  = posShapeID;
1655           isInternalWire = ( edge.Orientation() == TopAbs_INTERNAL );
1656           // if ( onVertex ) // param on curve is different on each of two edges
1657           //   seg.epgeominfo[ iEnd ].dist = helper.GetNodeU( edge, pnt.node );
1658         }
1659         seg.epgeominfo[ iEnd ].edgenr = edgeID; //  = geom.emap.FindIndex(edge);
1660       }
1661
1662       ngMesh.AddSegment (seg);
1663       {
1664         // restrict size of elements near the segment
1665         SMESH_TNodeXYZ np1( n ), np2( uvPtVec[ i+1 ].node );
1666         // get an average size of adjacent segments to avoid sharp change of
1667         // element size (regression on issue 0020452, note 0010898)
1668         int   iPrev = SMESH_MesherHelper::WrapIndex( i-1, nbSegments );
1669         int   iNext = SMESH_MesherHelper::WrapIndex( i+1, nbSegments );
1670         int   nbSeg = 1 + ( segLen[ iPrev ] > 1e-20 ) + ( segLen[ iNext ] > 1e-20 );
1671         double avgH = ( segLen[ iPrev ] + segLen[ i ] + segLen[ iNext ]) / nbSeg;
1672
1673         RestrictLocalSize( ngMesh, 0.5*(np1+np2), avgH );
1674       }
1675       if ( isInternalWire )
1676       {
1677         swap (seg[0], seg[1]);
1678         swap( seg.epgeominfo[0], seg.epgeominfo[1] );
1679         seg.edgenr = ngMesh.GetNSeg() + 1; // segment id
1680         ngMesh.AddSegment (seg);
1681       }
1682     } // loop on segments on a wire
1683
1684     // close chain of segments
1685     if ( nbSegments > 0 )
1686     {
1687       netgen::Segment& lastSeg = ngMesh.LineSegment( ngMesh.GetNSeg() - int( isInternalWire));
1688       const SMDS_MeshNode * lastNode = uvPtVec.back().node;
1689       lastSeg[1] = node2ngID.insert( make_pair( lastNode, lastSeg[1] )).first->second;
1690       if ( lastSeg[1] > ngMesh.GetNP() )
1691       {
1692         netgen::MeshPoint mp( netgen::Point<3> (lastNode->X(), lastNode->Y(), lastNode->Z()) );
1693         ngMesh.AddPoint ( mp, 1, netgen::EDGEPOINT );
1694         nodeVec.push_back( lastNode );
1695       }
1696       if ( isInternalWire )
1697       {
1698         netgen::Segment& realLastSeg = ngMesh.LineSegment( ngMesh.GetNSeg() );
1699         realLastSeg[0] = lastSeg[1];
1700       }
1701     }
1702
1703 #ifdef DUMP_SEGMENTS
1704     cout << "BEGIN WIRE " << iW << endl;
1705     for ( int i = prevNbNGSeg+1; i <= ngMesh.GetNSeg(); ++i )
1706     {
1707       netgen::Segment& seg = ngMesh.LineSegment( i );
1708       if ( i > 1 ) {
1709         netgen::Segment& prevSeg = ngMesh.LineSegment( i-1 );
1710         if ( seg[0] == prevSeg[1] && seg[1] == prevSeg[0] )
1711         {
1712           cout << "Segment: " << seg.edgenr << endl << "\tis REVRESE of the previous one" << endl;
1713           continue;
1714         }
1715       }
1716       cout << "Segment: " << seg.edgenr << endl
1717            << "\tp1: " << seg[0] << endl
1718            << "\tp2: " << seg[1] << endl
1719            << "\tp0 param: " << seg.epgeominfo[ 0 ].dist << endl
1720            << "\tp0 uv: " << seg.epgeominfo[ 0 ].u <<", "<< seg.epgeominfo[ 0 ].v << endl
1721            << "\tp0 edge: " << seg.epgeominfo[ 0 ].edgenr << endl
1722            << "\tp1 param: " << seg.epgeominfo[ 1 ].dist << endl
1723            << "\tp1 uv: " << seg.epgeominfo[ 1 ].u <<", "<< seg.epgeominfo[ 1 ].v << endl
1724            << "\tp1 edge: " << seg.epgeominfo[ 1 ].edgenr << endl;
1725     }
1726     cout << "--END WIRE " << iW << endl;
1727 #endif
1728
1729   } // loop on WIREs of a FACE
1730
1731   // add a segment instead of an internal vertex
1732   if ( wasNgMeshEmpty )
1733   {
1734     NETGENPlugin_Internals intShapes( *helper.GetMesh(), helper.GetSubShape(), /*is3D=*/false );
1735     AddIntVerticesInFaces( geom, ngMesh, nodeVec, intShapes );
1736   }
1737   ngMesh.CalcSurfacesOfNode();
1738
1739   return TError();
1740 }
1741
1742 //================================================================================
1743 /*!
1744  * \brief Fill SMESH mesh according to contents of netgen mesh
1745  *  \param occgeo - container of OCCT geometry to mesh
1746  *  \param ngMesh - netgen mesh
1747  *  \param initState - bn of entities in netgen mesh before computing
1748  *  \param sMesh - SMESH mesh to fill in
1749  *  \param nodeVec - vector of nodes in which node index == netgen ID
1750  *  \retval int - error
1751  */
1752 //================================================================================
1753
1754 int NETGENPlugin_Mesher::FillSMesh(const netgen::OCCGeometry&          occgeo,
1755                                    netgen::Mesh&                       ngMesh,
1756                                    const NETGENPlugin_ngMeshInfo&      initState,
1757                                    SMESH_Mesh&                         sMesh,
1758                                    std::vector<const SMDS_MeshNode*>&  nodeVec,
1759                                    SMESH_Comment&                      comment)
1760 {
1761   int nbNod = ngMesh.GetNP();
1762   int nbSeg = ngMesh.GetNSeg();
1763   int nbFac = ngMesh.GetNSE();
1764   int nbVol = ngMesh.GetNE();
1765
1766   SMESHDS_Mesh* meshDS = sMesh.GetMeshDS();
1767
1768   // -------------------------------------
1769   // Create and insert nodes into nodeVec
1770   // -------------------------------------
1771
1772   nodeVec.resize( nbNod + 1 );
1773   int i, nbInitNod = initState._nbNodes;
1774   for (i = nbInitNod+1; i <= nbNod; ++i )
1775   {
1776     const netgen::MeshPoint& ngPoint = ngMesh.Point(i);
1777     SMDS_MeshNode* node = NULL;
1778     TopoDS_Vertex aVert;
1779     // First, netgen creates nodes on vertices in occgeo.vmap,
1780     // so node index corresponds to vertex index
1781     // but (issue 0020776) netgen does not create nodes with equal coordinates
1782     if ( i-nbInitNod <= occgeo.vmap.Extent() )
1783     {
1784       gp_Pnt p ( NGPOINT_COORDS(ngPoint) );
1785       for (int iV = i-nbInitNod; aVert.IsNull() && iV <= occgeo.vmap.Extent(); ++iV)
1786       {
1787         aVert = TopoDS::Vertex( occgeo.vmap( iV ) );
1788         gp_Pnt pV = BRep_Tool::Pnt( aVert );
1789         if ( p.SquareDistance( pV ) > 1e-20 )
1790           aVert.Nullify();
1791         else
1792           node = const_cast<SMDS_MeshNode*>( SMESH_Algo::VertexNode( aVert, meshDS ));
1793       }
1794     }
1795     if (!node) // node not found on vertex
1796     {
1797       node = meshDS->AddNode( NGPOINT_COORDS( ngPoint ));
1798       if (!aVert.IsNull())
1799         meshDS->SetNodeOnVertex(node, aVert);
1800     }
1801     nodeVec[i] = node;
1802   }
1803
1804   // -------------------------------------------
1805   // Create mesh segments along geometric edges
1806   // -------------------------------------------
1807
1808   int nbInitSeg = initState._nbSegments;
1809   for (i = nbInitSeg+1; i <= nbSeg; ++i )
1810   {
1811     const netgen::Segment& seg = ngMesh.LineSegment(i);
1812     TopoDS_Edge aEdge;
1813     int pinds[3] = { seg.pnums[0], seg.pnums[1], seg.pnums[2] };
1814     int nbp = 0;
1815     double param2 = 0;
1816     for (int j=0; j < 3; ++j)
1817     {
1818       int pind = pinds[j];
1819       if (pind <= 0 || !nodeVec_ACCESS(pind))
1820         break;
1821       ++nbp;
1822       double param;
1823       if (j < 2)
1824       {
1825         if (aEdge.IsNull())
1826         {
1827           int aGeomEdgeInd = seg.epgeominfo[j].edgenr;
1828           if (aGeomEdgeInd > 0 && aGeomEdgeInd <= occgeo.emap.Extent())
1829             aEdge = TopoDS::Edge(occgeo.emap(aGeomEdgeInd));
1830         }
1831         param = seg.epgeominfo[j].dist;
1832         param2 += param;
1833       }
1834       else // middle point
1835       {
1836         param = param2 * 0.5;
1837       }
1838       if (!aEdge.IsNull() && nodeVec_ACCESS(pind)->getshapeId() < 1)
1839       {
1840         meshDS->SetNodeOnEdge(nodeVec_ACCESS(pind), aEdge, param);
1841       }
1842     }
1843     if ( nbp > 1 )
1844     {
1845       SMDS_MeshEdge* edge = 0;
1846       if (nbp == 2) // second order ?
1847       {
1848         if ( meshDS->FindEdge( nodeVec_ACCESS(pinds[0]), nodeVec_ACCESS(pinds[1])))
1849           continue;
1850         edge = meshDS->AddEdge(nodeVec_ACCESS(pinds[0]), nodeVec_ACCESS(pinds[1]));
1851       }
1852       else
1853       {
1854         if ( meshDS->FindEdge( nodeVec_ACCESS(pinds[0]), nodeVec_ACCESS(pinds[1]),
1855                                nodeVec_ACCESS(pinds[2])))
1856           continue;
1857         edge = meshDS->AddEdge(nodeVec_ACCESS(pinds[0]), nodeVec_ACCESS(pinds[1]),
1858                                nodeVec_ACCESS(pinds[2]));
1859       }
1860       if (!edge)
1861       {
1862         if ( comment.empty() ) comment << "Cannot create a mesh edge";
1863         MESSAGE("Cannot create a mesh edge");
1864         nbSeg = nbFac = nbVol = 0;
1865         break;
1866       }
1867       if ( !aEdge.IsNull() && edge->getshapeId() < 1 )
1868         meshDS->SetMeshElementOnShape(edge, aEdge);
1869     }
1870     else if ( comment.empty() )
1871     {
1872       comment << "Invalid netgen segment #" << i;
1873     }
1874   }
1875
1876   // ----------------------------------------
1877   // Create mesh faces along geometric faces
1878   // ----------------------------------------
1879
1880   int nbInitFac = initState._nbFaces;
1881   int quadFaceID = ngMesh.GetNFD() + 1;
1882   if ( nbInitFac < nbFac )
1883     // add a faces descriptor to exclude qudrangle elements generated by NETGEN
1884     // from computation of 3D mesh
1885     ngMesh.AddFaceDescriptor (netgen::FaceDescriptor(quadFaceID, /*solid1=*/0, /*solid2=*/0, 0));
1886
1887   for (i = nbInitFac+1; i <= nbFac; ++i )
1888   {
1889     const netgen::Element2d& elem = ngMesh.SurfaceElement(i);
1890     int aGeomFaceInd = elem.GetIndex();
1891     TopoDS_Face aFace;
1892     if (aGeomFaceInd > 0 && aGeomFaceInd <= occgeo.fmap.Extent())
1893       aFace = TopoDS::Face(occgeo.fmap(aGeomFaceInd));
1894     vector<SMDS_MeshNode*> nodes;
1895     for (int j=1; j <= elem.GetNP(); ++j)
1896     {
1897       int pind = elem.PNum(j);
1898       if ( pind < 1 || pind >= nodeVec.size() )
1899         break;
1900       if ( SMDS_MeshNode* node = nodeVec_ACCESS(pind))
1901       {
1902         nodes.push_back(node);
1903         if (!aFace.IsNull() && node->getshapeId() < 1)
1904         {
1905           const netgen::PointGeomInfo& pgi = elem.GeomInfoPi(j);
1906           meshDS->SetNodeOnFace(node, aFace, pgi.u, pgi.v);
1907         }
1908       }
1909     }
1910     if ( nodes.size() != elem.GetNP() )
1911     {
1912       if ( comment.empty() )
1913         comment << "Invalid netgen 2d element #" << i;
1914       continue; // bad node ids
1915     }
1916     SMDS_MeshFace* face = NULL;
1917     switch (elem.GetType())
1918     {
1919     case netgen::TRIG:
1920       face = meshDS->AddFace(nodes[0],nodes[1],nodes[2]);
1921       break;
1922     case netgen::QUAD:
1923       face = meshDS->AddFace(nodes[0],nodes[1],nodes[2],nodes[3]);
1924       // exclude qudrangle elements from computation of 3D mesh
1925       const_cast< netgen::Element2d& >( elem ).SetIndex( quadFaceID );
1926       break;
1927     case netgen::TRIG6:
1928       face = meshDS->AddFace(nodes[0],nodes[1],nodes[2],nodes[5],nodes[3],nodes[4]);
1929       break;
1930     case netgen::QUAD8:
1931       face = meshDS->AddFace(nodes[0],nodes[1],nodes[2],nodes[3],
1932                              nodes[4],nodes[7],nodes[5],nodes[6]);
1933       // exclude qudrangle elements from computation of 3D mesh
1934       const_cast< netgen::Element2d& >( elem ).SetIndex( quadFaceID );
1935       break;
1936     default:
1937       MESSAGE("NETGEN created a face of unexpected type, ignoring");
1938       continue;
1939     }
1940     if (!face)
1941     {
1942       if ( comment.empty() ) comment << "Cannot create a mesh face";
1943       MESSAGE("Cannot create a mesh face");
1944       nbSeg = nbFac = nbVol = 0;
1945       break;
1946     }
1947     if (!aFace.IsNull())
1948       meshDS->SetMeshElementOnShape(face, aFace);
1949   }
1950
1951   // ------------------
1952   // Create tetrahedra
1953   // ------------------
1954
1955   for (i = 1; i <= nbVol; ++i)
1956   {
1957     const netgen::Element& elem = ngMesh.VolumeElement(i);      
1958     int aSolidInd = elem.GetIndex();
1959     TopoDS_Solid aSolid;
1960     if (aSolidInd > 0 && aSolidInd <= occgeo.somap.Extent())
1961       aSolid = TopoDS::Solid(occgeo.somap(aSolidInd));
1962     vector<SMDS_MeshNode*> nodes;
1963     for (int j=1; j <= elem.GetNP(); ++j)
1964     {
1965       int pind = elem.PNum(j);
1966       if ( pind < 1 || pind >= nodeVec.size() )
1967         break;
1968       if ( SMDS_MeshNode* node = nodeVec_ACCESS(pind) )
1969       {
1970         nodes.push_back(node);
1971         if ( !aSolid.IsNull() && node->getshapeId() < 1 )
1972           meshDS->SetNodeInVolume(node, aSolid);
1973       }
1974     }
1975     if ( nodes.size() != elem.GetNP() )
1976     {
1977       if ( comment.empty() )
1978         comment << "Invalid netgen 3d element #" << i;
1979       continue;
1980     }
1981     SMDS_MeshVolume* vol = NULL;
1982     switch (elem.GetType())
1983     {
1984     case netgen::TET:
1985       vol = meshDS->AddVolume(nodes[0],nodes[1],nodes[2],nodes[3]);
1986       break;
1987     case netgen::TET10:
1988       vol = meshDS->AddVolume(nodes[0],nodes[1],nodes[2],nodes[3],
1989                               nodes[4],nodes[7],nodes[5],nodes[6],nodes[8],nodes[9]);
1990       break;
1991     default:
1992       MESSAGE("NETGEN created a volume of unexpected type, ignoring");
1993       continue;
1994     }
1995     if (!vol)
1996     {
1997       if ( comment.empty() ) comment << "Cannot create a mesh volume";
1998       MESSAGE("Cannot create a mesh volume");
1999       nbSeg = nbFac = nbVol = 0;
2000       break;
2001     }
2002     if (!aSolid.IsNull())
2003       meshDS->SetMeshElementOnShape(vol, aSolid);
2004   }
2005   return comment.empty() ? 0 : 1;
2006 }
2007
2008 namespace
2009 {
2010   //================================================================================
2011   /*!
2012    * \brief Restrict size of elements on the given edge 
2013    */
2014   //================================================================================
2015
2016   void setLocalSize(const TopoDS_Edge& edge,
2017                     double             size,
2018                     netgen::Mesh&      mesh)
2019   {
2020     const int nb = 1000;
2021     Standard_Real u1, u2;
2022     Handle(Geom_Curve) curve = BRep_Tool::Curve(edge, u1, u2);
2023     if ( curve.IsNull() )
2024     {
2025       TopoDS_Iterator vIt( edge );
2026       if ( !vIt.More() ) return;
2027       gp_Pnt p = BRep_Tool::Pnt( TopoDS::Vertex( vIt.Value() ));
2028       NETGENPlugin_Mesher::RestrictLocalSize( mesh, p.XYZ(), size );
2029     }
2030     else
2031     {
2032       Standard_Real delta = (u2-u1)/nb;
2033       for(int i=0; i<nb; i++)
2034       {
2035         Standard_Real u = u1 + delta*i;
2036         gp_Pnt p = curve->Value(u);
2037         NETGENPlugin_Mesher::RestrictLocalSize( mesh, p.XYZ(), size );
2038         netgen::Point3d pi(p.X(), p.Y(), p.Z());
2039         double resultSize = mesh.GetH(pi);
2040         if ( resultSize - size > 0.1*size )
2041           // netgen does restriction iff oldH/newH > 1.2 (localh.cpp:136)
2042           NETGENPlugin_Mesher::RestrictLocalSize( mesh, p.XYZ(), resultSize/1.201 );
2043       }
2044     }
2045   }
2046
2047   //================================================================================
2048   /*!
2049    * \brief Convert error into text
2050    */
2051   //================================================================================
2052
2053   std::string text(int err)
2054   {
2055     if ( !err )
2056       return string("");
2057     return
2058       SMESH_Comment("Error in netgen::OCCGenerateMesh() at ") << netgen::multithread.task;
2059   }
2060
2061   //================================================================================
2062   /*!
2063    * \brief Convert exception into text
2064    */
2065   //================================================================================
2066
2067   std::string text(Standard_Failure& ex)
2068   {
2069     SMESH_Comment str("Exception in netgen::OCCGenerateMesh()");
2070     str << " at " << netgen::multithread.task
2071         << ": " << ex.DynamicType()->Name();
2072     if ( ex.GetMessageString() && strlen( ex.GetMessageString() ))
2073       str << ": " << ex.GetMessageString();
2074     return str;
2075   }
2076   //================================================================================
2077   /*!
2078    * \brief Convert exception into text
2079    */
2080   //================================================================================
2081
2082   std::string text(netgen::NgException& ex)
2083   {
2084     SMESH_Comment str("NgException");
2085     if ( strlen( netgen::multithread.task ) > 0 )
2086       str << " at " << netgen::multithread.task;
2087     str << ": " << ex.What();
2088     return str;
2089   }
2090
2091   const double edgeMeshingTime = 0.001;
2092   const double faceMeshingTime = 0.019;
2093   const double edgeFaceMeshingTime = edgeMeshingTime + faceMeshingTime;
2094   const double faceOptimizTime = 0.06;
2095   const double voluMeshingTime = 0.15;
2096   const double volOptimizeTime = 0.77;
2097 }
2098
2099 //=============================================================================
2100 /*!
2101  * Here we are going to use the NETGEN mesher
2102  */
2103 //=============================================================================
2104
2105 bool NETGENPlugin_Mesher::Compute()
2106 {
2107   NETGENPlugin_NetgenLibWrapper ngLib;
2108
2109   netgen::MeshingParameters& mparams = netgen::mparam;
2110   MESSAGE("Compute with:\n"
2111           " max size = " << mparams.maxh << "\n"
2112           " segments per edge = " << mparams.segmentsperedge);
2113   MESSAGE("\n"
2114           " growth rate = " << mparams.grading << "\n"
2115           " elements per radius = " << mparams.curvaturesafety << "\n"
2116           " second order = " << mparams.secondorder << "\n"
2117           " quad allowed = " << mparams.quad);
2118   //cout << " quad allowed = " << mparams.quad<<endl;
2119
2120   SMESH_ComputeErrorPtr error = SMESH_ComputeError::New();
2121
2122   static string debugFile = "/tmp/ngMesh.py"; /* to call toPython( ngMesh, debugFile )
2123                                                  while debugging netgen */
2124   // -------------------------
2125   // Prepare OCC geometry
2126   // -------------------------
2127
2128   netgen::OCCGeometry occgeo;
2129   list< SMESH_subMesh* > meshedSM[3]; // for 0-2 dimensions
2130   NETGENPlugin_Internals internals( *_mesh, _shape, _isVolume );
2131   PrepareOCCgeometry( occgeo, _shape, *_mesh, meshedSM, &internals );
2132   _occgeom = &occgeo;
2133
2134   _totalTime = edgeFaceMeshingTime;
2135   if ( _optimize )
2136     _totalTime += faceOptimizTime;
2137   if ( _isVolume )
2138     _totalTime += voluMeshingTime + ( _optimize ? volOptimizeTime : 0 );
2139   double doneTime = 0;
2140   _ticTime = -1;
2141   _progressTic = 1;
2142   _curShapeIndex = -1;
2143
2144   // -------------------------
2145   // Generate the mesh
2146   // -------------------------
2147
2148   _ngMesh = NULL;
2149   NETGENPlugin_ngMeshInfo initState; // it remembers size of ng mesh equal to size of Smesh
2150
2151   SMESH_Comment comment;
2152   int err = 0;
2153
2154   // vector of nodes in which node index == netgen ID
2155   vector< const SMDS_MeshNode* > nodeVec;
2156   
2157   {
2158     // ----------------
2159     // compute 1D mesh
2160     // ----------------
2161     if ( _simpleHyp )
2162     {
2163       // not to RestrictLocalH() according to curvature during MESHCONST_ANALYSE
2164       mparams.uselocalh = false;
2165       mparams.grading = 0.8; // not limitited size growth
2166
2167       if ( _simpleHyp->GetNumberOfSegments() )
2168         // nb of segments
2169         mparams.maxh = occgeo.boundingbox.Diam();
2170       else
2171         // segment length
2172         mparams.maxh = _simpleHyp->GetLocalLength();
2173     }
2174
2175     if ( mparams.maxh == 0.0 )
2176       mparams.maxh = occgeo.boundingbox.Diam();
2177     if ( _simpleHyp || ( mparams.minh == 0.0 && _fineness != NETGENPlugin_Hypothesis::UserDefined))
2178       mparams.minh = GetDefaultMinSize( _shape, mparams.maxh );
2179
2180     // Local size on faces
2181     occgeo.face_maxh = mparams.maxh;
2182
2183     // Let netgen create _ngMesh and calculate element size on not meshed shapes
2184 #ifndef NETGEN_V5
2185     char *optstr = 0;
2186 #endif
2187     int startWith = netgen::MESHCONST_ANALYSE;
2188     int endWith   = netgen::MESHCONST_ANALYSE;
2189     try
2190     {
2191       OCC_CATCH_SIGNALS;
2192 #ifdef NETGEN_V5
2193       err = netgen::OCCGenerateMesh(occgeo, _ngMesh, mparams, startWith, endWith);
2194 #else
2195       err = netgen::OCCGenerateMesh(occgeo, _ngMesh, startWith, endWith, optstr);
2196 #endif
2197       if(netgen::multithread.terminate)
2198         return false;
2199
2200       comment << text(err);
2201     }
2202     catch (Standard_Failure& ex)
2203     {
2204       comment << text(ex);
2205     }
2206     err = 0; //- MESHCONST_ANALYSE isn't so important step
2207     if ( !_ngMesh )
2208       return false;
2209     ngLib.setMesh(( Ng_Mesh*) _ngMesh );
2210
2211     _ngMesh->ClearFaceDescriptors(); // we make descriptors our-self
2212
2213     if ( _simpleHyp )
2214     {
2215       // Pass 1D simple parameters to NETGEN
2216       // --------------------------------
2217       int      nbSeg = _simpleHyp->GetNumberOfSegments();
2218       double segSize = _simpleHyp->GetLocalLength();
2219       for ( int iE = 1; iE <= occgeo.emap.Extent(); ++iE )
2220       {
2221         const TopoDS_Edge& e = TopoDS::Edge( occgeo.emap(iE));
2222         if ( nbSeg )
2223           segSize = SMESH_Algo::EdgeLength( e ) / ( nbSeg - 0.4 );
2224         setLocalSize( e, segSize, *_ngMesh );
2225       }
2226     }
2227     else // if ( ! _simpleHyp )
2228     {
2229       // Local size on vertices and edges
2230       // --------------------------------
2231       for(std::map<int,double>::const_iterator it=EdgeId2LocalSize.begin(); it!=EdgeId2LocalSize.end(); it++)
2232       {
2233         int key = (*it).first;
2234         double hi = (*it).second;
2235         const TopoDS_Shape& shape = ShapesWithLocalSize.FindKey(key);
2236         const TopoDS_Edge& e = TopoDS::Edge(shape);
2237         setLocalSize( e, hi, *_ngMesh );
2238       }
2239       for(std::map<int,double>::const_iterator it=VertexId2LocalSize.begin(); it!=VertexId2LocalSize.end(); it++)
2240       {
2241         int key = (*it).first;
2242         double hi = (*it).second;
2243         const TopoDS_Shape& shape = ShapesWithLocalSize.FindKey(key);
2244         const TopoDS_Vertex& v = TopoDS::Vertex(shape);
2245         gp_Pnt p = BRep_Tool::Pnt(v);
2246         NETGENPlugin_Mesher::RestrictLocalSize( *_ngMesh, p.XYZ(), hi );
2247       }
2248       for(map<int,double>::const_iterator it=FaceId2LocalSize.begin();
2249           it!=FaceId2LocalSize.end(); it++)
2250       {
2251         int key = (*it).first;
2252         double val = (*it).second;
2253         const TopoDS_Shape& shape = ShapesWithLocalSize.FindKey(key);
2254         int faceNgID = occgeo.fmap.FindIndex(shape);
2255         occgeo.SetFaceMaxH(faceNgID, val);
2256         for ( TopExp_Explorer edgeExp( shape, TopAbs_EDGE ); edgeExp.More(); edgeExp.Next() )
2257           setLocalSize( TopoDS::Edge( edgeExp.Current() ), val, *_ngMesh );
2258       }
2259     }
2260
2261     // Precompute internal edges (issue 0020676) in order to
2262     // add mesh on them correctly (twice) to netgen mesh
2263     if ( !err && internals.hasInternalEdges() )
2264     {
2265       // load internal shapes into OCCGeometry
2266       netgen::OCCGeometry intOccgeo;
2267       internals.getInternalEdges( intOccgeo.fmap, intOccgeo.emap, intOccgeo.vmap, meshedSM );
2268       intOccgeo.boundingbox = occgeo.boundingbox;
2269       intOccgeo.shape = occgeo.shape;
2270       intOccgeo.face_maxh.SetSize(intOccgeo.fmap.Extent());
2271       intOccgeo.face_maxh = netgen::mparam.maxh;
2272       netgen::Mesh *tmpNgMesh = NULL;
2273       try
2274       {
2275         OCC_CATCH_SIGNALS;
2276         // compute local H on internal shapes in the main mesh
2277         //OCCSetLocalMeshSize(intOccgeo, *_ngMesh); it deletes _ngMesh->localH
2278
2279         // let netgen create a temporary mesh
2280 #ifdef NETGEN_V5
2281         netgen::OCCGenerateMesh(intOccgeo, tmpNgMesh, mparams, startWith, endWith);
2282 #else
2283         netgen::OCCGenerateMesh(intOccgeo, tmpNgMesh, startWith, endWith, optstr);
2284 #endif
2285         if(netgen::multithread.terminate)
2286           return false;
2287
2288         // copy LocalH from the main to temporary mesh
2289         initState.transferLocalH( _ngMesh, tmpNgMesh );
2290
2291         // compute mesh on internal edges
2292         startWith = endWith = netgen::MESHCONST_MESHEDGES;
2293 #ifdef NETGEN_V5
2294         err = netgen::OCCGenerateMesh(intOccgeo, tmpNgMesh, mparams, startWith, endWith);
2295 #else
2296         err = netgen::OCCGenerateMesh(intOccgeo, tmpNgMesh, startWith, endWith, optstr);
2297 #endif
2298         comment << text(err);
2299       }
2300       catch (Standard_Failure& ex)
2301       {
2302         comment << text(ex);
2303         err = 1;
2304       }
2305       initState.restoreLocalH( tmpNgMesh );
2306
2307       // fill SMESH by netgen mesh
2308       vector< const SMDS_MeshNode* > tmpNodeVec;
2309       FillSMesh( intOccgeo, *tmpNgMesh, initState, *_mesh, tmpNodeVec, comment );
2310       err = ( err || !comment.empty() );
2311
2312       nglib::Ng_DeleteMesh((nglib::Ng_Mesh*)tmpNgMesh);
2313     }
2314
2315     // Fill _ngMesh with nodes and segments of computed submeshes
2316     if ( !err )
2317     {
2318       err = ! ( FillNgMesh(occgeo, *_ngMesh, nodeVec, meshedSM[ MeshDim_0D ]) &&
2319                 FillNgMesh(occgeo, *_ngMesh, nodeVec, meshedSM[ MeshDim_1D ]));
2320     }
2321     initState = NETGENPlugin_ngMeshInfo(_ngMesh);
2322
2323     // Compute 1d mesh
2324     if (!err)
2325     {
2326       startWith = endWith = netgen::MESHCONST_MESHEDGES;
2327       try
2328       {
2329         OCC_CATCH_SIGNALS;
2330 #ifdef NETGEN_V5
2331         err = netgen::OCCGenerateMesh(occgeo, _ngMesh, mparams, startWith, endWith);
2332 #else
2333         err = netgen::OCCGenerateMesh(occgeo, _ngMesh, startWith, endWith, optstr);
2334 #endif
2335         if(netgen::multithread.terminate)
2336           return false;
2337
2338         comment << text(err);
2339       }
2340       catch (Standard_Failure& ex)
2341       {
2342         comment << text(ex);
2343         err = 1;
2344       }
2345     }
2346     if ( _isVolume )
2347       _ticTime = ( doneTime += edgeMeshingTime ) / _totalTime / _progressTic;
2348
2349     mparams.uselocalh = true; // restore as it is used at surface optimization
2350
2351     // ---------------------
2352     // compute surface mesh
2353     // ---------------------
2354     if (!err)
2355     {
2356       // Pass 2D simple parameters to NETGEN
2357       if ( _simpleHyp ) {
2358         if ( double area = _simpleHyp->GetMaxElementArea() ) {
2359           // face area
2360           mparams.maxh = sqrt(2. * area/sqrt(3.0));
2361           mparams.grading = 0.4; // moderate size growth
2362         }
2363         else {
2364           // length from edges
2365           if ( _ngMesh->GetNSeg() ) {
2366             double edgeLength = 0;
2367             TopTools_MapOfShape visitedEdges;
2368             for ( TopExp_Explorer exp( _shape, TopAbs_EDGE ); exp.More(); exp.Next() )
2369               if( visitedEdges.Add(exp.Current()) )
2370                 edgeLength += SMESH_Algo::EdgeLength( TopoDS::Edge( exp.Current() ));
2371             // we have to multiply length by 2 since for each TopoDS_Edge there
2372             // are double set of NETGEN edges, in other words, we have to
2373             // divide _ngMesh->GetNSeg() by 2.
2374             mparams.maxh = 2*edgeLength / _ngMesh->GetNSeg();
2375           }
2376           else {
2377             mparams.maxh = 1000;
2378           }
2379           mparams.grading = 0.2; // slow size growth
2380         }
2381         mparams.quad = _simpleHyp->GetAllowQuadrangles();
2382         mparams.maxh = min( mparams.maxh, occgeo.boundingbox.Diam()/2 );
2383         _ngMesh->SetGlobalH (mparams.maxh);
2384         netgen::Box<3> bb = occgeo.GetBoundingBox();
2385         bb.Increase (bb.Diam()/20);
2386         _ngMesh->SetLocalH (bb.PMin(), bb.PMax(), mparams.grading);
2387       }
2388
2389       // Care of vertices internal in faces (issue 0020676)
2390       if ( internals.hasInternalVertexInFace() )
2391       {
2392         // store computed segments in SMESH in order not to create SMESH
2393         // edges for ng segments added by AddIntVerticesInFaces()
2394         FillSMesh( occgeo, *_ngMesh, initState, *_mesh, nodeVec, comment );
2395         // add segments to faces with internal vertices
2396         AddIntVerticesInFaces( occgeo, *_ngMesh, nodeVec, internals );
2397         initState = NETGENPlugin_ngMeshInfo(_ngMesh);
2398       }
2399
2400       // Build viscous layers
2401       if ( _isViscousLayers2D )
2402       {
2403         if ( !internals.hasInternalVertexInFace() ) {
2404           FillSMesh( occgeo, *_ngMesh, initState, *_mesh, nodeVec, comment );
2405           initState = NETGENPlugin_ngMeshInfo(_ngMesh);
2406         }
2407         SMESH_ProxyMesh::Ptr viscousMesh;
2408         SMESH_MesherHelper   helper( *_mesh );
2409         for ( int faceID = 1; faceID <= occgeo.fmap.Extent(); ++faceID )
2410         {
2411           const TopoDS_Face& F = TopoDS::Face( occgeo.fmap( faceID ));
2412           viscousMesh = StdMeshers_ViscousLayers2D::Compute( *_mesh, F );
2413           if ( !viscousMesh )
2414             return false;
2415           // exclude from computation ng segments built on EDGEs of F
2416           for (int i = 1; i <= _ngMesh->GetNSeg(); i++)
2417           {
2418             netgen::Segment & seg = _ngMesh->LineSegment(i);
2419             if (seg.si == faceID)
2420               seg.si = 0;
2421           }
2422           // add new segments to _ngMesh instead of excluded ones
2423           helper.SetSubShape( F );
2424           TSideVector wires =
2425             StdMeshers_FaceSide::GetFaceWires( F, *_mesh, /*skipMediumNodes=*/true,
2426                                                error, viscousMesh );
2427           error = AddSegmentsToMesh( *_ngMesh, occgeo, wires, helper, nodeVec );
2428
2429           if ( !error ) error = SMESH_ComputeError::New();
2430         }
2431         initState = NETGENPlugin_ngMeshInfo(_ngMesh);
2432       }
2433
2434       // Let netgen compute 2D mesh
2435       startWith = netgen::MESHCONST_MESHSURFACE;
2436       endWith = _optimize ? netgen::MESHCONST_OPTSURFACE : netgen::MESHCONST_MESHSURFACE;
2437       try
2438       {
2439         OCC_CATCH_SIGNALS;
2440 #ifdef NETGEN_V5
2441         err = netgen::OCCGenerateMesh(occgeo, _ngMesh, mparams, startWith, endWith);
2442 #else
2443         err = netgen::OCCGenerateMesh(occgeo, _ngMesh, startWith, endWith, optstr);
2444 #endif
2445         if(netgen::multithread.terminate)
2446           return false;
2447
2448         comment << text (err);
2449       }
2450       catch (Standard_Failure& ex)
2451       {
2452         comment << text(ex);
2453         //err = 1; -- try to make volumes anyway
2454       }
2455       catch (netgen::NgException exc)
2456       {
2457         comment << text(exc);
2458         //err = 1; -- try to make volumes anyway
2459       }
2460     }
2461     if ( _isVolume )
2462     {
2463       doneTime += faceMeshingTime + ( _optimize ? faceOptimizTime : 0 );
2464       _ticTime = doneTime / _totalTime / _progressTic;
2465     }
2466     // ---------------------
2467     // generate volume mesh
2468     // ---------------------
2469     // Fill _ngMesh with nodes and faces of computed 2D submeshes
2470     if ( !err && _isVolume && ( !meshedSM[ MeshDim_2D ].empty() || mparams.quad ))
2471     {
2472       // load SMESH with computed segments and faces
2473       FillSMesh( occgeo, *_ngMesh, initState, *_mesh, nodeVec, comment );
2474
2475       // compute pyramids on quadrangles
2476       SMESH_ProxyMesh::Ptr proxyMesh;
2477       if ( _mesh->NbQuadrangles() > 0 )
2478         for ( int iS = 1; iS <= occgeo.somap.Extent(); ++iS )
2479         {
2480           StdMeshers_QuadToTriaAdaptor* Adaptor = new StdMeshers_QuadToTriaAdaptor;
2481           proxyMesh.reset( Adaptor );
2482
2483           int nbPyrams = _mesh->NbPyramids();
2484           Adaptor->Compute( *_mesh, occgeo.somap(iS) );
2485           if ( nbPyrams != _mesh->NbPyramids() )
2486           {
2487             list< SMESH_subMesh* > quadFaceSM;
2488             for (TopExp_Explorer face(occgeo.somap(iS), TopAbs_FACE); face.More(); face.Next())
2489               if ( Adaptor->GetProxySubMesh( face.Current() ))
2490               {
2491                 quadFaceSM.push_back( _mesh->GetSubMesh( face.Current() ));
2492                 meshedSM[ MeshDim_2D ].remove( quadFaceSM.back() );
2493               }
2494             FillNgMesh(occgeo, *_ngMesh, nodeVec, quadFaceSM, proxyMesh);
2495           }
2496         }
2497       // fill _ngMesh with faces of sub-meshes
2498       err = ! ( FillNgMesh(occgeo, *_ngMesh, nodeVec, meshedSM[ MeshDim_2D ]));
2499       initState = NETGENPlugin_ngMeshInfo(_ngMesh);
2500       //toPython( _ngMesh, "/tmp/ngPython.py");
2501     }
2502     if (!err && _isVolume)
2503     {
2504       // Pass 3D simple parameters to NETGEN
2505       const NETGENPlugin_SimpleHypothesis_3D* simple3d =
2506         dynamic_cast< const NETGENPlugin_SimpleHypothesis_3D* > ( _simpleHyp );
2507       if ( simple3d ) {
2508         if ( double vol = simple3d->GetMaxElementVolume() ) {
2509           // max volume
2510           mparams.maxh = pow( 72, 1/6. ) * pow( vol, 1/3. );
2511           mparams.maxh = min( mparams.maxh, occgeo.boundingbox.Diam()/2 );
2512         }
2513         else {
2514           // length from faces
2515           mparams.maxh = _ngMesh->AverageH();
2516         }
2517         _ngMesh->SetGlobalH (mparams.maxh);
2518         mparams.grading = 0.4;
2519 #ifdef NETGEN_V5
2520         _ngMesh->CalcLocalH(mparams.grading);
2521 #else
2522         _ngMesh->CalcLocalH();
2523 #endif
2524       }
2525       // Care of vertices internal in solids and internal faces (issue 0020676)
2526       if ( internals.hasInternalVertexInSolid() || internals.hasInternalFaces() )
2527       {
2528         // store computed faces in SMESH in order not to create SMESH
2529         // faces for ng faces added here
2530         FillSMesh( occgeo, *_ngMesh, initState, *_mesh, nodeVec, comment );
2531         // add ng faces to solids with internal vertices
2532         AddIntVerticesInSolids( occgeo, *_ngMesh, nodeVec, internals );
2533         // duplicate mesh faces on internal faces
2534         FixIntFaces( occgeo, *_ngMesh, internals );
2535         initState = NETGENPlugin_ngMeshInfo(_ngMesh);
2536       }
2537       // Let netgen compute 3D mesh
2538       startWith = endWith = netgen::MESHCONST_MESHVOLUME;
2539       try
2540       {
2541         OCC_CATCH_SIGNALS;
2542 #ifdef NETGEN_V5
2543         err = netgen::OCCGenerateMesh(occgeo, _ngMesh, mparams, startWith, endWith);
2544 #else
2545         err = netgen::OCCGenerateMesh(occgeo, _ngMesh, startWith, endWith, optstr);
2546 #endif
2547         if(netgen::multithread.terminate)
2548           return false;
2549
2550         if ( comment.empty() ) // do not overwrite a previos error
2551           comment << text(err);
2552       }
2553       catch (Standard_Failure& ex)
2554       {
2555         if ( comment.empty() ) // do not overwrite a previos error
2556           comment << text(ex);
2557         err = 1;
2558       }
2559       catch (netgen::NgException exc)
2560       {
2561         if ( comment.empty() ) // do not overwrite a previos error
2562           comment << text(exc);
2563         err = 1;
2564       }
2565       _ticTime = ( doneTime += voluMeshingTime ) / _totalTime / _progressTic;
2566
2567       // Let netgen optimize 3D mesh
2568       if ( !err && _optimize )
2569       {
2570         startWith = endWith = netgen::MESHCONST_OPTVOLUME;
2571         try
2572         {
2573           OCC_CATCH_SIGNALS;
2574 #ifdef NETGEN_V5
2575           err = netgen::OCCGenerateMesh(occgeo, _ngMesh, mparams, startWith, endWith);
2576 #else
2577           err = netgen::OCCGenerateMesh(occgeo, _ngMesh, startWith, endWith, optstr);
2578 #endif
2579           if(netgen::multithread.terminate)
2580             return false;
2581
2582           if ( comment.empty() ) // do not overwrite a previos error
2583             comment << text(err);
2584         }
2585         catch (Standard_Failure& ex)
2586         {
2587           if ( comment.empty() ) // do not overwrite a previos error
2588             comment << text(ex);
2589         }
2590         catch (netgen::NgException exc)
2591         {
2592           if ( comment.empty() ) // do not overwrite a previos error
2593             comment << text(exc);
2594         }
2595       }
2596     }
2597     if (!err && mparams.secondorder > 0)
2598     {
2599       try
2600       {
2601         OCC_CATCH_SIGNALS;
2602         netgen::OCCRefinementSurfaces ref (occgeo);
2603         ref.MakeSecondOrder (*_ngMesh);
2604       }
2605       catch (Standard_Failure& ex)
2606       {
2607         if ( comment.empty() ) // do not overwrite a previos error
2608           comment << "Exception in netgen at passing to 2nd order ";
2609       }
2610       catch (netgen::NgException exc)
2611       {
2612         if ( comment.empty() ) // do not overwrite a previos error
2613           comment << exc.What();
2614       }
2615     }
2616   }
2617
2618   _ticTime = 0.98 / _progressTic;
2619
2620   int nbNod = _ngMesh->GetNP();
2621   int nbSeg = _ngMesh->GetNSeg();
2622   int nbFac = _ngMesh->GetNSE();
2623   int nbVol = _ngMesh->GetNE();
2624   bool isOK = ( !err && (_isVolume ? (nbVol > 0) : (nbFac > 0)) );
2625
2626   MESSAGE((err ? "Mesh Generation failure" : "End of Mesh Generation") <<
2627           ", nb nodes: "    << nbNod <<
2628           ", nb segments: " << nbSeg <<
2629           ", nb faces: "    << nbFac <<
2630           ", nb volumes: "  << nbVol);
2631
2632   // Feed back the SMESHDS with the generated Nodes and Elements
2633   if ( true /*isOK*/ ) // get whatever built
2634     FillSMesh( occgeo, *_ngMesh, initState, *_mesh, nodeVec, comment ); //!< 
2635
2636   SMESH_ComputeErrorPtr readErr = ReadErrors(nodeVec);
2637   if ( readErr && !readErr->myBadElements.empty() )
2638     error = readErr;
2639
2640   if ( error->IsOK() && ( !isOK || comment.size() > 0 ))
2641     error->myName = COMPERR_ALGO_FAILED;
2642   if ( !comment.empty() )
2643     error->myComment = comment;
2644
2645   // SetIsAlwaysComputed( true ) to empty sub-meshes, which
2646   // appear if the geometry contains coincident sub-shape due
2647   // to bool merge_solids = 1; in netgen/libsrc/occ/occgenmesh.cpp
2648   const int nbMaps = 2;
2649   const TopTools_IndexedMapOfShape* geoMaps[nbMaps] =
2650     { & occgeo.vmap, & occgeo.emap/*, & occgeo.fmap*/ };
2651   for ( int iMap = 0; iMap < nbMaps; ++iMap )
2652     for (int i = 1; i <= geoMaps[iMap]->Extent(); i++)
2653       if ( SMESH_subMesh* sm = _mesh->GetSubMeshContaining( geoMaps[iMap]->FindKey(i)))
2654         if ( !sm->IsMeshComputed() )
2655           sm->SetIsAlwaysComputed( true );
2656
2657   // set bad compute error to subshapes of all failed sub-shapes
2658   if ( !error->IsOK() )
2659   {
2660     bool pb2D = false, pb3D = false;
2661     for (int i = 1; i <= occgeo.fmap.Extent(); i++) {
2662       int status = occgeo.facemeshstatus[i-1];
2663       if (status == 1 ) continue;
2664       if ( SMESH_subMesh* sm = _mesh->GetSubMeshContaining( occgeo.fmap( i ))) {
2665         SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
2666         if ( !smError || smError->IsOK() ) {
2667           if ( status == -1 )
2668             smError.reset( new SMESH_ComputeError( *error ));
2669           else
2670             smError.reset( new SMESH_ComputeError( COMPERR_ALGO_FAILED, "Ignored" ));
2671           if ( SMESH_Algo::GetMeshError( sm ) == SMESH_Algo::MEr_OK )
2672             smError->myName = COMPERR_WARNING;
2673         }
2674         pb2D = pb2D || smError->IsKO();
2675       }
2676     }
2677     if ( !pb2D ) // all faces are OK
2678       for (int i = 1; i <= occgeo.somap.Extent(); i++)
2679         if ( SMESH_subMesh* sm = _mesh->GetSubMeshContaining( occgeo.somap( i )))
2680         {
2681           bool smComputed = nbVol && !sm->IsEmpty();
2682           if ( smComputed && internals.hasInternalVertexInSolid( sm->GetId() ))
2683           {
2684             int nbIntV = internals.getSolidsWithVertices().find( sm->GetId() )->second.size();
2685             SMESHDS_SubMesh* smDS = sm->GetSubMeshDS();
2686             smComputed = ( smDS->NbElements() > 0 || smDS->NbNodes() > nbIntV );
2687           }
2688           SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
2689           if ( !smComputed && ( !smError || smError->IsOK() ))
2690           {
2691             smError.reset( new SMESH_ComputeError( *error ));
2692             if ( nbVol && SMESH_Algo::GetMeshError( sm ) == SMESH_Algo::MEr_OK )
2693               smError->myName = COMPERR_WARNING;
2694           }
2695           pb3D = pb3D || ( smError && smError->IsKO() );
2696         }
2697     if ( !pb2D && !pb3D )
2698       err = 0; // no fatal errors, only warnings
2699   }
2700
2701   ngLib._isComputeOk = !err;
2702
2703   return !err;
2704 }
2705
2706 //=============================================================================
2707 /*!
2708  * Evaluate
2709  */
2710 //=============================================================================
2711 bool NETGENPlugin_Mesher::Evaluate(MapShapeNbElems& aResMap)
2712 {
2713   netgen::MeshingParameters& mparams = netgen::mparam;
2714
2715
2716   // -------------------------
2717   // Prepare OCC geometry
2718   // -------------------------
2719   netgen::OCCGeometry occgeo;
2720   list< SMESH_subMesh* > meshedSM[4]; // for 0-3 dimensions
2721   NETGENPlugin_Internals internals( *_mesh, _shape, _isVolume );
2722   PrepareOCCgeometry( occgeo, _shape, *_mesh, meshedSM, &internals );
2723
2724   bool tooManyElems = false;
2725   const int hugeNb = std::numeric_limits<int>::max() / 100;
2726
2727   // ----------------
2728   // evaluate 1D 
2729   // ----------------
2730   // pass 1D simple parameters to NETGEN
2731   if ( _simpleHyp )
2732   {
2733     // not to RestrictLocalH() according to curvature during MESHCONST_ANALYSE
2734     mparams.uselocalh = false;
2735     mparams.grading = 0.8; // not limitited size growth
2736
2737     if ( _simpleHyp->GetNumberOfSegments() )
2738       // nb of segments
2739       mparams.maxh = occgeo.boundingbox.Diam();
2740     else
2741       // segment length
2742       mparams.maxh = _simpleHyp->GetLocalLength();
2743   }
2744
2745   if ( mparams.maxh == 0.0 )
2746     mparams.maxh = occgeo.boundingbox.Diam();
2747   if ( _simpleHyp || ( mparams.minh == 0.0 && _fineness != NETGENPlugin_Hypothesis::UserDefined))
2748     mparams.minh = GetDefaultMinSize( _shape, mparams.maxh );
2749
2750   // let netgen create _ngMesh and calculate element size on not meshed shapes
2751   NETGENPlugin_NetgenLibWrapper ngLib;
2752   netgen::Mesh *ngMesh = NULL;
2753 #ifndef NETGEN_V5
2754   char *optstr = 0;
2755 #endif
2756   int startWith = netgen::MESHCONST_ANALYSE;
2757   int endWith   = netgen::MESHCONST_MESHEDGES;
2758 #ifdef NETGEN_V5
2759   int err = netgen::OCCGenerateMesh(occgeo, ngMesh, mparams, startWith, endWith);
2760 #else
2761   int err = netgen::OCCGenerateMesh(occgeo, ngMesh, startWith, endWith, optstr);
2762 #endif
2763
2764   if(netgen::multithread.terminate)
2765     return false;
2766
2767   ngLib.setMesh(( Ng_Mesh*) ngMesh );
2768   if (err) {
2769     if ( SMESH_subMesh* sm = _mesh->GetSubMeshContaining( _shape ))
2770       sm->GetComputeError().reset( new SMESH_ComputeError( COMPERR_ALGO_FAILED ));
2771     return false;
2772   }
2773   if ( _simpleHyp )
2774   {
2775     // Pass 1D simple parameters to NETGEN
2776     // --------------------------------
2777     int      nbSeg = _simpleHyp->GetNumberOfSegments();
2778     double segSize = _simpleHyp->GetLocalLength();
2779     for ( int iE = 1; iE <= occgeo.emap.Extent(); ++iE )
2780     {
2781       const TopoDS_Edge& e = TopoDS::Edge( occgeo.emap(iE));
2782       if ( nbSeg )
2783         segSize = SMESH_Algo::EdgeLength( e ) / ( nbSeg - 0.4 );
2784       setLocalSize( e, segSize, *ngMesh );
2785     }
2786   }
2787   else // if ( ! _simpleHyp )
2788   {
2789     // Local size on vertices and edges
2790     // --------------------------------
2791     for(std::map<int,double>::const_iterator it=EdgeId2LocalSize.begin(); it!=EdgeId2LocalSize.end(); it++)
2792     {
2793       int key = (*it).first;
2794       double hi = (*it).second;
2795       const TopoDS_Shape& shape = ShapesWithLocalSize.FindKey(key);
2796       const TopoDS_Edge& e = TopoDS::Edge(shape);
2797       setLocalSize( e, hi, *ngMesh );
2798     }
2799     for(std::map<int,double>::const_iterator it=VertexId2LocalSize.begin(); it!=VertexId2LocalSize.end(); it++)
2800     {
2801       int key = (*it).first;
2802       double hi = (*it).second;
2803       const TopoDS_Shape& shape = ShapesWithLocalSize.FindKey(key);
2804       const TopoDS_Vertex& v = TopoDS::Vertex(shape);
2805       gp_Pnt p = BRep_Tool::Pnt(v);
2806       NETGENPlugin_Mesher::RestrictLocalSize( *ngMesh, p.XYZ(), hi );
2807     }
2808     for(map<int,double>::const_iterator it=FaceId2LocalSize.begin();
2809         it!=FaceId2LocalSize.end(); it++)
2810     {
2811       int key = (*it).first;
2812       double val = (*it).second;
2813       const TopoDS_Shape& shape = ShapesWithLocalSize.FindKey(key);
2814       int faceNgID = occgeo.fmap.FindIndex(shape);
2815       occgeo.SetFaceMaxH(faceNgID, val);
2816       for ( TopExp_Explorer edgeExp( shape, TopAbs_EDGE ); edgeExp.More(); edgeExp.Next() )
2817         setLocalSize( TopoDS::Edge( edgeExp.Current() ), val, *ngMesh );
2818     }
2819   }
2820   // calculate total nb of segments and length of edges
2821   double fullLen = 0.0;
2822   int fullNbSeg = 0;
2823   int entity = mparams.secondorder > 0 ? SMDSEntity_Quad_Edge : SMDSEntity_Edge;
2824   TopTools_DataMapOfShapeInteger Edge2NbSeg;
2825   for (TopExp_Explorer exp(_shape, TopAbs_EDGE); exp.More(); exp.Next())
2826   {
2827     TopoDS_Edge E = TopoDS::Edge( exp.Current() );
2828     if( !Edge2NbSeg.Bind(E,0) )
2829       continue;
2830
2831     double aLen = SMESH_Algo::EdgeLength(E);
2832     fullLen += aLen;
2833
2834     vector<int>& aVec = aResMap[_mesh->GetSubMesh(E)];
2835     if ( aVec.empty() )
2836       aVec.resize( SMDSEntity_Last, 0);
2837     else
2838       fullNbSeg += aVec[ entity ];
2839   }
2840
2841   // store nb of segments computed by Netgen
2842   NCollection_Map<Link> linkMap;
2843   for (int i = 1; i <= ngMesh->GetNSeg(); ++i )
2844   {
2845     const netgen::Segment& seg = ngMesh->LineSegment(i);
2846     Link link(seg[0], seg[1]);
2847     if ( !linkMap.Add( link )) continue;
2848     int aGeomEdgeInd = seg.epgeominfo[0].edgenr;
2849     if (aGeomEdgeInd > 0 && aGeomEdgeInd <= occgeo.emap.Extent())
2850     {
2851       vector<int>& aVec = aResMap[_mesh->GetSubMesh(occgeo.emap(aGeomEdgeInd))];
2852       aVec[ entity ]++;
2853     }
2854   }
2855   // store nb of nodes on edges computed by Netgen
2856   TopTools_DataMapIteratorOfDataMapOfShapeInteger Edge2NbSegIt(Edge2NbSeg);
2857   for (; Edge2NbSegIt.More(); Edge2NbSegIt.Next())
2858   {
2859     vector<int>& aVec = aResMap[_mesh->GetSubMesh(Edge2NbSegIt.Key())];
2860     if ( aVec[ entity ] > 1 && aVec[ SMDSEntity_Node ] == 0 )
2861       aVec[SMDSEntity_Node] = mparams.secondorder > 0  ? 2*aVec[ entity ]-1 : aVec[ entity ]-1;
2862
2863     fullNbSeg += aVec[ entity ];
2864     Edge2NbSeg( Edge2NbSegIt.Key() ) = aVec[ entity ];
2865   }
2866   if ( fullNbSeg == 0 )
2867     return false;
2868
2869   // ----------------
2870   // evaluate 2D 
2871   // ----------------
2872   if ( _simpleHyp ) {
2873     if ( double area = _simpleHyp->GetMaxElementArea() ) {
2874       // face area
2875       mparams.maxh = sqrt(2. * area/sqrt(3.0));
2876       mparams.grading = 0.4; // moderate size growth
2877     }
2878     else {
2879       // length from edges
2880       mparams.maxh = fullLen/fullNbSeg;
2881       mparams.grading = 0.2; // slow size growth
2882     }
2883   }
2884   mparams.maxh = min( mparams.maxh, occgeo.boundingbox.Diam()/2 );
2885   mparams.maxh = min( mparams.maxh, fullLen/fullNbSeg * (1. + mparams.grading));
2886
2887   for (TopExp_Explorer exp(_shape, TopAbs_FACE); exp.More(); exp.Next())
2888   {
2889     TopoDS_Face F = TopoDS::Face( exp.Current() );
2890     SMESH_subMesh *sm = _mesh->GetSubMesh(F);
2891     GProp_GProps G;
2892     BRepGProp::SurfaceProperties(F,G);
2893     double anArea = G.Mass();
2894     tooManyElems = tooManyElems || ( anArea/hugeNb > mparams.maxh*mparams.maxh );
2895     int nb1d = 0;
2896     if ( !tooManyElems )
2897     {
2898       TopTools_MapOfShape egdes;
2899       for (TopExp_Explorer exp1(F,TopAbs_EDGE); exp1.More(); exp1.Next())
2900         if ( egdes.Add( exp1.Current() ))
2901           nb1d += Edge2NbSeg.Find(exp1.Current());
2902     }
2903     int nbFaces = tooManyElems ? hugeNb : int( 4*anArea / (mparams.maxh*mparams.maxh*sqrt(3.)));
2904     int nbNodes = tooManyElems ? hugeNb : (( nbFaces*3 - (nb1d-1)*2 ) / 6 + 1 );
2905
2906     vector<int> aVec(SMDSEntity_Last, 0);
2907     if( mparams.secondorder > 0 ) {
2908       int nb1d_in = (nbFaces*3 - nb1d) / 2;
2909       aVec[SMDSEntity_Node] = nbNodes + nb1d_in;
2910       aVec[SMDSEntity_Quad_Triangle] = nbFaces;
2911     }
2912     else {
2913       aVec[SMDSEntity_Node] = Max ( nbNodes, 0  );
2914       aVec[SMDSEntity_Triangle] = nbFaces;
2915     }
2916     aResMap[sm].swap(aVec);
2917   }
2918
2919   // ----------------
2920   // evaluate 3D
2921   // ----------------
2922   if(_isVolume) {
2923     // pass 3D simple parameters to NETGEN
2924     const NETGENPlugin_SimpleHypothesis_3D* simple3d =
2925       dynamic_cast< const NETGENPlugin_SimpleHypothesis_3D* > ( _simpleHyp );
2926     if ( simple3d ) {
2927       if ( double vol = simple3d->GetMaxElementVolume() ) {
2928         // max volume
2929         mparams.maxh = pow( 72, 1/6. ) * pow( vol, 1/3. );
2930         mparams.maxh = min( mparams.maxh, occgeo.boundingbox.Diam()/2 );
2931       }
2932       else {
2933         // using previous length from faces
2934       }
2935       mparams.grading = 0.4;
2936       mparams.maxh = min( mparams.maxh, fullLen/fullNbSeg * (1. + mparams.grading));
2937     }
2938     GProp_GProps G;
2939     BRepGProp::VolumeProperties(_shape,G);
2940     double aVolume = G.Mass();
2941     double tetrVol = 0.1179*mparams.maxh*mparams.maxh*mparams.maxh;
2942     tooManyElems = tooManyElems || ( aVolume/hugeNb > tetrVol );
2943     int nbVols = tooManyElems ? hugeNb : int(aVolume/tetrVol);
2944     int nb1d_in = int(( nbVols*6 - fullNbSeg ) / 6 );
2945     vector<int> aVec(SMDSEntity_Last, 0 );
2946     if ( tooManyElems ) // avoid FPE
2947     {
2948       aVec[SMDSEntity_Node] = hugeNb;
2949       aVec[ mparams.secondorder > 0 ? SMDSEntity_Quad_Tetra : SMDSEntity_Tetra] = hugeNb;
2950     }
2951     else
2952     {
2953       if( mparams.secondorder > 0 ) {
2954         aVec[SMDSEntity_Node] = nb1d_in/3 + 1 + nb1d_in;
2955         aVec[SMDSEntity_Quad_Tetra] = nbVols;
2956       }
2957       else {
2958         aVec[SMDSEntity_Node] = nb1d_in/3 + 1;
2959         aVec[SMDSEntity_Tetra] = nbVols;
2960       }
2961     }
2962     SMESH_subMesh *sm = _mesh->GetSubMesh(_shape);
2963     aResMap[sm].swap(aVec);
2964   }
2965
2966   return true;
2967 }
2968
2969 double NETGENPlugin_Mesher::GetProgress(const SMESH_Algo* holder,
2970                                         const int *       algoProgressTic,
2971                                         const double *    algoProgress) const
2972 {
2973   ((int&) _progressTic ) = *algoProgressTic + 1;
2974
2975   if ( !_occgeom ) return 0;
2976
2977   double progress = -1;
2978   if ( !_isVolume )
2979   {
2980     if ( _ticTime < 0 && netgen::multithread.task[0] == 'O'/*Optimizing surface*/ )
2981     {
2982       ((double&) _ticTime ) = edgeFaceMeshingTime / _totalTime / _progressTic;
2983     }
2984     else if ( !_optimize /*&& _occgeom->fmap.Extent() > 1*/ )
2985     {
2986       int doneShapeIndex = -1;
2987       while ( doneShapeIndex+1 < _occgeom->facemeshstatus.Size() &&
2988               _occgeom->facemeshstatus[ doneShapeIndex+1 ])
2989         doneShapeIndex++;
2990       if ( doneShapeIndex+1 != _curShapeIndex )
2991       {
2992         ((int&) _curShapeIndex) = doneShapeIndex+1;
2993         double    doneShapeRate = _curShapeIndex / double( _occgeom->fmap.Extent() );
2994         double         doneTime = edgeMeshingTime + doneShapeRate * faceMeshingTime;
2995         ((double&)    _ticTime) = doneTime / _totalTime / _progressTic;
2996         // cout << "shape " << _curShapeIndex << " _ticTime " << _ticTime
2997         //      << " " << doneTime / _totalTime / _progressTic << endl;
2998       }
2999     }
3000   }
3001   else if ( !_optimize && _occgeom->somap.Extent() > 1 )
3002   {
3003     int curShapeIndex = _curShapeIndex;
3004     if ( _ngMesh->GetNE() > 0 )
3005     {
3006       netgen::Element el = (*_ngMesh)[netgen::ElementIndex( _ngMesh->GetNE()-1 )];
3007       curShapeIndex = el.GetIndex();
3008     }
3009     if ( curShapeIndex != _curShapeIndex )
3010     {
3011       ((int&) _curShapeIndex) = curShapeIndex;
3012       double    doneShapeRate = _curShapeIndex / double( _occgeom->somap.Extent() );
3013       double         doneTime = edgeFaceMeshingTime + doneShapeRate * voluMeshingTime;
3014       ((double&)    _ticTime) = doneTime / _totalTime / _progressTic;
3015       // cout << "shape " << _curShapeIndex << " _ticTime " << _ticTime
3016       //      << " " << doneTime / _totalTime / _progressTic << endl;
3017     }
3018   }
3019   if ( _ticTime > 0 )
3020     progress  = Max( *algoProgressTic * _ticTime, *algoProgress );
3021   if ( progress > 0 )
3022   {
3023     ((int&) *algoProgressTic )++;
3024     ((double&) *algoProgress) = progress;
3025   }
3026   //cout << progress << " "  << *algoProgressTic << " " << netgen::multithread.task << " "<< _ticTime << endl;
3027
3028   return Min( progress, 0.99 );
3029 }
3030
3031 //================================================================================
3032 /*!
3033  * \brief Remove "test.out" and "problemfaces" files in current directory
3034  */
3035 //================================================================================
3036
3037 void NETGENPlugin_Mesher::RemoveTmpFiles()
3038 {
3039   bool rm =  SMESH_File("test.out").remove() ;
3040 #ifndef WIN32
3041   if (rm && netgen::testout)
3042   {
3043     delete netgen::testout;
3044     netgen::testout = 0;
3045   }
3046 #endif
3047   SMESH_File("problemfaces").remove();
3048   SMESH_File("occmesh.rep").remove();
3049 }
3050
3051 //================================================================================
3052 /*!
3053  * \brief Read mesh entities preventing successful computation from "test.out" file
3054  */
3055 //================================================================================
3056
3057 SMESH_ComputeErrorPtr
3058 NETGENPlugin_Mesher::ReadErrors(const vector<const SMDS_MeshNode* >& nodeVec)
3059 {
3060   SMESH_ComputeErrorPtr err = SMESH_ComputeError::New
3061     (COMPERR_BAD_INPUT_MESH, "Some edges multiple times in surface mesh");
3062   SMESH_File file("test.out");
3063   vector<int> two(2);
3064   const char* badEdgeStr = " multiple times in surface mesh";
3065   const int   badEdgeStrLen = strlen( badEdgeStr );
3066   while( !file.eof() )
3067   {
3068     if ( strncmp( file, "Edge ", 5 ) == 0 &&
3069          file.getInts( two ) &&
3070          strncmp( file, badEdgeStr, badEdgeStrLen ) == 0 &&
3071          two[0] < nodeVec.size() && two[1] < nodeVec.size())
3072     {
3073       err->myBadElements.push_back( new SMDS_LinearEdge( nodeVec[ two[0]], nodeVec[ two[1]] ));
3074       file += badEdgeStrLen;
3075     }
3076     else if ( strncmp( file, "Intersecting: ", 14 ) == 0 )
3077     {
3078 // Intersecting: 
3079 // openelement 18 with open element 126
3080 // 41  36  38  
3081 // 69  70  72
3082       vector<int> three1(3), three2(3);
3083       file.getLine();
3084       const char* pos = file;
3085       bool ok = ( strncmp( file, "openelement ", 12 ) == 0 );
3086       ok = ok && file.getInts( two );
3087       ok = ok && file.getInts( three1 );
3088       ok = ok && file.getInts( three2 );
3089       for ( int i = 0; ok && i < 3; ++i )
3090         ok = ( three1[i] < nodeVec.size() && nodeVec[ three1[i]]);
3091       for ( int i = 0; ok && i < 3; ++i ) 
3092         ok = ( three2[i] < nodeVec.size() && nodeVec[ three2[i]]);
3093       if ( ok )
3094       {
3095         err->myBadElements.push_back( new SMDS_FaceOfNodes( nodeVec[ three1[0]],
3096                                                             nodeVec[ three1[1]],
3097                                                             nodeVec[ three1[2]]));
3098         err->myBadElements.push_back( new SMDS_FaceOfNodes( nodeVec[ three2[0]],
3099                                                             nodeVec[ three2[1]],
3100                                                             nodeVec[ three2[2]]));
3101         err->myComment = "Intersecting triangles";
3102       }
3103       else
3104       {
3105         file.setPos( pos );
3106       }
3107     }
3108     else
3109     {
3110       ++file;
3111     }
3112   }
3113   return err;
3114 }
3115
3116 //================================================================================
3117 /*!
3118  * \brief Write a python script creating an equivalent SALOME mesh.
3119  * This is useful to see what mesh is passed as input for the next step of mesh
3120  * generation (of mesh of higher dimension)
3121  */
3122 //================================================================================
3123
3124 void NETGENPlugin_Mesher::toPython( const netgen::Mesh* ngMesh,
3125                                     const std::string&  pyFile)
3126 {
3127   ofstream outfile(pyFile.c_str(), ios::out);
3128   if ( !outfile ) return;
3129
3130   outfile << "import SMESH" << endl
3131           << "from salome.smesh import smeshBuilder" << endl
3132           << "smesh = smeshBuilder.New(salome.myStudy)" << endl
3133           << "mesh = smesh.Mesh()" << endl << endl;
3134
3135   using namespace netgen;
3136   PointIndex pi;
3137   for (pi = PointIndex::BASE; 
3138        pi < ngMesh->GetNP()+PointIndex::BASE; pi++)
3139   {
3140     outfile << "mesh.AddNode( ";
3141     outfile << (*ngMesh)[pi](0) << ", ";
3142     outfile << (*ngMesh)[pi](1) << ", ";
3143     outfile << (*ngMesh)[pi](2) << ") ## "<< pi << endl;
3144   }
3145
3146   int nbDom = ngMesh->GetNDomains();
3147   for ( int i = 0; i < nbDom; ++i )
3148     outfile<< "grp" << i+1 << " = mesh.CreateEmptyGroup( SMESH.FACE, 'domain"<< i+1 << "')"<< endl;
3149
3150   SurfaceElementIndex sei;
3151   for (sei = 0; sei < ngMesh->GetNSE(); sei++)
3152   {
3153     outfile << "mesh.AddFace([ ";
3154     Element2d sel = (*ngMesh)[sei];
3155     for (int j = 0; j < sel.GetNP(); j++)
3156       outfile << sel[j] << ( j+1 < sel.GetNP() ? ", " : " ])");
3157     if ( sel.IsDeleted() ) outfile << " ## IsDeleted ";
3158     outfile << endl;
3159
3160     if ((*ngMesh)[sei].GetIndex())
3161     {
3162       if ( int dom1 = ngMesh->GetFaceDescriptor((*ngMesh)[sei].GetIndex ()).DomainIn())
3163         outfile << "grp"<< dom1 <<".Add([ " << (int)sei+1 << " ])" << endl;
3164       if ( int dom2 = ngMesh->GetFaceDescriptor((*ngMesh)[sei].GetIndex ()).DomainOut())
3165         outfile << "grp"<< dom2 <<".Add([ " << (int)sei+1 << " ])" << endl;
3166     }
3167   }
3168
3169   for (ElementIndex ei = 0; ei < ngMesh->GetNE(); ei++)
3170   {
3171     Element el = (*ngMesh)[ei];
3172     outfile << "mesh.AddVolume([ ";
3173     for (int j = 0; j < el.GetNP(); j++)
3174       outfile << el[j] << ( j+1 < el.GetNP() ? ", " : " ])");
3175     outfile << endl;
3176   }
3177
3178   for (int i = 1; i <= ngMesh->GetNSeg(); i++)
3179   {
3180     const Segment & seg = ngMesh->LineSegment (i);
3181     outfile << "mesh.AddEdge([ "
3182             << seg[0] << ", "
3183             << seg[1] << " ])" << endl;
3184   }
3185   cout << "Write " << pyFile << endl;
3186 }
3187
3188 //================================================================================
3189 /*!
3190  * \brief Constructor of NETGENPlugin_ngMeshInfo
3191  */
3192 //================================================================================
3193
3194 NETGENPlugin_ngMeshInfo::NETGENPlugin_ngMeshInfo( netgen::Mesh* ngMesh):
3195   _copyOfLocalH(0)
3196 {
3197   if ( ngMesh )
3198   {
3199     _nbNodes    = ngMesh->GetNP();
3200     _nbSegments = ngMesh->GetNSeg();
3201     _nbFaces    = ngMesh->GetNSE();
3202     _nbVolumes  = ngMesh->GetNE();
3203   }
3204   else
3205   {
3206     _nbNodes = _nbSegments = _nbFaces = _nbVolumes = 0;
3207   }
3208 }
3209
3210 //================================================================================
3211 /*!
3212  * \brief Copy LocalH member from one netgen mesh to another
3213  */
3214 //================================================================================
3215
3216 void NETGENPlugin_ngMeshInfo::transferLocalH( netgen::Mesh* fromMesh,
3217                                               netgen::Mesh* toMesh )
3218 {
3219   if ( !fromMesh->LocalHFunctionGenerated() ) return;
3220   if ( !toMesh->LocalHFunctionGenerated() )
3221 #ifdef NETGEN_V5
3222     toMesh->CalcLocalH(netgen::mparam.grading);
3223 #else
3224     toMesh->CalcLocalH();
3225 #endif
3226
3227   const size_t size = sizeof( netgen::LocalH );
3228   _copyOfLocalH = new char[ size ];
3229   memcpy( (void*)_copyOfLocalH, (void*)&toMesh->LocalHFunction(), size );
3230   memcpy( (void*)&toMesh->LocalHFunction(), (void*)&fromMesh->LocalHFunction(), size );
3231 }
3232
3233 //================================================================================
3234 /*!
3235  * \brief Restore LocalH member of a netgen mesh
3236  */
3237 //================================================================================
3238
3239 void NETGENPlugin_ngMeshInfo::restoreLocalH( netgen::Mesh* toMesh )
3240 {
3241   if ( _copyOfLocalH )
3242   {
3243     const size_t size = sizeof( netgen::LocalH );
3244     memcpy( (void*)&toMesh->LocalHFunction(), (void*)_copyOfLocalH, size );
3245     delete [] _copyOfLocalH;
3246     _copyOfLocalH = 0;
3247   }
3248 }
3249
3250 //================================================================================
3251 /*!
3252  * \brief Find "internal" sub-shapes
3253  */
3254 //================================================================================
3255
3256 NETGENPlugin_Internals::NETGENPlugin_Internals( SMESH_Mesh&         mesh,
3257                                                 const TopoDS_Shape& shape,
3258                                                 bool                is3D )
3259   : _mesh( mesh ), _is3D( is3D )
3260 {
3261   SMESHDS_Mesh* meshDS = mesh.GetMeshDS();
3262
3263   TopExp_Explorer f,e;
3264   for ( f.Init( shape, TopAbs_FACE ); f.More(); f.Next() )
3265   {
3266     int faceID = meshDS->ShapeToIndex( f.Current() );
3267
3268     // find not computed internal edges
3269
3270     for ( e.Init( f.Current().Oriented(TopAbs_FORWARD), TopAbs_EDGE ); e.More(); e.Next() )
3271       if ( e.Current().Orientation() == TopAbs_INTERNAL )
3272       {
3273         SMESH_subMesh* eSM = mesh.GetSubMesh( e.Current() );
3274         if ( eSM->IsEmpty() )
3275         {
3276           _e2face.insert( make_pair( eSM->GetId(), faceID ));
3277           for ( TopoDS_Iterator v(e.Current()); v.More(); v.Next() )
3278             _e2face.insert( make_pair( meshDS->ShapeToIndex( v.Value() ), faceID ));
3279         }
3280       }
3281
3282     // find internal vertices in a face
3283     set<int> intVV; // issue 0020850 where same vertex is twice in a face
3284     for ( TopoDS_Iterator fSub( f.Current() ); fSub.More(); fSub.Next())
3285       if ( fSub.Value().ShapeType() == TopAbs_VERTEX )
3286       {
3287         int vID = meshDS->ShapeToIndex( fSub.Value() );
3288         if ( intVV.insert( vID ).second )
3289           _f2v[ faceID ].push_back( vID );
3290       }
3291
3292     if ( is3D )
3293     {
3294       // find internal faces and their subshapes where nodes are to be doubled
3295       //  to make a crack with non-sewed borders
3296
3297       if ( f.Current().Orientation() == TopAbs_INTERNAL )
3298       {
3299         _intShapes.insert( meshDS->ShapeToIndex( f.Current() ));
3300
3301         // egdes
3302         list< TopoDS_Shape > edges;
3303         for ( e.Init( f.Current(), TopAbs_EDGE ); e.More(); e.Next())
3304           if ( SMESH_MesherHelper::NbAncestors( e.Current(), mesh, TopAbs_FACE ) > 1 )
3305           {
3306             _intShapes.insert( meshDS->ShapeToIndex( e.Current() ));
3307             edges.push_back( e.Current() );
3308             // find border faces
3309             PShapeIteratorPtr fIt =
3310               SMESH_MesherHelper::GetAncestors( edges.back(),mesh,TopAbs_FACE );
3311             while ( const TopoDS_Shape* pFace = fIt->next() )
3312               if ( !pFace->IsSame( f.Current() ))
3313                 _borderFaces.insert( meshDS->ShapeToIndex( *pFace ));
3314           }
3315         // vertices
3316         // we consider vertex internal if it is shared by more than one internal edge
3317         list< TopoDS_Shape >::iterator edge = edges.begin();
3318         for ( ; edge != edges.end(); ++edge )
3319           for ( TopoDS_Iterator v( *edge ); v.More(); v.Next() )
3320           {
3321             set<int> internalEdges;
3322             PShapeIteratorPtr eIt =
3323               SMESH_MesherHelper::GetAncestors( v.Value(),mesh,TopAbs_EDGE );
3324             while ( const TopoDS_Shape* pEdge = eIt->next() )
3325             {
3326               int edgeID = meshDS->ShapeToIndex( *pEdge );
3327               if ( isInternalShape( edgeID ))
3328                 internalEdges.insert( edgeID );
3329             }
3330             if ( internalEdges.size() > 1 )
3331               _intShapes.insert( meshDS->ShapeToIndex( v.Value() ));
3332           }
3333       }
3334     }
3335   } // loop on geom faces
3336
3337   // find vertices internal in solids
3338   if ( is3D )
3339   {
3340     for ( TopExp_Explorer so(shape, TopAbs_SOLID); so.More(); so.Next())
3341     {
3342       int soID = meshDS->ShapeToIndex( so.Current() );
3343       for ( TopoDS_Iterator soSub( so.Current() ); soSub.More(); soSub.Next())
3344         if ( soSub.Value().ShapeType() == TopAbs_VERTEX )
3345           _s2v[ soID ].push_back( meshDS->ShapeToIndex( soSub.Value() ));
3346     }
3347   }
3348 }
3349
3350 //================================================================================
3351 /*!
3352  * \brief Find mesh faces on non-internal geom faces sharing internal edge
3353  * some nodes of which are to be doubled to make the second border of the "crack"
3354  */
3355 //================================================================================
3356
3357 void NETGENPlugin_Internals::findBorderElements( TIDSortedElemSet & borderElems )
3358 {
3359   if ( _intShapes.empty() ) return;
3360
3361   SMESH_Mesh& mesh = const_cast<SMESH_Mesh&>(_mesh);
3362   SMESHDS_Mesh* meshDS = mesh.GetMeshDS();
3363
3364   // loop on internal geom edges
3365   set<int>::const_iterator intShapeId = _intShapes.begin();
3366   for ( ; intShapeId != _intShapes.end(); ++intShapeId )
3367   {
3368     const TopoDS_Shape& s = meshDS->IndexToShape( *intShapeId );
3369     if ( s.ShapeType() != TopAbs_EDGE ) continue;
3370
3371     // get internal and non-internal geom faces sharing the internal edge <s>
3372     int intFace = 0;
3373     set<int>::iterator bordFace = _borderFaces.end();
3374     PShapeIteratorPtr faces = SMESH_MesherHelper::GetAncestors( s, _mesh, TopAbs_FACE );
3375     while ( const TopoDS_Shape* pFace = faces->next() )
3376     {
3377       int faceID = meshDS->ShapeToIndex( *pFace );
3378       if ( isInternalShape( faceID ))
3379         intFace = faceID;
3380       else
3381         bordFace = _borderFaces.insert( faceID ).first;
3382     }
3383     if ( bordFace == _borderFaces.end() || !intFace ) continue;
3384
3385     // get all links of mesh faces on internal geom face sharing nodes on edge <s>
3386     set< SMESH_OrientedLink > links; //!< links of faces on internal geom face
3387     list<const SMDS_MeshElement*> suspectFaces[2]; //!< mesh faces on border geom faces
3388     int nbSuspectFaces = 0;
3389     SMESHDS_SubMesh* intFaceSM = meshDS->MeshElements( intFace );
3390     if ( !intFaceSM || intFaceSM->NbElements() == 0 ) continue;
3391     SMESH_subMeshIteratorPtr smIt = mesh.GetSubMesh( s )->getDependsOnIterator(true,true);
3392     while ( smIt->more() )
3393     {
3394       SMESHDS_SubMesh* sm = smIt->next()->GetSubMeshDS();
3395       if ( !sm ) continue;
3396       SMDS_NodeIteratorPtr nIt = sm->GetNodes();
3397       while ( nIt->more() )
3398       {
3399         const SMDS_MeshNode* nOnEdge = nIt->next();
3400         SMDS_ElemIteratorPtr fIt = nOnEdge->GetInverseElementIterator(SMDSAbs_Face);
3401         while ( fIt->more() )
3402         {
3403           const SMDS_MeshElement* f = fIt->next();
3404           int nbNodes = f->NbNodes() / ( f->IsQuadratic() ? 2 : 1 );
3405           if ( intFaceSM->Contains( f ))
3406           {
3407             for ( int i = 0; i < nbNodes; ++i )
3408               links.insert( SMESH_OrientedLink( f->GetNode(i), f->GetNode((i+1)%nbNodes)));
3409           }
3410           else
3411           {
3412             int nbDblNodes = 0;
3413             for ( int i = 0; i < nbNodes; ++i )
3414               nbDblNodes += isInternalShape( f->GetNode(i)->getshapeId() );
3415             if ( nbDblNodes )
3416               suspectFaces[ nbDblNodes < 2 ].push_back( f );
3417             nbSuspectFaces++;
3418           }
3419         }
3420       }
3421     }
3422     // suspectFaces[0] having link with same orientation as mesh faces on
3423     // the internal geom face are <borderElems>. suspectFaces[1] have
3424     // only one node on edge <s>, we decide on them later (at the 2nd loop)
3425     // by links of <borderElems> found at the 1st and 2nd loops
3426     set< SMESH_OrientedLink > borderLinks;
3427     for ( int isPostponed = 0; isPostponed < 2; ++isPostponed )
3428     {
3429       list<const SMDS_MeshElement*>::iterator fIt = suspectFaces[isPostponed].begin();
3430       for ( int nbF = 0; fIt != suspectFaces[isPostponed].end(); ++fIt, ++nbF )
3431       {
3432         const SMDS_MeshElement* f = *fIt;
3433         bool isBorder = false, linkFound = false, borderLinkFound = false;
3434         list< SMESH_OrientedLink > faceLinks;
3435         int nbNodes = f->NbNodes() / ( f->IsQuadratic() ? 2 : 1 );
3436         for ( int i = 0; i < nbNodes; ++i )
3437         {
3438           SMESH_OrientedLink link( f->GetNode(i), f->GetNode((i+1)%nbNodes));
3439           faceLinks.push_back( link );
3440           if ( !linkFound )
3441           {
3442             set< SMESH_OrientedLink >::iterator foundLink = links.find( link );
3443             if ( foundLink != links.end() )
3444             {
3445               linkFound= true;
3446               isBorder = ( foundLink->_reversed == link._reversed );
3447               if ( !isBorder && !isPostponed ) break;
3448               faceLinks.pop_back();
3449             }
3450             else if ( isPostponed && !borderLinkFound )
3451             {
3452               foundLink = borderLinks.find( link );
3453               if ( foundLink != borderLinks.end() )
3454               {
3455                 borderLinkFound = true;
3456                 isBorder = ( foundLink->_reversed != link._reversed );
3457               }
3458             }
3459           }
3460         }
3461         if ( isBorder )
3462         {
3463           borderElems.insert( f );
3464           borderLinks.insert( faceLinks.begin(), faceLinks.end() );
3465         }
3466         else if ( !linkFound && !borderLinkFound )
3467         {
3468           suspectFaces[1].push_back( f );
3469           if ( nbF > 2 * nbSuspectFaces )
3470             break; // dead loop protection
3471         }
3472       }
3473     }
3474   }
3475 }
3476
3477 //================================================================================
3478 /*!
3479  * \brief put internal shapes in maps and fill in submeshes to precompute
3480  */
3481 //================================================================================
3482
3483 void NETGENPlugin_Internals::getInternalEdges( TopTools_IndexedMapOfShape& fmap,
3484                                                TopTools_IndexedMapOfShape& emap,
3485                                                TopTools_IndexedMapOfShape& vmap,
3486                                                list< SMESH_subMesh* > smToPrecompute[])
3487 {
3488   if ( !hasInternalEdges() ) return;
3489   map<int,int>::const_iterator ev_face = _e2face.begin();
3490   for ( ; ev_face != _e2face.end(); ++ev_face )
3491   {
3492     const TopoDS_Shape& ev   = _mesh.GetMeshDS()->IndexToShape( ev_face->first );
3493     const TopoDS_Shape& face = _mesh.GetMeshDS()->IndexToShape( ev_face->second );
3494
3495     ( ev.ShapeType() == TopAbs_EDGE ? emap : vmap ).Add( ev );
3496     fmap.Add( face );
3497     //cout<<"INTERNAL EDGE or VERTEX "<<ev_face->first<<" on face "<<ev_face->second<<endl;
3498
3499     smToPrecompute[ MeshDim_1D ].push_back( _mesh.GetSubMeshContaining( ev_face->first ));
3500   }
3501 }
3502
3503 //================================================================================
3504 /*!
3505  * \brief return shapes and submeshes to be meshed and already meshed boundary submeshes
3506  */
3507 //================================================================================
3508
3509 void NETGENPlugin_Internals::getInternalFaces( TopTools_IndexedMapOfShape& fmap,
3510                                                TopTools_IndexedMapOfShape& emap,
3511                                                list< SMESH_subMesh* >&     intFaceSM,
3512                                                list< SMESH_subMesh* >&     boundarySM)
3513 {
3514   if ( !hasInternalFaces() ) return;
3515
3516   // <fmap> and <emap> are for not yet meshed shapes
3517   // <intFaceSM> is for submeshes of faces
3518   // <boundarySM> is for meshed edges and vertices
3519
3520   intFaceSM.clear();
3521   boundarySM.clear();
3522
3523   set<int> shapeIDs ( _intShapes );
3524   if ( !_borderFaces.empty() )
3525     shapeIDs.insert( _borderFaces.begin(), _borderFaces.end() );
3526
3527   set<int>::const_iterator intS = shapeIDs.begin();
3528   for ( ; intS != shapeIDs.end(); ++intS )
3529   {
3530     SMESH_subMesh* sm = _mesh.GetSubMeshContaining( *intS );
3531
3532     if ( sm->GetSubShape().ShapeType() != TopAbs_FACE ) continue;
3533
3534     intFaceSM.push_back( sm );
3535
3536     // add submeshes of not computed internal faces
3537     if ( !sm->IsEmpty() ) continue;
3538
3539     SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator(true,true);
3540     while ( smIt->more() )
3541     {
3542       sm = smIt->next();
3543       const TopoDS_Shape& s = sm->GetSubShape();
3544
3545       if ( sm->IsEmpty() )
3546       {
3547         // not yet meshed
3548         switch ( s.ShapeType() ) {
3549         case TopAbs_FACE: fmap.Add ( s ); break;
3550         case TopAbs_EDGE: emap.Add ( s ); break;
3551         default:;
3552         }
3553       }
3554       else
3555       {
3556         if ( s.ShapeType() != TopAbs_FACE )
3557           boundarySM.push_back( sm );
3558       }
3559     }
3560   }
3561 }
3562
3563 //================================================================================
3564 /*!
3565  * \brief Return true if given shape is to be precomputed in order to be correctly
3566  * added to netgen mesh
3567  */
3568 //================================================================================
3569
3570 bool NETGENPlugin_Internals::isShapeToPrecompute(const TopoDS_Shape& s)
3571 {
3572   int shapeID = _mesh.GetMeshDS()->ShapeToIndex( s );
3573   switch ( s.ShapeType() ) {
3574   case TopAbs_FACE  : break; //return isInternalShape( shapeID ) || isBorderFace( shapeID );
3575   case TopAbs_EDGE  : return isInternalEdge( shapeID );
3576   case TopAbs_VERTEX: break;
3577   default:;
3578   }
3579   return false;
3580 }
3581
3582 //================================================================================
3583 /*!
3584  * \brief Return SMESH
3585  */
3586 //================================================================================
3587
3588 SMESH_Mesh& NETGENPlugin_Internals::getMesh() const
3589 {
3590   return const_cast<SMESH_Mesh&>( _mesh );
3591 }
3592
3593 //================================================================================
3594 /*!
3595  * \brief Initialize netgen library
3596  */
3597 //================================================================================
3598
3599 NETGENPlugin_NetgenLibWrapper::NETGENPlugin_NetgenLibWrapper()
3600 {
3601   Ng_Init();
3602
3603   // redirect all netgen output (mycout,myerr,cout) to _outputFileName
3604   _isComputeOk    = false;
3605   _outputFileName = getOutputFileName();
3606   netgen::mycout  = new ofstream ( _outputFileName.c_str() );
3607   netgen::myerr   = netgen::mycout;
3608   _coutBuffer     = std::cout.rdbuf();
3609 #ifdef _DEBUG_
3610   cout << "NOTE: netgen output is redirected to file " << _outputFileName << endl;
3611 #endif
3612   std::cout.rdbuf( netgen::mycout->rdbuf() );
3613
3614   _ngMesh = Ng_NewMesh();
3615 }
3616
3617 //================================================================================
3618 /*!
3619  * \brief Finish using netgen library
3620  */
3621 //================================================================================
3622
3623 NETGENPlugin_NetgenLibWrapper::~NETGENPlugin_NetgenLibWrapper()
3624 {
3625   Ng_DeleteMesh( _ngMesh );
3626   Ng_Exit();
3627   NETGENPlugin_Mesher::RemoveTmpFiles();
3628   std::cout.rdbuf( _coutBuffer );
3629 #ifdef _DEBUG_
3630   if( _isComputeOk )
3631 #endif
3632     removeOutputFile();
3633 }
3634
3635 //================================================================================
3636 /*!
3637  * \brief Set netgen mesh to delete at destruction
3638  */
3639 //================================================================================
3640
3641 void NETGENPlugin_NetgenLibWrapper::setMesh( Ng_Mesh* mesh )
3642 {
3643   if ( _ngMesh )
3644     Ng_DeleteMesh( _ngMesh );
3645   _ngMesh = mesh;
3646 }
3647
3648 //================================================================================
3649 /*!
3650  * \brief Return a unique file name
3651  */
3652 //================================================================================
3653
3654 std::string NETGENPlugin_NetgenLibWrapper::getOutputFileName()
3655 {
3656   std::string aTmpDir = SALOMEDS_Tool::GetTmpDir();
3657
3658   TCollection_AsciiString aGenericName = (char*)aTmpDir.c_str();
3659   aGenericName += "NETGEN_";
3660 #ifndef WIN32
3661   aGenericName += getpid();
3662 #else
3663   aGenericName += _getpid();
3664 #endif
3665   aGenericName += "_";
3666   aGenericName += Abs((Standard_Integer)(long) aGenericName.ToCString());
3667   aGenericName += ".out";
3668
3669   return aGenericName.ToCString();
3670 }
3671
3672 //================================================================================
3673 /*!
3674  * \brief Remove file with netgen output
3675  */
3676 //================================================================================
3677
3678 void NETGENPlugin_NetgenLibWrapper::removeOutputFile()
3679 {
3680   string tmpDir = SALOMEDS_Tool::GetDirFromPath( _outputFileName );
3681   SALOMEDS::ListOfFileNames_var aFiles = new SALOMEDS::ListOfFileNames;
3682   aFiles->length(1);
3683   std::string aFileName = SALOMEDS_Tool::GetNameFromPath( _outputFileName ) + ".out";
3684   aFiles[0] = aFileName.c_str();
3685   if ( netgen::mycout)
3686   {
3687     delete netgen::mycout;
3688     netgen::mycout = 0;
3689     netgen::myerr = 0;
3690   }
3691   
3692   SALOMEDS_Tool::RemoveTemporaryFiles( tmpDir.c_str(), aFiles.in(), true );
3693 #ifdef _DEBUG_
3694   //cout << "NOTE: netgen output log was REMOVED       " << _outputFileName << endl;
3695 #endif
3696 }