Salome HOME
5d89cd1282e9a291ca504e885b00f682b763355f
[modules/smesh.git] / src / StdMeshers / StdMeshers_Import_1D2D.cxx
1 //  Copyright (C) 2007-2010  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 //  SMESH SMESH : implementaion of SMESH idl descriptions
24 //  File   : StdMeshers_Import_1D2D.cxx
25 //  Module : SMESH
26 //
27 #include "StdMeshers_Import_1D2D.hxx"
28
29 #include "StdMeshers_Import_1D.hxx"
30 #include "StdMeshers_ImportSource.hxx"
31
32 #include "SMDS_MeshElement.hxx"
33 #include "SMDS_MeshNode.hxx"
34 #include "SMESHDS_Group.hxx"
35 #include "SMESHDS_Mesh.hxx"
36 #include "SMESH_Comment.hxx"
37 #include "SMESH_Gen.hxx"
38 #include "SMESH_Group.hxx"
39 #include "SMESH_Mesh.hxx"
40 #include "SMESH_MesherHelper.hxx"
41 #include "SMESH_subMesh.hxx"
42
43 #include "Utils_SALOME_Exception.hxx"
44 #include "utilities.h"
45
46 #include <BRep_Builder.hxx>
47 #include <BRep_Tool.hxx>
48 #include <TopExp.hxx>
49 #include <TopExp_Explorer.hxx>
50 #include <TopoDS.hxx>
51 #include <TopoDS_Compound.hxx>
52 #include <TopoDS_Edge.hxx>
53 #include <TopoDS_Vertex.hxx>
54
55 #include <numeric>
56
57 using namespace std;
58
59 //=============================================================================
60 /*!
61  * Creates StdMeshers_Import_1D2D
62  */
63 //=============================================================================
64
65 StdMeshers_Import_1D2D::StdMeshers_Import_1D2D(int hypId, int studyId, SMESH_Gen * gen)
66   :SMESH_2D_Algo(hypId, studyId, gen), _sourceHyp(0)
67 {
68   MESSAGE("StdMeshers_Import_1D2D::StdMeshers_Import_1D2D");
69   _name = "Import_1D2D";
70   _shapeType = (1 << TopAbs_FACE);
71
72   _compatibleHypothesis.push_back("ImportSource2D");
73   _requireDescretBoundary = false;
74 }
75
76 //=============================================================================
77 /*!
78  * Check presence of a hypothesis
79  */
80 //=============================================================================
81
82 bool StdMeshers_Import_1D2D::CheckHypothesis
83                          (SMESH_Mesh&                          aMesh,
84                           const TopoDS_Shape&                  aShape,
85                           SMESH_Hypothesis::Hypothesis_Status& aStatus)
86 {
87   _sourceHyp = 0;
88
89   const list <const SMESHDS_Hypothesis * >&hyps = GetUsedHypothesis(aMesh, aShape);
90   if ( hyps.size() == 0 )
91   {
92     aStatus = SMESH_Hypothesis::HYP_MISSING;
93     return false;  // can't work with no hypothesis
94   }
95
96   if ( hyps.size() > 1 )
97   {
98     aStatus = SMESH_Hypothesis::HYP_ALREADY_EXIST;
99     return false;
100   }
101
102   const SMESHDS_Hypothesis *theHyp = hyps.front();
103
104   string hypName = theHyp->GetName();
105
106   if (hypName == _compatibleHypothesis.front())
107   {
108     _sourceHyp = (StdMeshers_ImportSource1D *)theHyp;
109     aStatus = SMESH_Hypothesis::HYP_OK;
110     return true;
111   }
112
113   aStatus = SMESH_Hypothesis::HYP_INCOMPATIBLE;
114   return true;
115 }
116
117 namespace
118 {
119   /*!
120    * \brief OrientedLink additionally storing a medium node
121    */
122   struct TLink : public SMESH_OrientedLink
123   {
124     const SMDS_MeshNode* _medium;
125     TLink( const SMDS_MeshNode* n1,
126            const SMDS_MeshNode* n2,
127            const SMDS_MeshNode* medium=0)
128       : SMESH_OrientedLink( n1,n2 ), _medium( medium ) {}
129   };
130 }
131
132 //=============================================================================
133 /*!
134  * Import elements from the other mesh 
135  */
136 //=============================================================================
137
138 bool StdMeshers_Import_1D2D::Compute(SMESH_Mesh & theMesh, const TopoDS_Shape & theShape)
139 {
140   if ( !_sourceHyp ) return false;
141
142   const vector<SMESH_Group*>& srcGroups = _sourceHyp->GetGroups();
143   if ( srcGroups.empty() )
144     return error("Invalid source groups");
145
146   SMESH_MesherHelper helper(theMesh);
147   helper.SetSubShape(theShape);
148   SMESHDS_Mesh* tgtMesh = theMesh.GetMeshDS();
149
150   const TopoDS_Face& geomFace = TopoDS::Face( theShape );
151   const double faceTol = helper.MaxTolerance( geomFace );
152   const int shapeID = tgtMesh->ShapeToIndex( geomFace );
153   const bool toCheckOri = (helper.NbAncestors( geomFace, theMesh, TopAbs_SOLID ) == 1 );
154
155   Handle(Geom_Surface) surface = BRep_Tool::Surface( geomFace );
156   if ( helper.GetSubShapeOri( tgtMesh->ShapeToMesh(), geomFace) == TopAbs_REVERSED )
157     surface->UReverse();
158   gp_Pnt p; gp_Vec du, dv;
159
160   set<int> subShapeIDs;
161   subShapeIDs.insert( shapeID );
162
163   // get nodes on vertices
164   list < SMESH_MeshEditor::TNodeXYZ > vertexNodes;
165   list < SMESH_MeshEditor::TNodeXYZ >::iterator vNIt;
166   TopExp_Explorer exp( theShape, TopAbs_VERTEX );
167   for ( ; exp.More(); exp.Next() )
168   {
169     const TopoDS_Vertex& v = TopoDS::Vertex( exp.Current() );
170     if ( !subShapeIDs.insert( tgtMesh->ShapeToIndex( v )).second )
171       continue;
172     const SMDS_MeshNode* n = SMESH_Algo::VertexNode( v, tgtMesh );
173     if ( !n )
174     {
175       _gen->Compute(theMesh,v,/*anUpward=*/true);
176       n = SMESH_Algo::VertexNode( v, tgtMesh );
177       if ( !n ) return false; // very strange
178     }
179     vertexNodes.push_back( SMESH_MeshEditor::TNodeXYZ( n ));
180   }
181
182   // to count now many times a link between nodes encounters
183   map<TLink, int> linkCount;
184   map<TLink, int>::iterator link2Nb;
185
186   // =========================
187   // Import faces from groups
188   // =========================
189
190   StdMeshers_Import_1D::TNodeNodeMap* n2n;
191   StdMeshers_Import_1D::TElemElemMap* e2e;
192   vector<const SMDS_MeshNode*> newNodes;
193   for ( int iG = 0; iG < srcGroups.size(); ++iG )
194   {
195     const SMESHDS_GroupBase* srcGroup = srcGroups[iG]->GetGroupDS();
196
197     const int meshID = srcGroup->GetMesh()->GetPersistentId();
198     const SMESH_Mesh* srcMesh = GetMeshByPersistentID( meshID );
199     if ( !srcMesh ) continue;
200     StdMeshers_Import_1D::getMaps( srcMesh, &theMesh, n2n, e2e );
201
202     SMDS_ElemIteratorPtr srcElems = srcGroup->GetElements();
203     SMDS_MeshNode *tmpNode = helper.AddNode(0,0,0);
204     gp_XY uv;
205     while ( srcElems->more() ) // loop on group contents
206     {
207       const SMDS_MeshElement* face = srcElems->next();
208       // find or create nodes of a new face
209       newNodes.resize( face->NbNodes() );
210       newNodes.back() = 0;
211       int nbCreatedNodes = 0;
212       SMDS_MeshElement::iterator node = face->begin_nodes();
213       for ( unsigned i = 0; i < newNodes.size(); ++i, ++node )
214       {
215         TNodeNodeMap::iterator n2nIt = n2n->insert( make_pair( *node, (SMDS_MeshNode*)0 )).first;
216         if ( n2nIt->second )
217         {
218           if ( !subShapeIDs.count( n2nIt->second->getshapeId() ))
219             break;
220         }
221         else
222         {
223           // find an existing vertex node
224           for ( vNIt = vertexNodes.begin(); vNIt != vertexNodes.end(); ++vNIt)
225             if ( vNIt->SquareDistance( *node ) < 10 * faceTol * faceTol)
226             {
227               (*n2nIt).second = vNIt->_node;
228               vertexNodes.erase( vNIt );
229               break;
230             }
231         }
232         if ( !n2nIt->second )
233         {
234           // find out if node lies on theShape
235           tmpNode->setXYZ( (*node)->X(), (*node)->Y(), (*node)->Z());
236           if ( helper.CheckNodeUV( geomFace, tmpNode, uv, 10 * faceTol, /*force=*/true ))
237           {
238             SMDS_MeshNode* newNode = tgtMesh->AddNode( (*node)->X(), (*node)->Y(), (*node)->Z());
239             n2nIt->second = newNode;
240             tgtMesh->SetNodeOnFace( newNode, shapeID, uv.X(), uv.Y() );
241             nbCreatedNodes++;
242           }
243         }
244         if ( !(newNodes[i] = n2nIt->second ))
245           break;
246       }
247       if ( !newNodes.back() )
248         continue; // not all nodes of the face lie on theShape
249
250       // try to find already created face
251       SMDS_MeshElement * newFace = 0;
252       if ( nbCreatedNodes == 0 &&
253            tgtMesh->FindElement(newNodes, SMDSAbs_Face, /*noMedium=*/false))
254         continue; // repeated face in source groups already created 
255
256       // check future face orientation
257       if ( toCheckOri )
258       {
259         int iNode = -1;
260         gp_Vec geomNorm;
261         do
262         {
263           uv = helper.GetNodeUV( geomFace, newNodes[++iNode] );
264           surface->D1( uv.X(),uv.Y(), p, du,dv );
265           geomNorm = du ^ dv;
266         }
267         while ( geomNorm.SquareMagnitude() < 1e-6 && iNode+1 < face->NbCornerNodes());
268
269         int iNext = helper.WrapIndex( iNode+1, face->NbCornerNodes() );
270         int iPrev = helper.WrapIndex( iNode-1, face->NbCornerNodes() );
271
272         SMESH_MeshEditor::TNodeXYZ prevNode( newNodes[iPrev] );
273         SMESH_MeshEditor::TNodeXYZ curNode ( newNodes[iNode] );
274         SMESH_MeshEditor::TNodeXYZ nextNode( newNodes[iNext] );
275         gp_Vec n1n0( prevNode - curNode);
276         gp_Vec n1n2( nextNode - curNode );
277         gp_Vec meshNorm = n1n2 ^ n1n0;
278
279         if ( geomNorm * meshNorm < 0 )
280           std::reverse( newNodes.begin(), newNodes.end() );
281       }
282
283       // make a new face
284       switch ( newNodes.size() )
285       {
286       case 3:
287         newFace = tgtMesh->AddFace( newNodes[0], newNodes[1], newNodes[2] );
288         break;
289       case 4:
290         newFace = tgtMesh->AddFace( newNodes[0], newNodes[1], newNodes[2], newNodes[3] );
291         break;
292       case 6:
293         newFace = tgtMesh->AddFace( newNodes[0], newNodes[1], newNodes[2],
294                                     newNodes[3], newNodes[4], newNodes[5]);
295         break;
296       case 8:
297         newFace = tgtMesh->AddFace( newNodes[0], newNodes[1], newNodes[2], newNodes[3],
298                                     newNodes[4], newNodes[5], newNodes[6], newNodes[7]);
299         break;
300       default: continue;
301       }
302       tgtMesh->SetMeshElementOnShape( newFace, shapeID );
303       e2e->insert( make_pair( face, newFace ));
304
305       // collect links
306       int nbNodes = face->NbCornerNodes();
307       const SMDS_MeshNode* medium = 0;
308       for ( int i = 0; i < nbNodes; ++i )
309       {
310         const SMDS_MeshNode* n1 = newNodes[i];
311         const SMDS_MeshNode* n2 = newNodes[ (i+1)%nbNodes ];
312         if ( newFace->IsQuadratic() )
313           medium = newNodes[i+nbNodes];
314         link2Nb = linkCount.insert( make_pair( TLink( n1, n2, medium ), 0)).first;
315         ++link2Nb->second;
316       }
317     }
318     helper.GetMeshDS()->RemoveNode(tmpNode);
319   }
320
321   // ==========================================================
322   // Put nodes on geom edges and create edges on them;
323   // check if the whole geom face is covered by imported faces
324   // ==========================================================
325
326   vector< TopoDS_Edge > edges;
327   for ( exp.Init( theShape, TopAbs_EDGE ); exp.More(); exp.Next() )
328     if ( subShapeIDs.insert( tgtMesh->ShapeToIndex( exp.Current() )).second )
329       edges.push_back( TopoDS::Edge( exp.Current() ));
330
331   bool isFaceMeshed = false;
332   if ( SMESHDS_SubMesh* tgtSM = tgtMesh->MeshElements( theShape ))
333   {
334     // the imported mesh is valid if all external links (encountered once)
335     // lie on geom edges
336     subShapeIDs.erase( shapeID ); // to contain edges and vertices only
337     double u, f, l;
338     for ( link2Nb = linkCount.begin(); link2Nb != linkCount.end(); ++link2Nb)
339     {
340       const TLink& link = (*link2Nb).first;
341       int nbFaces = link2Nb->second;
342       if ( nbFaces == 1 )
343       {
344         // check if the link lie on face boundary
345         bool nodesOnBoundary = true;
346         list< TopoDS_Shape > bndShapes;
347         for ( int is1stN = 0; is1stN < 2 && nodesOnBoundary; ++is1stN )
348         {
349           const SMDS_MeshNode* n = is1stN ? link.node1() : link.node2();
350           if ( !subShapeIDs.count( n->getshapeId() ))
351           {
352             for ( unsigned iE = 0; iE < edges.size(); ++iE )
353               if ( helper.CheckNodeU( edges[iE], n, u, 10 * faceTol, /*force=*/true ))
354               {
355                 BRep_Tool::Range(edges[iE],f,l);
356                 if ( Abs(u-f) < 2 * faceTol || Abs(u-l) < 2 * faceTol )
357                   // duplicated node on vertex
358                   return error("Source elements overlap one another");
359                 tgtMesh->SetNodeOnEdge( (SMDS_MeshNode*)n, edges[iE], u );
360                 break;
361               }
362             nodesOnBoundary = subShapeIDs.count( n->getshapeId());
363           }
364           if ( nodesOnBoundary )
365           {
366             TopoDS_Shape s = helper.GetSubShapeByNode( n, tgtMesh );
367             if ( s.ShapeType() == TopAbs_VERTEX )
368               bndShapes.push_front( s ); // vertex first
369             else
370               bndShapes.push_back( s ); // edges last
371           }
372         }
373         if ( !nodesOnBoundary )
374           break; // free internal link
375         if ( bndShapes.front().ShapeType() == TopAbs_EDGE &&
376              bndShapes.front() != bndShapes.back() )
377           break; // link nodes on different geom edges
378
379         // find geom edge the link is on
380         if ( bndShapes.back().ShapeType() != TopAbs_EDGE )
381         {
382           // find geom edge by two vertices
383           TopoDS_Shape geomEdge;
384           PShapeIteratorPtr edgeIt = helper.GetAncestors( bndShapes.back(), theMesh, TopAbs_EDGE );
385           while ( edgeIt->more() )
386           {
387             geomEdge = *(edgeIt->next());
388             if ( !helper.IsSubShape( bndShapes.front(), geomEdge ))
389               geomEdge.Nullify();
390           }
391           if ( geomEdge.IsNull() )
392             break; // vertices belong to different edges -> free internal link
393           bndShapes.push_back( geomEdge );
394         }
395
396         // create an edge if not yet exists
397         newNodes.resize(2);
398         newNodes[0] = link.node1(), newNodes[1] = link.node2();
399         const SMDS_MeshElement* edge = tgtMesh->FindElement( newNodes, SMDSAbs_Edge );
400         if ( edge ) continue;
401
402         if ( link._reversed ) std::swap( newNodes[0], newNodes[1] );
403         if ( link._medium )
404         {
405           newNodes.push_back( link._medium );
406           edge = tgtMesh->AddEdge( newNodes[0], newNodes[1], newNodes[2] );
407
408           TopoDS_Edge geomEdge = TopoDS::Edge(bndShapes.back());
409           helper.CheckNodeU( geomEdge, link._medium, u, 10*faceTol, /*force=*/true );
410           tgtMesh->SetNodeOnEdge( (SMDS_MeshNode*)link._medium, geomEdge, u );
411         }
412         else
413         {
414           edge = tgtMesh->AddEdge( newNodes[0], newNodes[1]);
415         }
416         // remove nodes from submesh of theShape
417         for ( unsigned i = 0; i < newNodes.size(); ++i )
418           tgtSM->RemoveNode( newNodes[i], /*isNodeDeleted=*/false );
419         if ( !edge )
420           return false;
421
422         tgtMesh->SetMeshElementOnShape( edge, bndShapes.back() );
423       }
424       else if ( nbFaces > 2 )
425       {
426         return error( "Non-manifold source mesh");
427       }
428     }
429     isFaceMeshed = ( link2Nb == linkCount.end() && !linkCount.empty());
430     if ( isFaceMeshed )
431     {
432       // check that source faces do not overlap:
433       // there must be only two edges sharing each vertex and bound to sub-edges of theShape
434       SMESH_MeshEditor editor( &theMesh );
435       set<int>::iterator subID = subShapeIDs.begin();
436       for ( ; subID != subShapeIDs.end(); ++subID )
437       {
438         const TopoDS_Shape& s = tgtMesh->IndexToShape( *subID );
439         if ( s.ShapeType() != TopAbs_VERTEX ) continue;
440         const SMDS_MeshNode* n = SMESH_Algo::VertexNode( TopoDS::Vertex(s), tgtMesh );
441         SMDS_ElemIteratorPtr eIt = n->GetInverseElementIterator(SMDSAbs_Edge);
442         int nbEdges = 0;
443         while ( eIt->more() )
444         {
445           const SMDS_MeshElement* edge = eIt->next();
446           int sId = editor.FindShape( edge );
447           nbEdges += subShapeIDs.count( sId );
448         }
449         if ( nbEdges < 2 )
450           return false; // weird
451         if ( nbEdges > 2 )
452           return error( "Source elements overlap one another");
453       }
454     }
455   }
456   if ( !isFaceMeshed )
457     return error( "Source elements don't cover totally the geometrical face" );
458
459   // notify sub-meshes of edges on computation
460   for ( unsigned iE = 0; iE < edges.size(); ++iE )
461     theMesh.GetSubMesh( edges[iE] )->ComputeStateEngine(SMESH_subMesh::CHECK_COMPUTE_STATE);
462
463   // ============
464   // Copy meshes
465   // ============
466
467   vector<SMESH_Mesh*> srcMeshes = _sourceHyp->GetSourceMeshes();
468   for ( unsigned i = 0; i < srcMeshes.size(); ++i )
469     StdMeshers_Import_1D::importMesh( srcMeshes[i], theMesh, _sourceHyp, theShape );
470
471   return true;
472 }
473
474 //=============================================================================
475 /*!
476  * \brief Set needed event listeners and create a submesh for a copied mesh
477  *
478  * This method is called only if a submesh has HYP_OK algo_state.
479  */
480 //=============================================================================
481
482 void StdMeshers_Import_1D2D::SetEventListener(SMESH_subMesh* subMesh)
483 {
484   if ( !_sourceHyp )
485   {
486     const TopoDS_Shape& tgtShape = subMesh->GetSubShape();
487     SMESH_Mesh*         tgtMesh  = subMesh->GetFather();
488     Hypothesis_Status aStatus;
489     CheckHypothesis( *tgtMesh, tgtShape, aStatus );
490   }
491   StdMeshers_Import_1D::setEventListener( subMesh, _sourceHyp );
492 }
493 void StdMeshers_Import_1D2D::SubmeshRestored(SMESH_subMesh* subMesh)
494 {
495   SetEventListener(subMesh);
496 }
497
498 //=============================================================================
499 /*!
500  * Predict nb of mesh entities created by Compute()
501  */
502 //=============================================================================
503
504 bool StdMeshers_Import_1D2D::Evaluate(SMESH_Mesh &         theMesh,
505                                       const TopoDS_Shape & theShape,
506                                       MapShapeNbElems&     aResMap)
507 {
508   if ( !_sourceHyp ) return false;
509
510   const vector<SMESH_Group*>& srcGroups = _sourceHyp->GetGroups();
511   if ( srcGroups.empty() )
512     return error("Invalid source groups");
513
514   vector<int> aVec(SMDSEntity_Last,0);
515
516   bool toCopyMesh, toCopyGroups;
517   _sourceHyp->GetCopySourceMesh(toCopyMesh, toCopyGroups);
518   if ( toCopyMesh ) // the whole mesh is copied
519   {
520     vector<SMESH_Mesh*> srcMeshes = _sourceHyp->GetSourceMeshes();
521     for ( unsigned i = 0; i < srcMeshes.size(); ++i )
522     {
523       SMESH_subMesh* sm = StdMeshers_Import_1D::getSubMeshOfCopiedMesh( theMesh, *srcMeshes[i]);
524       if ( !sm || aResMap.count( sm )) continue; // already counted
525       const SMDS_MeshInfo& aMeshInfo = srcMeshes[i]->GetMeshDS()->GetMeshInfo();
526       for (int i = 0; i < SMDSEntity_Last; i++)
527         aVec[i] = aMeshInfo.NbEntities((SMDSAbs_EntityType)i);
528     }
529   }
530   else
531   {
532     // std-like iterator used to get coordinates of nodes of mesh element
533     typedef SMDS_StdIterator< SMESH_MeshEditor::TNodeXYZ, SMDS_ElemIteratorPtr > TXyzIterator;
534
535     SMESH_MesherHelper helper(theMesh);
536     helper.SetSubShape(theShape);
537
538     const TopoDS_Face& geomFace = TopoDS::Face( theShape );
539     const double faceTol = helper.MaxTolerance( geomFace );
540
541     // take into account nodes on vertices
542     TopExp_Explorer exp( theShape, TopAbs_VERTEX );
543     for ( ; exp.More(); exp.Next() )
544       theMesh.GetSubMesh( exp.Current())->Evaluate( aResMap );
545
546     // to count now many times a link between nodes encounters,
547     // negative nb additionally means that a link is quadratic
548     map<SMESH_TLink, int> linkCount;
549     map<SMESH_TLink, int>::iterator link2Nb;
550
551     // count faces and nodes imported from groups
552     set<const SMDS_MeshNode* > allNodes;
553     gp_XY uv;
554     for ( int iG = 0; iG < srcGroups.size(); ++iG )
555     {
556       const SMESHDS_GroupBase* srcGroup = srcGroups[iG]->GetGroupDS();
557       SMDS_ElemIteratorPtr srcElems = srcGroup->GetElements();
558       SMDS_MeshNode *tmpNode =helper.AddNode(0,0,0);
559       while ( srcElems->more() ) // loop on group contents
560       {
561         const SMDS_MeshElement* face = srcElems->next();
562         // find out if face is located on geomEdge by projecting
563         // a gravity center of face to geomFace
564         gp_XYZ gc(0,0,0);
565         gc = accumulate( TXyzIterator(face->nodesIterator()), TXyzIterator(), gc)/face->NbNodes();
566         tmpNode->setXYZ( gc.X(), gc.Y(), gc.Z());
567         if ( helper.CheckNodeUV( geomFace, tmpNode, uv, 10 * faceTol, /*force=*/true ))
568         {
569           ++aVec[ face->GetEntityType() ];
570
571           // collect links
572           int nbConers = face->NbCornerNodes();
573           for ( int i = 0; i < face->NbNodes(); ++i )
574           {
575             const SMDS_MeshNode* n1 = face->GetNode(i);
576             allNodes.insert( n1 );
577             if ( i < nbConers )
578             {
579               const SMDS_MeshNode* n2 = face->GetNode( (i+1)%nbConers );
580               link2Nb = linkCount.insert( make_pair( SMESH_TLink( n1, n2 ), 0)).first;
581               if ( (*link2Nb).second )
582                 link2Nb->second += (link2Nb->second < 0 ) ? -1 : 1;
583               else
584                 link2Nb->second += ( face->IsQuadratic() ) ? -1 : 1;
585             }
586           }
587         }
588       }
589       helper.GetMeshDS()->RemoveNode(tmpNode);
590     }
591
592     int nbNodes = allNodes.size();
593     allNodes.clear();
594
595     // count nodes and edges on geom edges
596
597     double u;
598     for ( exp.Init(theShape, TopAbs_EDGE); exp.More(); exp.Next() )
599     {
600       TopoDS_Edge geomEdge = TopoDS::Edge( exp.Current() );
601       SMESH_subMesh* sm = theMesh.GetSubMesh( geomEdge );
602       vector<int>& edgeVec = aResMap[sm];
603       if ( edgeVec.empty() )
604       {
605         edgeVec.resize(SMDSEntity_Last,0);
606         for ( link2Nb = linkCount.begin(); link2Nb != linkCount.end(); )
607         {
608           const SMESH_TLink& link = (*link2Nb).first;
609           int nbFacesOfLink = Abs( link2Nb->second );
610           bool eraseLink = ( nbFacesOfLink != 1 );
611           if ( nbFacesOfLink == 1 )
612           {
613             if ( helper.CheckNodeU( geomEdge, link.node1(), u, 10*faceTol, /*force=*/true )&&
614                  helper.CheckNodeU( geomEdge, link.node2(), u, 10*faceTol, /*force=*/true ))
615             {
616               bool isQuadratic = ( link2Nb->second < 0 );
617               ++edgeVec[ isQuadratic ? SMDSEntity_Quad_Edge : SMDSEntity_Edge ];
618               ++edgeVec[ SMDSEntity_Node ];
619               --nbNodes;
620               eraseLink = true;
621             }
622           }
623           if ( eraseLink )
624             linkCount.erase(link2Nb++);
625           else
626             link2Nb++;
627         }
628         if ( edgeVec[ SMDSEntity_Node] > 0 )
629           --edgeVec[ SMDSEntity_Node ]; // for one node on vertex
630       }
631       else if ( !helper.IsSeamShape( geomEdge ) ||
632                 geomEdge.Orientation() == TopAbs_FORWARD )
633       {
634         nbNodes -= 1+edgeVec[ SMDSEntity_Node ];
635       }
636     }
637
638     aVec[SMDSEntity_Node] = nbNodes;
639   }
640
641   SMESH_subMesh * sm = theMesh.GetSubMesh(theShape);
642   aResMap.insert(make_pair(sm,aVec));
643
644   return true;
645 }