1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File: SMESH_MesherHelper.cxx
24 // Created: 15.02.06 15:22:41
25 // Author: Sergey KUUL
27 #include "SMESH_MesherHelper.hxx"
29 #include "SMDS_EdgePosition.hxx"
30 #include "SMDS_FaceOfNodes.hxx"
31 #include "SMDS_FacePosition.hxx"
32 #include "SMDS_IteratorOnIterators.hxx"
33 #include "SMDS_VolumeTool.hxx"
34 #include "SMESH_Block.hxx"
35 #include "SMESH_HypoFilter.hxx"
36 #include "SMESH_MeshAlgos.hxx"
37 #include "SMESH_ProxyMesh.hxx"
38 #include "SMESH_subMesh.hxx"
40 #include <BRepAdaptor_Curve.hxx>
41 #include <BRepAdaptor_Surface.hxx>
42 #include <BRepTools.hxx>
43 #include <BRep_Tool.hxx>
44 #include <Geom2d_Curve.hxx>
45 #include <GeomAPI_ProjectPointOnCurve.hxx>
46 #include <GeomAPI_ProjectPointOnSurf.hxx>
47 #include <Geom_Curve.hxx>
48 #include <Geom_RectangularTrimmedSurface.hxx>
49 #include <Geom_Surface.hxx>
50 #include <ShapeAnalysis.hxx>
52 #include <TopExp_Explorer.hxx>
53 #include <TopTools_ListIteratorOfListOfShape.hxx>
54 #include <TopTools_MapIteratorOfMapOfShape.hxx>
55 #include <TopTools_MapOfShape.hxx>
58 #include <gp_Pnt2d.hxx>
59 #include <gp_Trsf.hxx>
61 #include <Standard_Failure.hxx>
62 #include <Standard_ErrorHandler.hxx>
64 #include <utilities.h>
70 #define RETURN_BAD_RESULT(msg) { MESSAGE(msg); return false; }
74 inline SMESH_TNodeXYZ XYZ(const SMDS_MeshNode* n) { return SMESH_TNodeXYZ(n); }
76 enum { U_periodic = 1, V_periodic = 2 };
79 //================================================================================
83 //================================================================================
85 SMESH_MesherHelper::SMESH_MesherHelper(SMESH_Mesh& theMesh)
89 myCreateQuadratic(false),
90 myCreateBiQuadratic(false),
91 myFixNodeParameters(false)
93 myPar1[0] = myPar2[0] = myPar1[1] = myPar2[1] = 0;
94 mySetElemOnShape = ( ! myMesh->HasShapeToMesh() );
97 //=======================================================================
98 //function : ~SMESH_MesherHelper
100 //=======================================================================
102 SMESH_MesherHelper::~SMESH_MesherHelper()
105 TID2ProjectorOnSurf::iterator i_proj = myFace2Projector.begin();
106 for ( ; i_proj != myFace2Projector.end(); ++i_proj )
107 delete i_proj->second;
110 TID2ProjectorOnCurve::iterator i_proj = myEdge2Projector.begin();
111 for ( ; i_proj != myEdge2Projector.end(); ++i_proj )
112 delete i_proj->second;
116 //=======================================================================
117 //function : IsQuadraticSubMesh
118 //purpose : Check submesh for given shape: if all elements on this shape
119 // are quadratic, quadratic elements will be created.
120 // Also fill myTLinkNodeMap
121 //=======================================================================
123 bool SMESH_MesherHelper::IsQuadraticSubMesh(const TopoDS_Shape& aSh)
125 SMESHDS_Mesh* meshDS = GetMeshDS();
126 // we can create quadratic elements only if all elements
127 // created on sub-shapes of given shape are quadratic
128 // also we have to fill myTLinkNodeMap
129 myCreateQuadratic = true;
130 mySeamShapeIds.clear();
131 myDegenShapeIds.clear();
132 TopAbs_ShapeEnum subType( aSh.ShapeType()==TopAbs_FACE ? TopAbs_EDGE : TopAbs_FACE );
133 if ( aSh.ShapeType()==TopAbs_COMPOUND )
135 TopoDS_Iterator subIt( aSh );
137 subType = ( subIt.Value().ShapeType()==TopAbs_FACE ) ? TopAbs_EDGE : TopAbs_FACE;
139 SMDSAbs_ElementType elemType( subType==TopAbs_FACE ? SMDSAbs_Face : SMDSAbs_Edge );
142 int nbOldLinks = myTLinkNodeMap.size();
144 if ( !myMesh->HasShapeToMesh() )
146 if (( myCreateQuadratic = myMesh->NbFaces( ORDER_QUADRATIC )))
148 SMDS_FaceIteratorPtr fIt = meshDS->facesIterator();
149 while ( fIt->more() )
150 AddTLinks( static_cast< const SMDS_MeshFace* >( fIt->next() ));
155 TopExp_Explorer exp( aSh, subType );
156 TopTools_MapOfShape checkedSubShapes;
157 for (; exp.More() && myCreateQuadratic; exp.Next()) {
158 if ( !checkedSubShapes.Add( exp.Current() ))
159 continue; // needed if aSh is compound of solids
160 if ( SMESHDS_SubMesh * subMesh = meshDS->MeshElements( exp.Current() )) {
161 if ( SMDS_ElemIteratorPtr it = subMesh->GetElements() ) {
163 const SMDS_MeshElement* e = it->next();
164 if ( e->GetType() != elemType || !e->IsQuadratic() ) {
165 myCreateQuadratic = false;
170 switch ( e->NbCornerNodes() ) {
172 AddTLinkNode(e->GetNode(0),e->GetNode(1),e->GetNode(2)); break;
174 AddTLinkNode(e->GetNode(0),e->GetNode(1),e->GetNode(3));
175 AddTLinkNode(e->GetNode(1),e->GetNode(2),e->GetNode(4));
176 AddTLinkNode(e->GetNode(2),e->GetNode(0),e->GetNode(5)); break;
178 AddTLinkNode(e->GetNode(0),e->GetNode(1),e->GetNode(4));
179 AddTLinkNode(e->GetNode(1),e->GetNode(2),e->GetNode(5));
180 AddTLinkNode(e->GetNode(2),e->GetNode(3),e->GetNode(6));
181 AddTLinkNode(e->GetNode(3),e->GetNode(0),e->GetNode(7));
184 myCreateQuadratic = false;
194 // if ( nbOldLinks == myTLinkNodeMap.size() ) -- 0023068
195 if ( myTLinkNodeMap.empty() )
196 myCreateQuadratic = false;
198 if ( !myCreateQuadratic )
199 myTLinkNodeMap.clear();
203 return myCreateQuadratic;
206 //=======================================================================
207 //function : SetSubShape
208 //purpose : Set geometry to make elements on
209 //=======================================================================
211 void SMESH_MesherHelper::SetSubShape(const int aShID)
213 if ( aShID == myShapeID )
216 SetSubShape( GetMeshDS()->IndexToShape( aShID ));
218 SetSubShape( TopoDS_Shape() );
221 //=======================================================================
222 //function : SetSubShape
223 //purpose : Set geometry to create elements on
224 //=======================================================================
226 void SMESH_MesherHelper::SetSubShape(const TopoDS_Shape& aSh)
228 if ( myShape.IsSame( aSh ))
232 mySeamShapeIds.clear();
233 myDegenShapeIds.clear();
235 if ( myShape.IsNull() ) {
239 SMESHDS_Mesh* meshDS = GetMeshDS();
240 myShapeID = meshDS->ShapeToIndex(aSh);
243 // treatment of periodic faces
244 for ( TopExp_Explorer eF( aSh, TopAbs_FACE ); eF.More(); eF.Next() )
246 const TopoDS_Face& face = TopoDS::Face( eF.Current() );
247 BRepAdaptor_Surface surf( face, false );
248 if ( surf.IsUPeriodic() || surf.IsUClosed() ) {
249 myParIndex |= U_periodic;
250 myPar1[0] = surf.FirstUParameter();
251 myPar2[0] = surf.LastUParameter();
253 if ( surf.IsVPeriodic() || surf.IsVClosed() ) {
254 myParIndex |= V_periodic;
255 myPar1[1] = surf.FirstVParameter();
256 myPar2[1] = surf.LastVParameter();
260 for (TopExp_Explorer exp( face, TopAbs_EDGE ); exp.More(); exp.Next())
262 // look for a "seam" edge, a real seam or an edge on period boundary
263 TopoDS_Edge edge = TopoDS::Edge( exp.Current() );
264 const int edgeID = meshDS->ShapeToIndex( edge );
267 BRep_Tool::UVPoints( edge, face, uv1, uv2 );
268 const double du = Abs( uv1.Coord(1) - uv2.Coord(1) );
269 const double dv = Abs( uv1.Coord(2) - uv2.Coord(2) );
271 bool isSeam = BRep_Tool::IsClosed( edge, face );
272 if ( isSeam ) // real seam - having two pcurves on face
274 // pcurve can lie not on pediod boundary (22582, mesh_Quadratic_01/C9)
277 double u1 = uv1.Coord(1);
279 BRep_Tool::UVPoints( edge, face, uv1, uv2 );
280 double u2 = uv1.Coord(1);
281 myPar1[0] = Min( u1, u2 );
282 myPar2[0] = Max( u1, u2 );
286 double v1 = uv1.Coord(2);
288 BRep_Tool::UVPoints( edge, face, uv1, uv2 );
289 double v2 = uv1.Coord(2);
290 myPar1[1] = Min( v1, v2 );
291 myPar2[1] = Max( v1, v2 );
294 else //if ( !isSeam )
296 // one pcurve but on period boundary (22772, mesh_Quadratic_01/D1)
297 if (( myParIndex & U_periodic ) && du < Precision::PConfusion() )
299 isSeam = ( Abs( uv1.Coord(1) - myPar1[0] ) < Precision::PConfusion() ||
300 Abs( uv1.Coord(1) - myPar2[0] ) < Precision::PConfusion() );
302 else if (( myParIndex & V_periodic ) && dv < Precision::PConfusion() )
304 isSeam = ( Abs( uv1.Coord(2) - myPar1[1] ) < Precision::PConfusion() ||
305 Abs( uv1.Coord(2) - myPar2[1] ) < Precision::PConfusion() );
307 if ( isSeam ) // vertices are on period boundary, check a middle point (23032)
309 double f,l, r = 0.2345;
310 Handle(Geom2d_Curve) C2d = BRep_Tool::CurveOnSurface( edge, face, f, l );
311 uv2 = C2d->Value( f * r + l * ( 1.-r ));
312 if ( du < Precision::PConfusion() )
313 isSeam = ( Abs( uv1.Coord(1) - uv2.Coord(1) ) < Precision::PConfusion() );
315 isSeam = ( Abs( uv1.Coord(2) - uv2.Coord(2) ) < Precision::PConfusion() );
320 // store seam shape indices, negative if shape encounters twice ('real seam')
321 mySeamShapeIds.insert( IsSeamShape( edgeID ) ? -edgeID : edgeID );
322 for ( TopExp_Explorer v( edge, TopAbs_VERTEX ); v.More(); v.Next() ) {
323 int vertexID = meshDS->ShapeToIndex( v.Current() );
324 mySeamShapeIds.insert( IsSeamShape( vertexID ) ? -vertexID : vertexID );
328 // look for a degenerated edge
329 if ( SMESH_Algo::isDegenerated( edge )) {
330 myDegenShapeIds.insert( edgeID );
331 for ( TopExp_Explorer v( edge, TopAbs_VERTEX ); v.More(); v.Next() )
332 myDegenShapeIds.insert( meshDS->ShapeToIndex( v.Current() ));
334 if ( !BRep_Tool::SameParameter( edge ) ||
335 !BRep_Tool::SameRange( edge ))
337 setPosOnShapeValidity( edgeID, false );
343 //=======================================================================
344 //function : GetNodeUVneedInFaceNode
345 //purpose : Check if inFaceNode argument is necessary for call GetNodeUV(F,..)
346 // Return true if the face is periodic.
347 // If F is Null, answer about sub-shape set through IsQuadraticSubMesh() or
349 //=======================================================================
351 bool SMESH_MesherHelper::GetNodeUVneedInFaceNode(const TopoDS_Face& F) const
353 if ( F.IsNull() ) return !mySeamShapeIds.empty();
355 if ( !F.IsNull() && !myShape.IsNull() && myShape.IsSame( F ))
356 return !mySeamShapeIds.empty();
359 Handle(Geom_Surface) aSurface = BRep_Tool::Surface( F,loc );
360 if ( !aSurface.IsNull() )
361 return ( aSurface->IsUPeriodic() || aSurface->IsVPeriodic() );
366 //=======================================================================
367 //function : IsMedium
369 //=======================================================================
371 bool SMESH_MesherHelper::IsMedium(const SMDS_MeshNode* node,
372 const SMDSAbs_ElementType typeToCheck)
374 return SMESH_MeshEditor::IsMedium( node, typeToCheck );
377 //=======================================================================
378 //function : GetSubShapeByNode
379 //purpose : Return support shape of a node
380 //=======================================================================
382 TopoDS_Shape SMESH_MesherHelper::GetSubShapeByNode(const SMDS_MeshNode* node,
383 const SMESHDS_Mesh* meshDS)
385 int shapeID = node ? node->getshapeId() : 0;
386 if ( 0 < shapeID && shapeID <= meshDS->MaxShapeIndex() )
387 return meshDS->IndexToShape( shapeID );
389 return TopoDS_Shape();
393 //=======================================================================
394 //function : AddTLinkNode
395 //purpose : add a link in my data structure
396 //=======================================================================
398 void SMESH_MesherHelper::AddTLinkNode(const SMDS_MeshNode* n1,
399 const SMDS_MeshNode* n2,
400 const SMDS_MeshNode* n12)
402 // add new record to map
403 SMESH_TLink link( n1, n2 );
404 myTLinkNodeMap.insert( make_pair(link,n12));
407 //================================================================================
409 * \brief Add quadratic links of edge to own data structure
411 //================================================================================
413 bool SMESH_MesherHelper::AddTLinks(const SMDS_MeshEdge* edge)
415 if ( edge && edge->IsQuadratic() )
416 AddTLinkNode(edge->GetNode(0), edge->GetNode(1), edge->GetNode(2));
422 //================================================================================
424 * \brief Add quadratic links of face to own data structure
426 //================================================================================
428 bool SMESH_MesherHelper::AddTLinks(const SMDS_MeshFace* f)
432 switch ( f->NbNodes() ) {
434 // myMapWithCentralNode.insert
435 // ( make_pair( TBiQuad( f->GetNode(0),f->GetNode(1),f->GetNode(2) ),
437 // break; -- add medium nodes as well
439 AddTLinkNode(f->GetNode(0),f->GetNode(1),f->GetNode(3));
440 AddTLinkNode(f->GetNode(1),f->GetNode(2),f->GetNode(4));
441 AddTLinkNode(f->GetNode(2),f->GetNode(0),f->GetNode(5)); break;
444 // myMapWithCentralNode.insert
445 // ( make_pair( TBiQuad( f->GetNode(0),f->GetNode(1),f->GetNode(2),f->GetNode(3) ),
447 // break; -- add medium nodes as well
449 AddTLinkNode(f->GetNode(0),f->GetNode(1),f->GetNode(4));
450 AddTLinkNode(f->GetNode(1),f->GetNode(2),f->GetNode(5));
451 AddTLinkNode(f->GetNode(2),f->GetNode(3),f->GetNode(6));
452 AddTLinkNode(f->GetNode(3),f->GetNode(0),f->GetNode(7)); break;
459 //================================================================================
461 * \brief Add quadratic links of volume to own data structure
463 //================================================================================
465 bool SMESH_MesherHelper::AddTLinks(const SMDS_MeshVolume* volume)
467 if ( volume->IsQuadratic() )
469 SMDS_VolumeTool vTool( volume );
470 const SMDS_MeshNode** nodes = vTool.GetNodes();
472 for ( int iF = 1; iF < vTool.NbFaces(); ++iF )
474 const int nbN = vTool.NbFaceNodes( iF );
475 const int* iNodes = vTool.GetFaceNodesIndices( iF );
476 for ( int i = 0; i < nbN; )
478 int iN1 = iNodes[i++];
479 int iN12 = iNodes[i++];
481 if ( iN1 > iN2 ) std::swap( iN1, iN2 );
482 int linkID = iN1 * vTool.NbNodes() + iN2;
483 pair< set<int>::iterator, bool > it_isNew = addedLinks.insert( linkID );
484 if ( it_isNew.second )
485 AddTLinkNode( nodes[iN1], nodes[iN2], nodes[iN12] );
487 addedLinks.erase( it_isNew.first ); // each link encounters only twice
489 if ( vTool.NbNodes() == 27 )
491 const SMDS_MeshNode* nFCenter = nodes[ vTool.GetCenterNodeIndex( iF )];
492 if ( nFCenter->GetPosition()->GetTypeOfPosition() == SMDS_TOP_3DSPACE )
493 myMapWithCentralNode.insert
494 ( make_pair( TBiQuad( nodes[ iNodes[0]], nodes[ iNodes[1]],
495 nodes[ iNodes[2]], nodes[ iNodes[3]] ),
504 //================================================================================
506 * \brief Return true if position of nodes on the shape hasn't yet been checked or
507 * the positions proved to be invalid
509 //================================================================================
511 bool SMESH_MesherHelper::toCheckPosOnShape(int shapeID ) const
513 map< int,bool >::const_iterator id_ok = myNodePosShapesValidity.find( shapeID );
514 return ( id_ok == myNodePosShapesValidity.end() || !id_ok->second );
517 //================================================================================
519 * \brief Set validity of positions of nodes on the shape.
520 * Once set, validity is not changed
522 //================================================================================
524 void SMESH_MesherHelper::setPosOnShapeValidity(int shapeID, bool ok ) const
526 std::map< int,bool >::iterator sh_ok =
527 ((SMESH_MesherHelper*)this)->myNodePosShapesValidity.insert( make_pair( shapeID, ok)).first;
532 //=======================================================================
533 //function : ToFixNodeParameters
534 //purpose : Enables fixing node parameters on EDGEs and FACEs in
535 // GetNodeU(...,check=true), GetNodeUV(...,check=true), CheckNodeUV() and
536 // CheckNodeU() in case if a node lies on a shape set via SetSubShape().
538 //=======================================================================
540 void SMESH_MesherHelper::ToFixNodeParameters(bool toFix)
542 myFixNodeParameters = toFix;
546 //=======================================================================
547 //function : getUVOnSeam
548 //purpose : Select UV on either of 2 pcurves of a seam edge, closest to the given UV
549 //=======================================================================
551 gp_Pnt2d SMESH_MesherHelper::getUVOnSeam( const gp_Pnt2d& uv1, const gp_Pnt2d& uv2 ) const
553 gp_Pnt2d result = uv1;
554 for ( int i = U_periodic; i <= V_periodic ; ++i )
556 if ( myParIndex & i )
558 double p1 = uv1.Coord( i );
559 double dp1 = Abs( p1-myPar1[i-1]), dp2 = Abs( p1-myPar2[i-1]);
560 if ( myParIndex == i ||
561 dp1 < ( myPar2[i-1] - myPar1[i-1] ) / 100. ||
562 dp2 < ( myPar2[i-1] - myPar1[i-1] ) / 100. )
564 double p2 = uv2.Coord( i );
565 double p1Alt = ( dp1 < dp2 ) ? myPar2[i-1] : myPar1[i-1];
566 if ( Abs( p2 - p1 ) > Abs( p2 - p1Alt ))
567 result.SetCoord( i, p1Alt );
574 //=======================================================================
575 //function : GetNodeUV
576 //purpose : Return node UV on face
577 //=======================================================================
579 gp_XY SMESH_MesherHelper::GetNodeUV(const TopoDS_Face& F,
580 const SMDS_MeshNode* n,
581 const SMDS_MeshNode* n2,
584 gp_Pnt2d uv( Precision::Infinite(), Precision::Infinite() );
586 const SMDS_PositionPtr Pos = n->GetPosition();
588 if ( Pos->GetTypeOfPosition() == SMDS_TOP_FACE )
590 // node has position on face
591 const SMDS_FacePosition* fpos = static_cast<const SMDS_FacePosition*>( Pos );
592 uv.SetCoord( fpos->GetUParameter(), fpos->GetVParameter() );
594 uvOK = CheckNodeUV( F, n, uv.ChangeCoord(), 2.*getFaceMaxTol( F )); // 2. from 22830
596 else if ( Pos->GetTypeOfPosition() == SMDS_TOP_EDGE )
598 // node has position on EDGE => it is needed to find
599 // corresponding EDGE from FACE, get pcurve for this
600 // EDGE and retrieve value from this pcurve
601 const SMDS_EdgePosition* epos = static_cast<const SMDS_EdgePosition*>( Pos );
602 const int edgeID = n->getshapeId();
603 const TopoDS_Edge& E = TopoDS::Edge( GetMeshDS()->IndexToShape( edgeID ));
604 double f, l, u = epos->GetUParameter();
605 Handle(Geom2d_Curve) C2d = BRep_Tool::CurveOnSurface( E, F, f, l );
606 bool validU = ( !C2d.IsNull() && ( f < u ) && ( u < l ));
607 if ( validU ) uv = C2d->Value( u );
608 else uv.SetCoord( Precision::Infinite(),0.);
609 if ( check || !validU )
610 uvOK = CheckNodeUV( F, n, uv.ChangeCoord(), 2.*getFaceMaxTol( F ),/*force=*/ !validU );
612 // for a node on a seam EDGE select one of UVs on 2 pcurves
613 if ( n2 && IsSeamShape( edgeID ))
615 uv = getUVOnSeam( uv, GetNodeUV( F, n2, 0, check ));
618 { // adjust uv to period
620 Handle(Geom_Surface) S = BRep_Tool::Surface(F,loc);
621 Standard_Boolean isUPeriodic = S->IsUPeriodic();
622 Standard_Boolean isVPeriodic = S->IsVPeriodic();
624 if ( isUPeriodic || isVPeriodic ) {
625 Standard_Real UF,UL,VF,VL;
626 S->Bounds(UF,UL,VF,VL);
627 if ( isUPeriodic ) newUV.SetX( uv.X() + ShapeAnalysis::AdjustToPeriod(uv.X(),UF,UL));
628 if ( isVPeriodic ) newUV.SetY( uv.Y() + ShapeAnalysis::AdjustToPeriod(uv.Y(),VF,VL));
632 gp_Pnt2d uv2 = GetNodeUV( F, n2, 0, check );
633 if ( isUPeriodic && Abs( uv.X()-uv2.X() ) < Abs( newUV.X()-uv2.X() ))
634 newUV.SetX( uv.X() );
635 if ( isVPeriodic && Abs( uv.Y()-uv2.Y() ) < Abs( newUV.Y()-uv2.Y() ))
636 newUV.SetY( uv.Y() );
642 else if ( Pos->GetTypeOfPosition() == SMDS_TOP_VERTEX )
644 if ( int vertexID = n->getshapeId() ) {
645 const TopoDS_Vertex& V = TopoDS::Vertex(GetMeshDS()->IndexToShape(vertexID));
647 uv = BRep_Tool::Parameters( V, F );
650 catch (Standard_Failure& exc) {
653 for ( TopExp_Explorer vert(F,TopAbs_VERTEX); !uvOK && vert.More(); vert.Next() )
654 uvOK = ( V == vert.Current() );
656 MESSAGE ( "SMESH_MesherHelper::GetNodeUV(); Vertex " << vertexID
657 << " not in face " << GetMeshDS()->ShapeToIndex( F ) );
658 // get UV of a vertex closest to the node
660 gp_Pnt pn = XYZ( n );
661 for ( TopExp_Explorer vert( F,TopAbs_VERTEX ); !uvOK && vert.More(); vert.Next() ) {
662 TopoDS_Vertex curV = TopoDS::Vertex( vert.Current() );
663 gp_Pnt p = BRep_Tool::Pnt( curV );
664 double curDist = p.SquareDistance( pn );
665 if ( curDist < dist ) {
667 uv = BRep_Tool::Parameters( curV, F );
668 uvOK = ( dist < DBL_MIN );
674 TopTools_ListIteratorOfListOfShape it( myMesh->GetAncestors( V ));
675 for ( ; it.More(); it.Next() ) {
676 if ( it.Value().ShapeType() == TopAbs_EDGE ) {
677 const TopoDS_Edge & edge = TopoDS::Edge( it.Value() );
679 Handle(Geom2d_Curve) C2d = BRep_Tool::CurveOnSurface(edge, F, f, l);
680 if ( !C2d.IsNull() ) {
681 double u = ( V == TopExp::FirstVertex( edge ) ) ? f : l;
682 uv = C2d->Value( u );
690 if ( n2 && IsSeamShape( vertexID ))
692 bool isSeam = ( myShape.IsSame( F ));
694 SMESH_MesherHelper h( *myMesh );
696 isSeam = IsSeamShape( vertexID );
700 uv = getUVOnSeam( uv, GetNodeUV( F, n2, 0 ));
706 uvOK = CheckNodeUV( F, n, uv.ChangeCoord(), 2.*getFaceMaxTol( F ));
709 if ( check && !uvOK )
715 //=======================================================================
716 //function : CheckNodeUV
717 //purpose : Check and fix node UV on a face
718 //=======================================================================
720 bool SMESH_MesherHelper::CheckNodeUV(const TopoDS_Face& F,
721 const SMDS_MeshNode* n,
725 double distXYZ[4]) const
727 int shapeID = n->getshapeId();
729 if (( infinit = ( Precision::IsInfinite( uv.X() ) || Precision::IsInfinite( uv.Y() ))) ||
731 ( uv.X() == 0. && uv.Y() == 0. ) ||
732 ( toCheckPosOnShape( shapeID )))
734 // check that uv is correct
736 Handle(Geom_Surface) surface = BRep_Tool::Surface( F,loc );
737 gp_Pnt nodePnt = XYZ( n ), surfPnt(0,0,0);
739 if ( !loc.IsIdentity() ) nodePnt.Transform( loc.Transformation().Inverted() );
741 (dist = nodePnt.Distance( surfPnt = surface->Value( uv.X(), uv.Y() ))) > tol )
743 setPosOnShapeValidity( shapeID, false );
744 if ( !infinit && distXYZ ) {
745 surfPnt.Transform( loc );
747 distXYZ[1] = surfPnt.X(); distXYZ[2] = surfPnt.Y(); distXYZ[3]=surfPnt.Z();
749 // uv incorrect, project the node to surface
750 GeomAPI_ProjectPointOnSurf& projector = GetProjector( F, loc, tol );
751 projector.Perform( nodePnt );
752 if ( !projector.IsDone() || projector.NbPoints() < 1 )
754 MESSAGE( "SMESH_MesherHelper::CheckNodeUV() failed to project" );
757 Quantity_Parameter U,V;
758 projector.LowerDistanceParameters(U,V);
760 surfPnt = surface->Value( U, V );
761 dist = nodePnt.Distance( surfPnt );
763 surfPnt.Transform( loc );
765 distXYZ[1] = surfPnt.X(); distXYZ[2] = surfPnt.Y(); distXYZ[3]=surfPnt.Z();
769 MESSAGE( "SMESH_MesherHelper::CheckNodeUV(), invalid projection" );
772 // store the fixed UV on the face
773 if ( myShape.IsSame(F) && shapeID == myShapeID && myFixNodeParameters )
774 const_cast<SMDS_MeshNode*>(n)->SetPosition
775 ( SMDS_PositionPtr( new SMDS_FacePosition( U, V )));
777 else if ( myShape.IsSame(F) && uv.Modulus() > numeric_limits<double>::min() )
779 setPosOnShapeValidity( shapeID, true );
785 //=======================================================================
786 //function : GetProjector
787 //purpose : Return projector intitialized by given face without location, which is returned
788 //=======================================================================
790 GeomAPI_ProjectPointOnSurf& SMESH_MesherHelper::GetProjector(const TopoDS_Face& F,
791 TopLoc_Location& loc,
794 Handle(Geom_Surface) surface = BRep_Tool::Surface( F,loc );
795 int faceID = GetMeshDS()->ShapeToIndex( F );
796 TID2ProjectorOnSurf& i2proj = const_cast< TID2ProjectorOnSurf&>( myFace2Projector );
797 TID2ProjectorOnSurf::iterator i_proj = i2proj.find( faceID );
798 if ( i_proj == i2proj.end() )
800 if ( tol == 0 ) tol = BRep_Tool::Tolerance( F );
801 double U1, U2, V1, V2;
802 surface->Bounds(U1, U2, V1, V2);
803 GeomAPI_ProjectPointOnSurf* proj = new GeomAPI_ProjectPointOnSurf();
804 proj->Init( surface, U1, U2, V1, V2, tol );
805 i_proj = i2proj.insert( make_pair( faceID, proj )).first;
807 return *( i_proj->second );
810 //=======================================================================
811 //function : GetSurface
812 //purpose : Return a cached ShapeAnalysis_Surface of a FACE
813 //=======================================================================
815 Handle(ShapeAnalysis_Surface) SMESH_MesherHelper::GetSurface(const TopoDS_Face& F )
817 Handle(Geom_Surface) surface = BRep_Tool::Surface( F );
818 int faceID = GetMeshDS()->ShapeToIndex( F );
819 TID2Surface::iterator i_surf = myFace2Surface.find( faceID );
820 if ( i_surf == myFace2Surface.end() && faceID )
822 Handle(ShapeAnalysis_Surface) surf( new ShapeAnalysis_Surface( surface ));
823 i_surf = myFace2Surface.insert( make_pair( faceID, surf )).first;
825 return i_surf->second;
830 gp_XY AverageUV(const gp_XY& uv1, const gp_XY& uv2) { return ( uv1 + uv2 ) / 2.; }
831 gp_XY_FunPtr(Added); // define gp_XY_Added pointer to function calling gp_XY::Added(gp_XY)
832 gp_XY_FunPtr(Subtracted);
835 //=======================================================================
836 //function : ApplyIn2D
837 //purpose : Perform given operation on two 2d points in parameric space of given surface.
838 // It takes into account period of the surface. Use gp_XY_FunPtr macro
839 // to easily define pointer to function of gp_XY class.
840 //=======================================================================
842 gp_XY SMESH_MesherHelper::ApplyIn2D(Handle(Geom_Surface) surface,
846 const bool resultInPeriod)
848 if ( surface->IsKind(STANDARD_TYPE(Geom_RectangularTrimmedSurface )))
849 surface = Handle(Geom_RectangularTrimmedSurface)::DownCast( surface )->BasisSurface();
850 Standard_Boolean isUPeriodic = surface.IsNull() ? false : surface->IsUPeriodic();
851 Standard_Boolean isVPeriodic = surface.IsNull() ? false : surface->IsVPeriodic();
852 if ( !isUPeriodic && !isVPeriodic )
855 // move uv2 not far than half-period from uv1
857 uv2.X()+(isUPeriodic ? ShapeAnalysis::AdjustByPeriod(uv2.X(),uv1.X(),surface->UPeriod()) :0);
859 uv2.Y()+(isVPeriodic ? ShapeAnalysis::AdjustByPeriod(uv2.Y(),uv1.Y(),surface->VPeriod()) :0);
862 gp_XY res = fun( uv1, gp_XY(u2,v2) );
864 // move result within period
865 if ( resultInPeriod )
867 Standard_Real UF,UL,VF,VL;
868 surface->Bounds(UF,UL,VF,VL);
870 res.SetX( res.X() + ShapeAnalysis::AdjustToPeriod(res.X(),UF,UL));
872 res.SetY( res.Y() + ShapeAnalysis::AdjustToPeriod(res.Y(),VF,VL));
878 //=======================================================================
879 //function : AdjustByPeriod
880 //purpose : Move node positions on a FACE within surface period
881 //=======================================================================
883 void SMESH_MesherHelper::AdjustByPeriod( const TopoDS_Face& face, gp_XY uv[], const int nbUV )
885 SMESH_MesherHelper h( *myMesh ), *ph = face.IsSame( myShape ) ? this : &h;
886 ph->SetSubShape( face );
888 for ( int iCoo = U_periodic; iCoo <= V_periodic; ++iCoo )
889 if ( ph->GetPeriodicIndex() & iCoo )
891 const double period = ( ph->myPar2[iCoo-1] - ph->myPar1[iCoo-1] );
892 const double xRef = uv[0].Coord( iCoo );
893 for ( int i = 1; i < nbUV; ++i )
895 double x = uv[i].Coord( iCoo );
896 double dx = ShapeAnalysis::AdjustByPeriod( x, xRef, period );
897 uv[i].SetCoord( iCoo, x + dx );
902 //=======================================================================
903 //function : GetMiddleUV
904 //purpose : Return middle UV taking in account surface period
905 //=======================================================================
907 gp_XY SMESH_MesherHelper::GetMiddleUV(const Handle(Geom_Surface)& surface,
912 // the proper place of getting basic surface seems to be in ApplyIn2D()
913 // but we put it here to decrease a risk of regressions just before releasing a version
914 // Handle(Geom_Surface) surf = surface;
915 // while ( !surf.IsNull() && surf->IsKind(STANDARD_TYPE(Geom_RectangularTrimmedSurface )))
916 // surf = Handle(Geom_RectangularTrimmedSurface)::DownCast( surf )->BasisSurface();
918 return ApplyIn2D( surface, p1, p2, & AverageUV );
921 //=======================================================================
922 //function : GetCenterUV
923 //purpose : Return UV for the central node of a biquadratic triangle
924 //=======================================================================
926 gp_XY SMESH_MesherHelper::GetCenterUV(const gp_XY& uv1,
932 bool * isBadTria/*=0*/)
935 gp_XY uvAvg = ( uv12 + uv23 + uv31 ) / 3.;
937 if (( badTria = (( uvAvg - uv1 ) * ( uvAvg - uv23 ) > 0 )))
938 uvAvg = ( uv1 + uv23 ) / 2.;
939 else if (( badTria = (( uvAvg - uv2 ) * ( uvAvg - uv31 ) > 0 )))
940 uvAvg = ( uv2 + uv31 ) / 2.;
941 else if (( badTria = (( uvAvg - uv3 ) * ( uvAvg - uv12 ) > 0 )))
942 uvAvg = ( uv3 + uv12 ) / 2.;
945 *isBadTria = badTria;
949 //=======================================================================
950 //function : GetNodeU
951 //purpose : Return node U on edge
952 //=======================================================================
954 double SMESH_MesherHelper::GetNodeU(const TopoDS_Edge& E,
955 const SMDS_MeshNode* n,
956 const SMDS_MeshNode* inEdgeNode,
959 double param = Precision::Infinite();
961 const SMDS_PositionPtr pos = n->GetPosition();
962 if ( pos->GetTypeOfPosition()==SMDS_TOP_EDGE )
964 const SMDS_EdgePosition* epos = static_cast<const SMDS_EdgePosition*>( pos );
965 param = epos->GetUParameter();
967 else if( pos->GetTypeOfPosition() == SMDS_TOP_VERTEX )
969 if ( inEdgeNode && TopExp::FirstVertex( E ).IsSame( TopExp::LastVertex( E ))) // issue 0020128
972 BRep_Tool::Range( E, f,l );
973 double uInEdge = GetNodeU( E, inEdgeNode );
974 param = ( fabs( uInEdge - f ) < fabs( l - uInEdge )) ? f : l;
978 SMESHDS_Mesh * meshDS = GetMeshDS();
979 int vertexID = n->getshapeId();
980 const TopoDS_Vertex& V = TopoDS::Vertex(meshDS->IndexToShape(vertexID));
981 param = BRep_Tool::Parameter( V, E );
986 double tol = BRep_Tool::Tolerance( E );
987 double f,l; BRep_Tool::Range( E, f,l );
988 bool force = ( param < f-tol || param > l+tol );
989 if ( !force && pos->GetTypeOfPosition()==SMDS_TOP_EDGE )
990 force = ( GetMeshDS()->ShapeToIndex( E ) != n->getshapeId() );
992 *check = CheckNodeU( E, n, param, 2*tol, force );
997 //=======================================================================
998 //function : CheckNodeU
999 //purpose : Check and fix node U on an edge
1000 // Return false if U is bad and could not be fixed
1001 //=======================================================================
1003 bool SMESH_MesherHelper::CheckNodeU(const TopoDS_Edge& E,
1004 const SMDS_MeshNode* n,
1008 double distXYZ[4]) const
1010 int shapeID = n->getshapeId();
1012 if (( infinit = Precision::IsInfinite( u )) ||
1015 ( toCheckPosOnShape( shapeID )))
1017 TopLoc_Location loc; double f,l;
1018 Handle(Geom_Curve) curve = BRep_Tool::Curve( E,loc,f,l );
1019 if ( curve.IsNull() ) // degenerated edge
1021 if ( u+tol < f || u-tol > l )
1023 double r = Max( 0.5, 1 - tol*n->GetID()); // to get a unique u on edge
1029 gp_Pnt nodePnt = SMESH_TNodeXYZ( n );
1030 if ( !loc.IsIdentity() ) nodePnt.Transform( loc.Transformation().Inverted() );
1032 double dist = 2*tol;
1035 curvPnt = curve->Value( u );
1036 dist = nodePnt.Distance( curvPnt );
1038 curvPnt.Transform( loc );
1040 distXYZ[1] = curvPnt.X(); distXYZ[2] = curvPnt.Y(); distXYZ[3]=curvPnt.Z();
1045 setPosOnShapeValidity( shapeID, false );
1046 // u incorrect, project the node to the curve
1047 int edgeID = GetMeshDS()->ShapeToIndex( E );
1048 TID2ProjectorOnCurve& i2proj = const_cast< TID2ProjectorOnCurve&>( myEdge2Projector );
1049 TID2ProjectorOnCurve::iterator i_proj =
1050 i2proj.insert( make_pair( edgeID, (GeomAPI_ProjectPointOnCurve*) 0 )).first;
1051 if ( !i_proj->second )
1053 i_proj->second = new GeomAPI_ProjectPointOnCurve();
1054 i_proj->second->Init( curve, f, l );
1056 GeomAPI_ProjectPointOnCurve* projector = i_proj->second;
1057 projector->Perform( nodePnt );
1058 if ( projector->NbPoints() < 1 )
1060 MESSAGE( "SMESH_MesherHelper::CheckNodeU() failed to project" );
1063 Quantity_Parameter U = projector->LowerDistanceParameter();
1065 MESSAGE(" f " << f << " l " << l << " u " << u);
1066 curvPnt = curve->Value( u );
1067 dist = nodePnt.Distance( curvPnt );
1069 curvPnt.Transform( loc );
1071 distXYZ[1] = curvPnt.X(); distXYZ[2] = curvPnt.Y(); distXYZ[3]=curvPnt.Z();
1075 MESSAGE( "SMESH_MesherHelper::CheckNodeU(), invalid projection" );
1076 MESSAGE("distance " << dist << " " << tol );
1079 // store the fixed U on the edge
1080 if ( myShape.IsSame(E) && shapeID == myShapeID && myFixNodeParameters )
1081 const_cast<SMDS_MeshNode*>(n)->SetPosition
1082 ( SMDS_PositionPtr( new SMDS_EdgePosition( U )));
1084 else if ( fabs( u ) > numeric_limits<double>::min() )
1086 setPosOnShapeValidity( shapeID, true );
1088 if (( u < f-tol || u > l+tol ) && force )
1090 MESSAGE("u < f-tol || u > l+tol ; u " << u << " f " << f << " l " << l);
1091 // node is on vertex but is set on periodic but trimmed edge (issue 0020890)
1094 // do not use IsPeriodic() as Geom_TrimmedCurve::IsPeriodic () returns false
1095 double period = curve->Period();
1096 u = ( u < f ) ? u + period : u - period;
1098 catch (Standard_Failure& exc)
1108 //=======================================================================
1109 //function : GetMediumPos
1110 //purpose : Return index and type of the shape (EDGE or FACE only) to
1111 // set a medium node on
1112 //param : useCurSubShape - if true, returns the shape set via SetSubShape()
1114 //param : expectedSupport - shape type corresponding to element being created,
1115 // e.g TopAbs_EDGE if SMDSAbs_Edge is created
1116 // basing on \a n1 and \a n2
1117 // Calling GetMediumPos() with useCurSubShape=true is OK only for the
1118 // case where the lower dim mesh is already constructed and converted to quadratic,
1119 // else, nodes on EDGEs are assigned to FACE, for example.
1120 //=======================================================================
1122 std::pair<int, TopAbs_ShapeEnum>
1123 SMESH_MesherHelper::GetMediumPos(const SMDS_MeshNode* n1,
1124 const SMDS_MeshNode* n2,
1125 const bool useCurSubShape,
1126 TopAbs_ShapeEnum expectedSupport)
1128 if ( useCurSubShape && !myShape.IsNull() )
1129 return std::make_pair( myShapeID, myShape.ShapeType() );
1131 TopAbs_ShapeEnum shapeType = TopAbs_SHAPE;
1135 if (( myShapeID == n1->getshapeId() || myShapeID == n2->getshapeId() ) && myShapeID > 0 )
1137 shapeType = myShape.ShapeType();
1138 shapeID = myShapeID;
1140 else if ( n1->getshapeId() == n2->getshapeId() )
1142 shapeID = n2->getshapeId();
1143 shape = GetSubShapeByNode( n1, GetMeshDS() );
1145 else // 2 different shapes
1147 const SMDS_TypeOfPosition Pos1 = n1->GetPosition()->GetTypeOfPosition();
1148 const SMDS_TypeOfPosition Pos2 = n2->GetPosition()->GetTypeOfPosition();
1150 if ( Pos1 == SMDS_TOP_3DSPACE || Pos2 == SMDS_TOP_3DSPACE )
1154 else if ( Pos1 == SMDS_TOP_FACE || Pos2 == SMDS_TOP_FACE )
1157 if ( Pos1 != SMDS_TOP_FACE || Pos2 != SMDS_TOP_FACE ) // not 2 FACEs
1159 if ( Pos1 != SMDS_TOP_FACE ) std::swap( n1,n2 );
1160 TopoDS_Shape F = GetSubShapeByNode( n1, GetMeshDS() );
1161 TopoDS_Shape S = GetSubShapeByNode( n2, GetMeshDS() );
1162 if ( IsSubShape( S, F ))
1164 shapeType = TopAbs_FACE;
1165 shapeID = n1->getshapeId();
1169 else if ( Pos1 == SMDS_TOP_EDGE && Pos2 == SMDS_TOP_EDGE )
1171 TopoDS_Shape E1 = GetSubShapeByNode( n1, GetMeshDS() );
1172 TopoDS_Shape E2 = GetSubShapeByNode( n2, GetMeshDS() );
1173 shape = GetCommonAncestor( E1, E2, *myMesh, TopAbs_FACE );
1175 else if ( Pos1 == SMDS_TOP_VERTEX && Pos2 == SMDS_TOP_VERTEX )
1177 TopoDS_Shape V1 = GetSubShapeByNode( n1, GetMeshDS() );
1178 TopoDS_Shape V2 = GetSubShapeByNode( n2, GetMeshDS() );
1179 shape = GetCommonAncestor( V1, V2, *myMesh, TopAbs_EDGE );
1180 if ( shape.IsNull() ) shape = GetCommonAncestor( V1, V2, *myMesh, TopAbs_FACE );
1182 else // on VERTEX and EDGE
1184 if ( Pos1 != SMDS_TOP_VERTEX ) std::swap( n1,n2 );
1185 TopoDS_Shape V = GetSubShapeByNode( n1, GetMeshDS() );
1186 TopoDS_Shape E = GetSubShapeByNode( n2, GetMeshDS() );
1187 if ( IsSubShape( V, E ))
1190 shape = GetCommonAncestor( V, E, *myMesh, TopAbs_FACE );
1194 if ( !shape.IsNull() )
1197 shapeID = GetMeshDS()->ShapeToIndex( shape );
1198 shapeType = shape.ShapeType(); // EDGE or FACE
1200 if ( expectedSupport < shapeType &&
1201 expectedSupport != TopAbs_SHAPE &&
1202 !myShape.IsNull() &&
1203 myShape.ShapeType() == expectedSupport )
1205 // e.g. a side of triangle connects nodes on the same EDGE but does not
1206 // lie on this EDGE (an arc with a coarse mesh)
1207 // => shapeType == TopAbs_EDGE, expectedSupport == TopAbs_FACE;
1208 // hope that myShape is a right shape, return it if the found shape
1209 // has converted elements of corresponding dim (segments in our example)
1210 int nbConvertedElems = 0;
1211 SMDSAbs_ElementType type = ( shapeType == TopAbs_FACE ? SMDSAbs_Face : SMDSAbs_Edge );
1212 for ( int iN = 0; iN < 2; ++iN )
1214 const SMDS_MeshNode* n = iN ? n2 : n1;
1215 SMDS_ElemIteratorPtr it = n->GetInverseElementIterator( type );
1216 while ( it->more() )
1218 const SMDS_MeshElement* elem = it->next();
1219 if ( elem->getshapeId() == shapeID &&
1220 elem->IsQuadratic() )
1227 if ( nbConvertedElems == 2 )
1229 shapeType = myShape.ShapeType();
1230 shapeID = myShapeID;
1234 return make_pair( shapeID, shapeType );
1237 //=======================================================================
1238 //function : GetCentralNode
1239 //purpose : Return existing or create a new central node for a quardilateral
1240 // quadratic face given its 8 nodes.
1241 //@param : force3d - true means node creation in between the given nodes,
1242 // else node position is found on a geometrical face if any.
1243 //=======================================================================
1245 const SMDS_MeshNode* SMESH_MesherHelper::GetCentralNode(const SMDS_MeshNode* n1,
1246 const SMDS_MeshNode* n2,
1247 const SMDS_MeshNode* n3,
1248 const SMDS_MeshNode* n4,
1249 const SMDS_MeshNode* n12,
1250 const SMDS_MeshNode* n23,
1251 const SMDS_MeshNode* n34,
1252 const SMDS_MeshNode* n41,
1255 SMDS_MeshNode *centralNode = 0; // central node to return
1257 // Find an existing central node
1259 TBiQuad keyOfMap(n1,n2,n3,n4);
1260 std::map<TBiQuad, const SMDS_MeshNode* >::iterator itMapCentralNode;
1261 itMapCentralNode = myMapWithCentralNode.find( keyOfMap );
1262 if ( itMapCentralNode != myMapWithCentralNode.end() )
1264 return (*itMapCentralNode).second;
1267 // Get type of shape for the new central node
1269 TopAbs_ShapeEnum shapeType = TopAbs_SHAPE;
1273 TopTools_ListIteratorOfListOfShape it;
1275 std::map< int, int > faceId2nbNodes;
1276 std::map< int, int > ::iterator itMapWithIdFace;
1278 SMESHDS_Mesh* meshDS = GetMeshDS();
1280 // check if a face lies on a FACE, i.e. its all corner nodes lie either on the FACE or
1281 // on sub-shapes of the FACE
1282 if ( GetMesh()->HasShapeToMesh() )
1284 const SMDS_MeshNode* nodes[] = { n1, n2, n3, n4 };
1285 for(int i = 0; i < 4; i++)
1287 shape = GetSubShapeByNode( nodes[i], meshDS );
1288 if ( shape.IsNull() ) break;
1289 if ( shape.ShapeType() == TopAbs_SOLID )
1291 solidID = nodes[i]->getshapeId();
1292 shapeType = TopAbs_SOLID;
1295 if ( shape.ShapeType() == TopAbs_FACE )
1297 faceID = nodes[i]->getshapeId();
1298 itMapWithIdFace = faceId2nbNodes.insert( std::make_pair( faceID, 0 ) ).first;
1299 itMapWithIdFace->second++;
1303 PShapeIteratorPtr it = GetAncestors( shape, *GetMesh(), TopAbs_FACE );
1304 while ( const TopoDS_Shape* face = it->next() )
1306 faceID = meshDS->ShapeToIndex( *face );
1307 itMapWithIdFace = faceId2nbNodes.insert( std::make_pair( faceID, 0 )).first;
1308 itMapWithIdFace->second++;
1313 if ( solidID < 1 && !faceId2nbNodes.empty() ) // SOLID not found
1315 // find ID of the FACE the four corner nodes belong to
1316 itMapWithIdFace = faceId2nbNodes.find( myShapeID ); // IPAL52698
1317 if ( itMapWithIdFace != faceId2nbNodes.end() &&
1318 itMapWithIdFace->second == 4 )
1320 shapeType = TopAbs_FACE;
1325 itMapWithIdFace = faceId2nbNodes.begin();
1326 for ( ; itMapWithIdFace != faceId2nbNodes.end(); ++itMapWithIdFace)
1328 if ( itMapWithIdFace->second == 4 )
1330 shapeType = TopAbs_FACE;
1331 faceID = (*itMapWithIdFace).first;
1339 if ( shapeType == TopAbs_FACE )
1341 F = TopoDS::Face( meshDS->IndexToShape( faceID ));
1348 bool toCheck = true;
1349 if ( !F.IsNull() && !force3d )
1352 GetNodeUV( F,n1, n3, &toCheck ),
1353 GetNodeUV( F,n2, n4, &toCheck ),
1354 GetNodeUV( F,n3, n1, &toCheck ),
1355 GetNodeUV( F,n4, n2, &toCheck ),
1356 GetNodeUV( F,n12, n3 ),
1357 GetNodeUV( F,n23, n4 ),
1358 GetNodeUV( F,n34, n2 ),
1359 GetNodeUV( F,n41, n2 )
1361 AdjustByPeriod( F, uv, 8 ); // put uv[] within a period (IPAL52698)
1363 uvAvg = calcTFI (0.5, 0.5, uv[0],uv[1],uv[2],uv[3], uv[4],uv[5],uv[6],uv[7] );
1365 TopLoc_Location loc;
1366 Handle( Geom_Surface ) S = BRep_Tool::Surface( F, loc );
1367 P = S->Value( uvAvg.X(), uvAvg.Y() ).Transformed( loc );
1368 centralNode = meshDS->AddNode( P.X(), P.Y(), P.Z() );
1369 // if ( mySetElemOnShape ) node is not elem!
1370 meshDS->SetNodeOnFace( centralNode, faceID, uvAvg.X(), uvAvg.Y() );
1372 else // ( force3d || F.IsNull() )
1374 P = calcTFI (0.5, 0.5,
1375 SMESH_TNodeXYZ(n1), SMESH_TNodeXYZ(n2),
1376 SMESH_TNodeXYZ(n3), SMESH_TNodeXYZ(n4),
1377 SMESH_TNodeXYZ(n12), SMESH_TNodeXYZ(n23),
1378 SMESH_TNodeXYZ(n34), SMESH_TNodeXYZ(n41));
1379 centralNode = meshDS->AddNode( P.X(), P.Y(), P.Z() );
1381 if ( !F.IsNull() ) // force3d
1383 uvAvg = (GetNodeUV(F,n1,n3,&toCheck) +
1384 GetNodeUV(F,n2,n4,&toCheck) +
1385 GetNodeUV(F,n3,n1,&toCheck) +
1386 GetNodeUV(F,n4,n2,&toCheck)) / 4;
1387 //CheckNodeUV( F, centralNode, uvAvg, 2*BRep_Tool::Tolerance( F ), /*force=*/true);
1388 meshDS->SetNodeOnFace( centralNode, faceID, uvAvg.X(), uvAvg.Y() );
1390 else if ( solidID > 0 )
1392 meshDS->SetNodeInVolume( centralNode, solidID );
1394 else if ( myShapeID > 0 && mySetElemOnShape )
1396 meshDS->SetMeshElementOnShape( centralNode, myShapeID );
1399 myMapWithCentralNode.insert( std::make_pair( keyOfMap, centralNode ) );
1403 //=======================================================================
1404 //function : GetCentralNode
1405 //purpose : Return existing or create a new central node for a
1406 // quadratic triangle given its 6 nodes.
1407 //@param : force3d - true means node creation in between the given nodes,
1408 // else node position is found on a geometrical face if any.
1409 //=======================================================================
1411 const SMDS_MeshNode* SMESH_MesherHelper::GetCentralNode(const SMDS_MeshNode* n1,
1412 const SMDS_MeshNode* n2,
1413 const SMDS_MeshNode* n3,
1414 const SMDS_MeshNode* n12,
1415 const SMDS_MeshNode* n23,
1416 const SMDS_MeshNode* n31,
1419 SMDS_MeshNode *centralNode = 0; // central node to return
1421 // Find an existing central node
1423 TBiQuad keyOfMap(n1,n2,n3);
1424 std::map<TBiQuad, const SMDS_MeshNode* >::iterator itMapCentralNode;
1425 itMapCentralNode = myMapWithCentralNode.find( keyOfMap );
1426 if ( itMapCentralNode != myMapWithCentralNode.end() )
1428 return (*itMapCentralNode).second;
1431 // Get type of shape for the new central node
1433 TopAbs_ShapeEnum shapeType = TopAbs_SHAPE;
1437 TopTools_ListIteratorOfListOfShape it;
1439 std::map< int, int > faceId2nbNodes;
1440 std::map< int, int > ::iterator itMapWithIdFace;
1442 SMESHDS_Mesh* meshDS = GetMeshDS();
1444 // check if a face lies on a FACE, i.e. its all corner nodes lie either on the FACE or
1445 // on sub-shapes of the FACE
1446 if ( GetMesh()->HasShapeToMesh() )
1448 const SMDS_MeshNode* nodes[] = { n1, n2, n3 };
1449 for(int i = 0; i < 3; i++)
1451 shape = GetSubShapeByNode( nodes[i], meshDS );
1452 if ( shape.IsNull() ) break;
1453 if ( shape.ShapeType() == TopAbs_SOLID )
1455 solidID = nodes[i]->getshapeId();
1456 shapeType = TopAbs_SOLID;
1459 if ( shape.ShapeType() == TopAbs_FACE )
1461 faceID = nodes[i]->getshapeId();
1462 itMapWithIdFace = faceId2nbNodes.insert( std::make_pair( faceID, 0 ) ).first;
1463 itMapWithIdFace->second++;
1467 PShapeIteratorPtr it = GetAncestors(shape, *GetMesh(), TopAbs_FACE );
1468 while ( const TopoDS_Shape* face = it->next() )
1470 faceID = meshDS->ShapeToIndex( *face );
1471 itMapWithIdFace = faceId2nbNodes.insert( std::make_pair( faceID, 0 ) ).first;
1472 itMapWithIdFace->second++;
1477 if ( solidID < 1 && !faceId2nbNodes.empty() ) // SOLID not found
1479 // find ID of the FACE the four corner nodes belong to
1480 itMapWithIdFace = faceId2nbNodes.find( myShapeID ); // IPAL52698
1481 if ( itMapWithIdFace != faceId2nbNodes.end() &&
1482 itMapWithIdFace->second == 4 )
1484 shapeType = TopAbs_FACE;
1489 itMapWithIdFace = faceId2nbNodes.begin();
1490 for ( ; itMapWithIdFace != faceId2nbNodes.end(); ++itMapWithIdFace)
1492 if ( itMapWithIdFace->second == 3 )
1494 shapeType = TopAbs_FACE;
1495 faceID = (*itMapWithIdFace).first;
1505 if ( shapeType == TopAbs_FACE )
1507 F = TopoDS::Face( meshDS->IndexToShape( faceID ));
1508 bool checkOK = true, badTria = false;
1510 GetNodeUV( F, n1, n23, &checkOK ),
1511 GetNodeUV( F, n2, n31, &checkOK ),
1512 GetNodeUV( F, n3, n12, &checkOK ),
1513 GetNodeUV( F, n12, n3, &checkOK ),
1514 GetNodeUV( F, n23, n1, &checkOK ),
1515 GetNodeUV( F, n31, n2, &checkOK )
1517 AdjustByPeriod( F, uv, 6 ); // put uv[] within a period (IPAL52698)
1519 uvAvg = GetCenterUV( uv[0],uv[1],uv[2], uv[3],uv[4],uv[5], &badTria );
1521 if ( badTria || !checkOK )
1525 // Create a central node
1528 if ( !F.IsNull() && !force3d )
1530 TopLoc_Location loc;
1531 Handle( Geom_Surface ) S = BRep_Tool::Surface( F, loc );
1532 P = S->Value( uvAvg.X(), uvAvg.Y() ).Transformed( loc );
1533 centralNode = meshDS->AddNode( P.X(), P.Y(), P.Z() );
1534 // if ( mySetElemOnShape ) node is not elem!
1535 meshDS->SetNodeOnFace( centralNode, faceID, uvAvg.X(), uvAvg.Y() );
1537 else // ( force3d || F.IsNull() )
1539 P = ( SMESH_TNodeXYZ( n12 ) +
1540 SMESH_TNodeXYZ( n23 ) +
1541 SMESH_TNodeXYZ( n31 ) ) / 3;
1542 centralNode = meshDS->AddNode( P.X(), P.Y(), P.Z() );
1544 if ( !F.IsNull() ) // force3d
1546 meshDS->SetNodeOnFace( centralNode, faceID, uvAvg.X(), uvAvg.Y() );
1548 else if ( solidID > 0 )
1550 meshDS->SetNodeInVolume( centralNode, solidID );
1552 else if ( myShapeID > 0 && mySetElemOnShape )
1554 meshDS->SetMeshElementOnShape( centralNode, myShapeID );
1557 myMapWithCentralNode.insert( std::make_pair( keyOfMap, centralNode ) );
1561 //=======================================================================
1562 //function : GetMediumNode
1563 //purpose : Return existing or create a new medium node between given ones
1564 //=======================================================================
1566 const SMDS_MeshNode* SMESH_MesherHelper::GetMediumNode(const SMDS_MeshNode* n1,
1567 const SMDS_MeshNode* n2,
1569 TopAbs_ShapeEnum expectedSupport)
1571 // Find existing node
1573 SMESH_TLink link(n1,n2);
1574 ItTLinkNode itLN = myTLinkNodeMap.find( link );
1575 if ( itLN != myTLinkNodeMap.end() ) {
1576 return (*itLN).second;
1579 // Create medium node
1582 SMESHDS_Mesh* meshDS = GetMeshDS();
1584 if ( IsSeamShape( n1->getshapeId() ))
1585 // to get a correct UV of a node on seam, the second node must have checked UV
1586 std::swap( n1, n2 );
1588 // get type of shape for the new medium node
1589 int faceID = -1, edgeID = -1;
1590 TopoDS_Edge E; double u [2];
1591 TopoDS_Face F; gp_XY uv[2];
1592 bool uvOK[2] = { true, true };
1593 const bool useCurSubShape = ( !myShape.IsNull() && myShape.ShapeType() == TopAbs_EDGE );
1595 pair<int, TopAbs_ShapeEnum> pos = GetMediumPos( n1, n2, useCurSubShape, expectedSupport );
1597 // get positions of the given nodes on shapes
1598 if ( pos.second == TopAbs_FACE )
1600 F = TopoDS::Face(meshDS->IndexToShape( faceID = pos.first ));
1601 uv[0] = GetNodeUV(F,n1,n2, force3d ? 0 : &uvOK[0]);
1602 if ( HasDegeneratedEdges() && !force3d ) // IPAL52850 (degen VERTEX not at singularity)
1604 // project middle point to a surface
1605 SMESH_TNodeXYZ p1( n1 ), p2( n2 );
1606 gp_Pnt pMid = 0.5 * ( p1 + p2 );
1607 Handle(ShapeAnalysis_Surface) projector = GetSurface( F );
1610 uvMid = projector->NextValueOfUV( uv[0], pMid, BRep_Tool::Tolerance( F ));
1612 uvMid = projector->ValueOfUV( pMid, getFaceMaxTol( F ));
1613 if ( projector->Gap() * projector->Gap() < ( p1 - p2 ).SquareModulus() / 4 )
1615 gp_Pnt pProj = projector->Value( uvMid );
1616 n12 = meshDS->AddNode( pProj.X(), pProj.Y(), pProj.Z() );
1617 meshDS->SetNodeOnFace( n12, faceID, uvMid.X(), uvMid.Y() );
1618 myTLinkNodeMap.insert( make_pair ( link, n12 ));
1622 uv[1] = GetNodeUV(F,n2,n1, force3d ? 0 : &uvOK[1]);
1624 else if ( pos.second == TopAbs_EDGE )
1626 const SMDS_PositionPtr Pos1 = n1->GetPosition();
1627 const SMDS_PositionPtr Pos2 = n2->GetPosition();
1628 if ( Pos1->GetTypeOfPosition()==SMDS_TOP_EDGE &&
1629 Pos2->GetTypeOfPosition()==SMDS_TOP_EDGE &&
1630 n1->getshapeId() != n2->getshapeId() )
1633 return getMediumNodeOnComposedWire(n1,n2,force3d);
1635 E = TopoDS::Edge(meshDS->IndexToShape( edgeID = pos.first ));
1637 u[0] = GetNodeU(E,n1,n2, force3d ? 0 : &uvOK[0]);
1638 u[1] = GetNodeU(E,n2,n1, force3d ? 0 : &uvOK[1]);
1640 catch ( Standard_Failure& f )
1642 // issue 22502 / a node is on VERTEX not belonging to E
1643 // issue 22568 / both nodes are on non-connected VERTEXes
1644 return getMediumNodeOnComposedWire(n1,n2,force3d);
1648 if ( !force3d & uvOK[0] && uvOK[1] )
1650 // we try to create medium node using UV parameters of
1651 // nodes, else - medium between corresponding 3d points
1654 //if ( uvOK[0] && uvOK[1] )
1656 if ( IsDegenShape( n1->getshapeId() )) {
1657 if ( myParIndex & U_periodic ) uv[0].SetCoord( 1, uv[1].Coord( 1 ));
1658 else uv[0].SetCoord( 2, uv[1].Coord( 2 ));
1660 else if ( IsDegenShape( n2->getshapeId() )) {
1661 if ( myParIndex & U_periodic ) uv[1].SetCoord( 1, uv[0].Coord( 1 ));
1662 else uv[1].SetCoord( 2, uv[0].Coord( 2 ));
1664 TopLoc_Location loc;
1665 Handle(Geom_Surface) S = BRep_Tool::Surface(F,loc);
1666 gp_XY UV = GetMiddleUV( S, uv[0], uv[1] );
1667 gp_Pnt P = S->Value( UV.X(), UV.Y() ).Transformed(loc);
1668 n12 = meshDS->AddNode(P.X(), P.Y(), P.Z());
1669 // if ( mySetElemOnShape ) node is not elem!
1670 meshDS->SetNodeOnFace(n12, faceID, UV.X(), UV.Y());
1671 myTLinkNodeMap.insert(make_pair(link,n12));
1675 else if ( !E.IsNull() )
1678 Handle(Geom_Curve) C = BRep_Tool::Curve(E, f, l);
1681 Standard_Boolean isPeriodic = C->IsPeriodic();
1684 Standard_Real Period = C->Period();
1685 Standard_Real p = u[1]+ShapeAnalysis::AdjustByPeriod(u[1],u[0],Period);
1686 Standard_Real pmid = (u[0]+p)/2.;
1687 U = pmid+ShapeAnalysis::AdjustToPeriod(pmid,C->FirstParameter(),C->LastParameter());
1692 gp_Pnt P = C->Value( U );
1693 n12 = meshDS->AddNode(P.X(), P.Y(), P.Z());
1694 //if ( mySetElemOnShape ) node is not elem!
1695 meshDS->SetNodeOnEdge(n12, edgeID, U);
1696 myTLinkNodeMap.insert(make_pair(link,n12));
1703 double x = ( n1->X() + n2->X() )/2.;
1704 double y = ( n1->Y() + n2->Y() )/2.;
1705 double z = ( n1->Z() + n2->Z() )/2.;
1706 n12 = meshDS->AddNode(x,y,z);
1708 //if ( mySetElemOnShape ) node is not elem!
1712 gp_XY UV = ( uv[0] + uv[1] ) / 2.;
1713 CheckNodeUV( F, n12, UV, 2 * BRep_Tool::Tolerance( F ), /*force=*/true);
1714 meshDS->SetNodeOnFace(n12, faceID, UV.X(), UV.Y() );
1716 else if ( !E.IsNull() )
1718 double U = ( u[0] + u[1] ) / 2.;
1719 CheckNodeU( E, n12, U, 2 * BRep_Tool::Tolerance( E ), /*force=*/true);
1720 meshDS->SetNodeOnEdge(n12, edgeID, U);
1722 else if ( myShapeID > 0 && mySetElemOnShape )
1724 meshDS->SetMeshElementOnShape(n12, myShapeID);
1728 myTLinkNodeMap.insert( make_pair( link, n12 ));
1732 //================================================================================
1734 * \brief Makes a medium node if nodes reside different edges
1736 //================================================================================
1738 const SMDS_MeshNode* SMESH_MesherHelper::getMediumNodeOnComposedWire(const SMDS_MeshNode* n1,
1739 const SMDS_MeshNode* n2,
1742 SMESH_TNodeXYZ p1( n1 ), p2( n2 );
1743 gp_Pnt middle = 0.5 * p1 + 0.5 * p2;
1744 SMDS_MeshNode* n12 = AddNode( middle.X(), middle.Y(), middle.Z() );
1746 // To find position on edge and 3D position for n12,
1747 // project <middle> to 2 edges and select projection most close to <middle>
1749 TopoDS_Edge bestEdge;
1750 double u = 0, distMiddleProj = Precision::Infinite(), distXYZ[4], f,l;
1752 // get shapes under the nodes
1753 TopoDS_Shape shape[2];
1755 for ( int is2nd = 0; is2nd < 2; ++is2nd )
1757 const SMDS_MeshNode* n = is2nd ? n2 : n1;
1758 TopoDS_Shape S = GetSubShapeByNode( n, GetMeshDS() );
1760 shape[ nbShapes++ ] = S;
1763 vector< TopoDS_Shape > edges;
1764 for ( int iS = 0; iS < nbShapes; ++iS )
1766 switch ( shape[iS].ShapeType() ) {
1769 edges.push_back( shape[iS] );
1775 if ( nbShapes == 2 && iS==0 && shape[1-iS].ShapeType() == TopAbs_VERTEX )
1776 edge = GetCommonAncestor( shape[iS], shape[1-iS], *myMesh, TopAbs_EDGE );
1778 if ( edge.IsNull() )
1780 PShapeIteratorPtr eIt = GetAncestors( shape[iS], *myMesh, TopAbs_EDGE );
1781 while( const TopoDS_Shape* e = eIt->next() )
1782 edges.push_back( *e );
1788 if ( nbShapes == 1 || shape[1-iS].ShapeType() < TopAbs_EDGE )
1789 for ( TopExp_Explorer e( shape[iS], TopAbs_EDGE ); e.More(); e.Next() )
1790 edges.push_back( e.Current() );
1797 // project to get U of projection and distance from middle to projection
1798 for ( size_t iE = 0; iE < edges.size(); ++iE )
1800 const TopoDS_Edge& edge = TopoDS::Edge( edges[ iE ]);
1801 distXYZ[0] = distMiddleProj;
1803 CheckNodeU( edge, n12, testU, 2 * BRep_Tool::Tolerance(edge), /*force=*/true, distXYZ );
1804 if ( distXYZ[0] < distMiddleProj )
1806 distMiddleProj = distXYZ[0];
1812 // // both projections failed; set n12 on the edge of n1 with U of a common vertex
1813 // TopoDS_Vertex vCommon;
1814 // if ( TopExp::CommonVertex( edges[0], edges[1], vCommon ))
1815 // u = BRep_Tool::Parameter( vCommon, edges[0] );
1818 // double f,l, u0 = GetNodeU( edges[0], n1 );
1819 // BRep_Tool::Range( edges[0],f,l );
1820 // u = ( fabs(u0-f) < fabs(u0-l) ) ? f : l;
1823 // distMiddleProj = 0;
1826 if ( !bestEdge.IsNull() )
1828 // move n12 to position of a successfull projection
1829 //double tol = BRep_Tool::Tolerance(edges[ iOkEdge ]);
1830 if ( !force3d /*&& distMiddleProj > 2*tol*/ )
1832 TopLoc_Location loc;
1833 Handle(Geom_Curve) curve = BRep_Tool::Curve( bestEdge,loc,f,l );
1834 gp_Pnt p = curve->Value( u ).Transformed( loc );
1835 GetMeshDS()->MoveNode( n12, p.X(), p.Y(), p.Z() );
1837 //if ( mySetElemOnShape ) node is not elem!
1839 int edgeID = GetMeshDS()->ShapeToIndex( bestEdge );
1840 if ( edgeID != n12->getshapeId() )
1841 GetMeshDS()->UnSetNodeOnShape( n12 );
1842 GetMeshDS()->SetNodeOnEdge(n12, edgeID, u);
1845 myTLinkNodeMap.insert( make_pair( SMESH_TLink(n1,n2), n12 ));
1850 //=======================================================================
1851 //function : AddNode
1852 //purpose : Creates a node
1853 //=======================================================================
1855 SMDS_MeshNode* SMESH_MesherHelper::AddNode(double x, double y, double z, int ID,
1858 SMESHDS_Mesh * meshDS = GetMeshDS();
1859 SMDS_MeshNode* node = 0;
1861 node = meshDS->AddNodeWithID( x, y, z, ID );
1863 node = meshDS->AddNode( x, y, z );
1864 if ( mySetElemOnShape && myShapeID > 0 ) { // node is not elem ?
1865 switch ( myShape.ShapeType() ) {
1866 case TopAbs_SOLID: meshDS->SetNodeInVolume( node, myShapeID); break;
1867 case TopAbs_SHELL: meshDS->SetNodeInVolume( node, myShapeID); break;
1868 case TopAbs_FACE: meshDS->SetNodeOnFace( node, myShapeID, u, v); break;
1869 case TopAbs_EDGE: meshDS->SetNodeOnEdge( node, myShapeID, u); break;
1870 case TopAbs_VERTEX: meshDS->SetNodeOnVertex( node, myShapeID); break;
1877 //=======================================================================
1878 //function : AddEdge
1879 //purpose : Creates quadratic or linear edge
1880 //=======================================================================
1882 SMDS_MeshEdge* SMESH_MesherHelper::AddEdge(const SMDS_MeshNode* n1,
1883 const SMDS_MeshNode* n2,
1887 SMESHDS_Mesh * meshDS = GetMeshDS();
1889 SMDS_MeshEdge* edge = 0;
1890 if (myCreateQuadratic) {
1891 const SMDS_MeshNode* n12 = GetMediumNode(n1,n2,force3d);
1893 edge = meshDS->AddEdgeWithID(n1, n2, n12, id);
1895 edge = meshDS->AddEdge(n1, n2, n12);
1899 edge = meshDS->AddEdgeWithID(n1, n2, id);
1901 edge = meshDS->AddEdge(n1, n2);
1904 if ( mySetElemOnShape && myShapeID > 0 )
1905 meshDS->SetMeshElementOnShape( edge, myShapeID );
1910 //=======================================================================
1911 //function : AddFace
1912 //purpose : Creates quadratic or linear triangle
1913 //=======================================================================
1915 SMDS_MeshFace* SMESH_MesherHelper::AddFace(const SMDS_MeshNode* n1,
1916 const SMDS_MeshNode* n2,
1917 const SMDS_MeshNode* n3,
1921 SMESHDS_Mesh * meshDS = GetMeshDS();
1922 SMDS_MeshFace* elem = 0;
1924 if( n1==n2 || n2==n3 || n3==n1 )
1927 if(!myCreateQuadratic) {
1929 elem = meshDS->AddFaceWithID(n1, n2, n3, id);
1931 elem = meshDS->AddFace(n1, n2, n3);
1934 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_FACE );
1935 const SMDS_MeshNode* n23 = GetMediumNode( n2, n3, force3d, TopAbs_FACE );
1936 const SMDS_MeshNode* n31 = GetMediumNode( n3, n1, force3d, TopAbs_FACE );
1937 if(myCreateBiQuadratic)
1939 const SMDS_MeshNode* nCenter = GetCentralNode(n1, n2, n3, n12, n23, n31, force3d);
1941 elem = meshDS->AddFaceWithID(n1, n2, n3, n12, n23, n31, nCenter, id);
1943 elem = meshDS->AddFace(n1, n2, n3, n12, n23, n31, nCenter);
1948 elem = meshDS->AddFaceWithID(n1, n2, n3, n12, n23, n31, id);
1950 elem = meshDS->AddFace(n1, n2, n3, n12, n23, n31);
1953 if ( mySetElemOnShape && myShapeID > 0 )
1954 meshDS->SetMeshElementOnShape( elem, myShapeID );
1959 //=======================================================================
1960 //function : AddFace
1961 //purpose : Creates bi-quadratic, quadratic or linear quadrangle
1962 //=======================================================================
1964 SMDS_MeshFace* SMESH_MesherHelper::AddFace(const SMDS_MeshNode* n1,
1965 const SMDS_MeshNode* n2,
1966 const SMDS_MeshNode* n3,
1967 const SMDS_MeshNode* n4,
1971 SMESHDS_Mesh * meshDS = GetMeshDS();
1972 SMDS_MeshFace* elem = 0;
1975 return AddFace(n1,n3,n4,id,force3d);
1978 return AddFace(n1,n2,n4,id,force3d);
1981 return AddFace(n1,n2,n3,id,force3d);
1984 return AddFace(n1,n2,n4,id,force3d);
1987 return AddFace(n1,n2,n3,id,force3d);
1990 return AddFace(n1,n2,n3,id,force3d);
1993 if(!myCreateQuadratic) {
1995 elem = meshDS->AddFaceWithID(n1, n2, n3, n4, id);
1997 elem = meshDS->AddFace(n1, n2, n3, n4);
2000 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_FACE );
2001 const SMDS_MeshNode* n23 = GetMediumNode( n2, n3, force3d, TopAbs_FACE );
2002 const SMDS_MeshNode* n34 = GetMediumNode( n3, n4, force3d, TopAbs_FACE );
2003 const SMDS_MeshNode* n41 = GetMediumNode( n4, n1, force3d, TopAbs_FACE );
2004 if(myCreateBiQuadratic)
2006 const SMDS_MeshNode* nCenter = GetCentralNode(n1, n2, n3, n4, n12, n23, n34, n41, force3d);
2008 elem = meshDS->AddFaceWithID(n1, n2, n3, n4, n12, n23, n34, n41, nCenter, id);
2010 elem = meshDS->AddFace(n1, n2, n3, n4, n12, n23, n34, n41, nCenter);
2015 elem = meshDS->AddFaceWithID(n1, n2, n3, n4, n12, n23, n34, n41, id);
2017 elem = meshDS->AddFace(n1, n2, n3, n4, n12, n23, n34, n41);
2020 if ( mySetElemOnShape && myShapeID > 0 )
2021 meshDS->SetMeshElementOnShape( elem, myShapeID );
2026 //=======================================================================
2027 //function : AddPolygonalFace
2028 //purpose : Creates polygon, with additional nodes in quadratic mesh
2029 //=======================================================================
2031 SMDS_MeshFace* SMESH_MesherHelper::AddPolygonalFace (const vector<const SMDS_MeshNode*>& nodes,
2035 SMESHDS_Mesh * meshDS = GetMeshDS();
2036 SMDS_MeshFace* elem = 0;
2038 if(!myCreateQuadratic)
2041 elem = meshDS->AddPolygonalFaceWithID(nodes, id);
2043 elem = meshDS->AddPolygonalFace(nodes);
2047 vector<const SMDS_MeshNode*> newNodes( nodes.size() * 2 );
2049 for ( int i = 0; i < nodes.size(); ++i )
2051 const SMDS_MeshNode* n1 = nodes[i];
2052 const SMDS_MeshNode* n2 = nodes[(i+1)%nodes.size()];
2053 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_FACE );
2054 newNodes.push_back( n12 );
2057 elem = meshDS->AddQuadPolygonalFaceWithID(newNodes, id);
2059 elem = meshDS->AddQuadPolygonalFace(newNodes);
2061 if ( mySetElemOnShape && myShapeID > 0 )
2062 meshDS->SetMeshElementOnShape( elem, myShapeID );
2067 //=======================================================================
2068 //function : AddVolume
2069 //purpose : Creates quadratic or linear prism
2070 //=======================================================================
2072 SMDS_MeshVolume* SMESH_MesherHelper::AddVolume(const SMDS_MeshNode* n1,
2073 const SMDS_MeshNode* n2,
2074 const SMDS_MeshNode* n3,
2075 const SMDS_MeshNode* n4,
2076 const SMDS_MeshNode* n5,
2077 const SMDS_MeshNode* n6,
2081 SMESHDS_Mesh * meshDS = GetMeshDS();
2082 SMDS_MeshVolume* elem = 0;
2083 if(!myCreateQuadratic) {
2085 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, n5, n6, id);
2087 elem = meshDS->AddVolume(n1, n2, n3, n4, n5, n6);
2090 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_SOLID );
2091 const SMDS_MeshNode* n23 = GetMediumNode( n2, n3, force3d, TopAbs_SOLID );
2092 const SMDS_MeshNode* n31 = GetMediumNode( n3, n1, force3d, TopAbs_SOLID );
2094 const SMDS_MeshNode* n45 = GetMediumNode( n4, n5, force3d, TopAbs_SOLID );
2095 const SMDS_MeshNode* n56 = GetMediumNode( n5, n6, force3d, TopAbs_SOLID );
2096 const SMDS_MeshNode* n64 = GetMediumNode( n6, n4, force3d, TopAbs_SOLID );
2098 const SMDS_MeshNode* n14 = GetMediumNode( n1, n4, force3d, TopAbs_SOLID );
2099 const SMDS_MeshNode* n25 = GetMediumNode( n2, n5, force3d, TopAbs_SOLID );
2100 const SMDS_MeshNode* n36 = GetMediumNode( n3, n6, force3d, TopAbs_SOLID );
2103 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, n5, n6,
2104 n12, n23, n31, n45, n56, n64, n14, n25, n36, id);
2106 elem = meshDS->AddVolume(n1, n2, n3, n4, n5, n6,
2107 n12, n23, n31, n45, n56, n64, n14, n25, n36);
2109 if ( mySetElemOnShape && myShapeID > 0 )
2110 meshDS->SetMeshElementOnShape( elem, myShapeID );
2115 //=======================================================================
2116 //function : AddVolume
2117 //purpose : Creates quadratic or linear tetrahedron
2118 //=======================================================================
2120 SMDS_MeshVolume* SMESH_MesherHelper::AddVolume(const SMDS_MeshNode* n1,
2121 const SMDS_MeshNode* n2,
2122 const SMDS_MeshNode* n3,
2123 const SMDS_MeshNode* n4,
2127 SMESHDS_Mesh * meshDS = GetMeshDS();
2128 SMDS_MeshVolume* elem = 0;
2129 if(!myCreateQuadratic) {
2131 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, id);
2133 elem = meshDS->AddVolume(n1, n2, n3, n4);
2136 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_SOLID );
2137 const SMDS_MeshNode* n23 = GetMediumNode( n2, n3, force3d, TopAbs_SOLID );
2138 const SMDS_MeshNode* n31 = GetMediumNode( n3, n1, force3d, TopAbs_SOLID );
2140 const SMDS_MeshNode* n14 = GetMediumNode( n1, n4, force3d, TopAbs_SOLID );
2141 const SMDS_MeshNode* n24 = GetMediumNode( n2, n4, force3d, TopAbs_SOLID );
2142 const SMDS_MeshNode* n34 = GetMediumNode( n3, n4, force3d, TopAbs_SOLID );
2145 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, n12, n23, n31, n14, n24, n34, id);
2147 elem = meshDS->AddVolume(n1, n2, n3, n4, n12, n23, n31, n14, n24, n34);
2149 if ( mySetElemOnShape && myShapeID > 0 )
2150 meshDS->SetMeshElementOnShape( elem, myShapeID );
2155 //=======================================================================
2156 //function : AddVolume
2157 //purpose : Creates quadratic or linear pyramid
2158 //=======================================================================
2160 SMDS_MeshVolume* SMESH_MesherHelper::AddVolume(const SMDS_MeshNode* n1,
2161 const SMDS_MeshNode* n2,
2162 const SMDS_MeshNode* n3,
2163 const SMDS_MeshNode* n4,
2164 const SMDS_MeshNode* n5,
2168 SMDS_MeshVolume* elem = 0;
2169 if(!myCreateQuadratic) {
2171 elem = GetMeshDS()->AddVolumeWithID(n1, n2, n3, n4, n5, id);
2173 elem = GetMeshDS()->AddVolume(n1, n2, n3, n4, n5);
2176 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_SOLID );
2177 const SMDS_MeshNode* n23 = GetMediumNode( n2, n3, force3d, TopAbs_SOLID );
2178 const SMDS_MeshNode* n34 = GetMediumNode( n3, n4, force3d, TopAbs_SOLID );
2179 const SMDS_MeshNode* n41 = GetMediumNode( n4, n1, force3d, TopAbs_SOLID );
2181 const SMDS_MeshNode* n15 = GetMediumNode( n1, n5, force3d, TopAbs_SOLID );
2182 const SMDS_MeshNode* n25 = GetMediumNode( n2, n5, force3d, TopAbs_SOLID );
2183 const SMDS_MeshNode* n35 = GetMediumNode( n3, n5, force3d, TopAbs_SOLID );
2184 const SMDS_MeshNode* n45 = GetMediumNode( n4, n5, force3d, TopAbs_SOLID );
2187 elem = GetMeshDS()->AddVolumeWithID ( n1, n2, n3, n4, n5,
2192 elem = GetMeshDS()->AddVolume( n1, n2, n3, n4, n5,
2194 n15, n25, n35, n45);
2196 if ( mySetElemOnShape && myShapeID > 0 )
2197 GetMeshDS()->SetMeshElementOnShape( elem, myShapeID );
2202 //=======================================================================
2203 //function : AddVolume
2204 //purpose : Creates tri-quadratic, quadratic or linear hexahedron
2205 //=======================================================================
2207 SMDS_MeshVolume* SMESH_MesherHelper::AddVolume(const SMDS_MeshNode* n1,
2208 const SMDS_MeshNode* n2,
2209 const SMDS_MeshNode* n3,
2210 const SMDS_MeshNode* n4,
2211 const SMDS_MeshNode* n5,
2212 const SMDS_MeshNode* n6,
2213 const SMDS_MeshNode* n7,
2214 const SMDS_MeshNode* n8,
2218 SMESHDS_Mesh * meshDS = GetMeshDS();
2219 SMDS_MeshVolume* elem = 0;
2220 if(!myCreateQuadratic) {
2222 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, n5, n6, n7, n8, id);
2224 elem = meshDS->AddVolume(n1, n2, n3, n4, n5, n6, n7, n8);
2227 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_SOLID );
2228 const SMDS_MeshNode* n23 = GetMediumNode( n2, n3, force3d, TopAbs_SOLID );
2229 const SMDS_MeshNode* n34 = GetMediumNode( n3, n4, force3d, TopAbs_SOLID );
2230 const SMDS_MeshNode* n41 = GetMediumNode( n4, n1, force3d, TopAbs_SOLID );
2232 const SMDS_MeshNode* n56 = GetMediumNode( n5, n6, force3d, TopAbs_SOLID );
2233 const SMDS_MeshNode* n67 = GetMediumNode( n6, n7, force3d, TopAbs_SOLID );
2234 const SMDS_MeshNode* n78 = GetMediumNode( n7, n8, force3d, TopAbs_SOLID );
2235 const SMDS_MeshNode* n85 = GetMediumNode( n8, n5, force3d, TopAbs_SOLID );
2237 const SMDS_MeshNode* n15 = GetMediumNode( n1, n5, force3d, TopAbs_SOLID );
2238 const SMDS_MeshNode* n26 = GetMediumNode( n2, n6, force3d, TopAbs_SOLID );
2239 const SMDS_MeshNode* n37 = GetMediumNode( n3, n7, force3d, TopAbs_SOLID );
2240 const SMDS_MeshNode* n48 = GetMediumNode( n4, n8, force3d, TopAbs_SOLID );
2241 if ( myCreateBiQuadratic )
2243 const SMDS_MeshNode* n1234 = GetCentralNode( n1,n2,n3,n4,n12,n23,n34,n41,force3d );
2244 const SMDS_MeshNode* n1256 = GetCentralNode( n1,n2,n5,n6,n12,n26,n56,n15,force3d );
2245 const SMDS_MeshNode* n2367 = GetCentralNode( n2,n3,n6,n7,n23,n37,n67,n26,force3d );
2246 const SMDS_MeshNode* n3478 = GetCentralNode( n3,n4,n7,n8,n34,n48,n78,n37,force3d );
2247 const SMDS_MeshNode* n1458 = GetCentralNode( n1,n4,n5,n8,n41,n48,n15,n85,force3d );
2248 const SMDS_MeshNode* n5678 = GetCentralNode( n5,n6,n7,n8,n56,n67,n78,n85,force3d );
2250 vector<gp_XYZ> pointsOnShapes( SMESH_Block::ID_Shell );
2252 pointsOnShapes[ SMESH_Block::ID_V000 ] = SMESH_TNodeXYZ( n4 );
2253 pointsOnShapes[ SMESH_Block::ID_V100 ] = SMESH_TNodeXYZ( n8 );
2254 pointsOnShapes[ SMESH_Block::ID_V010 ] = SMESH_TNodeXYZ( n3 );
2255 pointsOnShapes[ SMESH_Block::ID_V110 ] = SMESH_TNodeXYZ( n7 );
2256 pointsOnShapes[ SMESH_Block::ID_V001 ] = SMESH_TNodeXYZ( n1 );
2257 pointsOnShapes[ SMESH_Block::ID_V101 ] = SMESH_TNodeXYZ( n5 );
2258 pointsOnShapes[ SMESH_Block::ID_V011 ] = SMESH_TNodeXYZ( n2 );
2259 pointsOnShapes[ SMESH_Block::ID_V111 ] = SMESH_TNodeXYZ( n6 );
2261 pointsOnShapes[ SMESH_Block::ID_Ex00 ] = SMESH_TNodeXYZ( n48 );
2262 pointsOnShapes[ SMESH_Block::ID_Ex10 ] = SMESH_TNodeXYZ( n37 );
2263 pointsOnShapes[ SMESH_Block::ID_E0y0 ] = SMESH_TNodeXYZ( n15 );
2264 pointsOnShapes[ SMESH_Block::ID_E1y0 ] = SMESH_TNodeXYZ( n26 );
2265 pointsOnShapes[ SMESH_Block::ID_Ex01 ] = SMESH_TNodeXYZ( n34 );
2266 pointsOnShapes[ SMESH_Block::ID_Ex11 ] = SMESH_TNodeXYZ( n78 );
2267 pointsOnShapes[ SMESH_Block::ID_E0y1 ] = SMESH_TNodeXYZ( n12 );
2268 pointsOnShapes[ SMESH_Block::ID_E1y1 ] = SMESH_TNodeXYZ( n56 );
2269 pointsOnShapes[ SMESH_Block::ID_E00z ] = SMESH_TNodeXYZ( n41 );
2270 pointsOnShapes[ SMESH_Block::ID_E10z ] = SMESH_TNodeXYZ( n85 );
2271 pointsOnShapes[ SMESH_Block::ID_E01z ] = SMESH_TNodeXYZ( n23 );
2272 pointsOnShapes[ SMESH_Block::ID_E11z ] = SMESH_TNodeXYZ( n67 );
2274 pointsOnShapes[ SMESH_Block::ID_Fxy0 ] = SMESH_TNodeXYZ( n3478 );
2275 pointsOnShapes[ SMESH_Block::ID_Fxy1 ] = SMESH_TNodeXYZ( n1256 );
2276 pointsOnShapes[ SMESH_Block::ID_Fx0z ] = SMESH_TNodeXYZ( n1458 );
2277 pointsOnShapes[ SMESH_Block::ID_Fx1z ] = SMESH_TNodeXYZ( n2367 );
2278 pointsOnShapes[ SMESH_Block::ID_F0yz ] = SMESH_TNodeXYZ( n1234 );
2279 pointsOnShapes[ SMESH_Block::ID_F1yz ] = SMESH_TNodeXYZ( n5678 );
2281 gp_XYZ centerCube(0.5, 0.5, 0.5);
2283 SMESH_Block::ShellPoint( centerCube, pointsOnShapes, nCenterElem );
2284 const SMDS_MeshNode* nCenter =
2285 meshDS->AddNode( nCenterElem.X(), nCenterElem.Y(), nCenterElem.Z() );
2286 meshDS->SetNodeInVolume( nCenter, myShapeID );
2289 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, n5, n6, n7, n8,
2290 n12, n23, n34, n41, n56, n67,
2291 n78, n85, n15, n26, n37, n48,
2292 n1234, n1256, n2367, n3478, n1458, n5678, nCenter, id);
2294 elem = meshDS->AddVolume(n1, n2, n3, n4, n5, n6, n7, n8,
2295 n12, n23, n34, n41, n56, n67,
2296 n78, n85, n15, n26, n37, n48,
2297 n1234, n1256, n2367, n3478, n1458, n5678, nCenter);
2302 elem = meshDS->AddVolumeWithID(n1, n2, n3, n4, n5, n6, n7, n8,
2303 n12, n23, n34, n41, n56, n67,
2304 n78, n85, n15, n26, n37, n48, id);
2306 elem = meshDS->AddVolume(n1, n2, n3, n4, n5, n6, n7, n8,
2307 n12, n23, n34, n41, n56, n67,
2308 n78, n85, n15, n26, n37, n48);
2311 if ( mySetElemOnShape && myShapeID > 0 )
2312 meshDS->SetMeshElementOnShape( elem, myShapeID );
2317 //=======================================================================
2318 //function : AddVolume
2319 //purpose : Creates LINEAR!!!!!!!!! octahedron
2320 //=======================================================================
2322 SMDS_MeshVolume* SMESH_MesherHelper::AddVolume(const SMDS_MeshNode* n1,
2323 const SMDS_MeshNode* n2,
2324 const SMDS_MeshNode* n3,
2325 const SMDS_MeshNode* n4,
2326 const SMDS_MeshNode* n5,
2327 const SMDS_MeshNode* n6,
2328 const SMDS_MeshNode* n7,
2329 const SMDS_MeshNode* n8,
2330 const SMDS_MeshNode* n9,
2331 const SMDS_MeshNode* n10,
2332 const SMDS_MeshNode* n11,
2333 const SMDS_MeshNode* n12,
2337 SMESHDS_Mesh * meshDS = GetMeshDS();
2338 SMDS_MeshVolume* elem = 0;
2340 elem = meshDS->AddVolumeWithID(n1,n2,n3,n4,n5,n6,n7,n8,n9,n10,n11,n12,id);
2342 elem = meshDS->AddVolume(n1,n2,n3,n4,n5,n6,n7,n8,n9,n10,n11,n12);
2343 if ( mySetElemOnShape && myShapeID > 0 )
2344 meshDS->SetMeshElementOnShape( elem, myShapeID );
2348 //=======================================================================
2349 //function : AddPolyhedralVolume
2350 //purpose : Creates polyhedron. In quadratic mesh, adds medium nodes
2351 //=======================================================================
2354 SMESH_MesherHelper::AddPolyhedralVolume (const std::vector<const SMDS_MeshNode*>& nodes,
2355 const std::vector<int>& quantities,
2359 SMESHDS_Mesh * meshDS = GetMeshDS();
2360 SMDS_MeshVolume* elem = 0;
2361 if(!myCreateQuadratic)
2364 elem = meshDS->AddPolyhedralVolumeWithID(nodes, quantities, id);
2366 elem = meshDS->AddPolyhedralVolume(nodes, quantities);
2370 vector<const SMDS_MeshNode*> newNodes;
2371 vector<int> newQuantities;
2372 for ( int iFace=0, iN=0; iFace < quantities.size(); ++iFace)
2374 int nbNodesInFace = quantities[iFace];
2375 newQuantities.push_back(0);
2376 for ( int i = 0; i < nbNodesInFace; ++i )
2378 const SMDS_MeshNode* n1 = nodes[ iN + i ];
2379 newNodes.push_back( n1 );
2380 newQuantities.back()++;
2382 const SMDS_MeshNode* n2 = nodes[ iN + ( i+1==nbNodesInFace ? 0 : i+1 )];
2383 // if ( n1->GetPosition()->GetTypeOfPosition() != SMDS_TOP_3DSPACE &&
2384 // n2->GetPosition()->GetTypeOfPosition() != SMDS_TOP_3DSPACE )
2386 const SMDS_MeshNode* n12 = GetMediumNode( n1, n2, force3d, TopAbs_SOLID );
2387 newNodes.push_back( n12 );
2388 newQuantities.back()++;
2391 iN += nbNodesInFace;
2394 elem = meshDS->AddPolyhedralVolumeWithID( newNodes, newQuantities, id );
2396 elem = meshDS->AddPolyhedralVolume( newNodes, newQuantities );
2398 if ( mySetElemOnShape && myShapeID > 0 )
2399 meshDS->SetMeshElementOnShape( elem, myShapeID );
2406 //================================================================================
2408 * \brief Check if a node belongs to any face of sub-mesh
2410 //================================================================================
2412 bool isNodeInSubMesh( const SMDS_MeshNode* n, const SMESHDS_SubMesh* sm )
2414 SMDS_ElemIteratorPtr fIt = n->GetInverseElementIterator( SMDSAbs_Face );
2415 while ( fIt->more() )
2416 if ( sm->Contains( fIt->next() ))
2422 //=======================================================================
2423 //function : IsSameElemGeometry
2424 //purpose : Returns true if all elements of a sub-mesh are of same shape
2425 //=======================================================================
2427 bool SMESH_MesherHelper::IsSameElemGeometry(const SMESHDS_SubMesh* smDS,
2428 SMDSAbs_GeometryType shape,
2429 const bool nullSubMeshRes)
2431 if ( !smDS ) return nullSubMeshRes;
2433 SMDS_ElemIteratorPtr elemIt = smDS->GetElements();
2434 while ( elemIt->more() ) {
2435 const SMDS_MeshElement* e = elemIt->next();
2436 if ( e->GetGeomType() != shape )
2442 //=======================================================================
2443 //function : LoadNodeColumns
2444 //purpose : Load nodes bound to face into a map of node columns
2445 //=======================================================================
2447 bool SMESH_MesherHelper::LoadNodeColumns(TParam2ColumnMap & theParam2ColumnMap,
2448 const TopoDS_Face& theFace,
2449 const TopoDS_Edge& theBaseEdge,
2450 SMESHDS_Mesh* theMesh,
2451 SMESH_ProxyMesh* theProxyMesh)
2453 return LoadNodeColumns(theParam2ColumnMap,
2455 std::list<TopoDS_Edge>(1,theBaseEdge),
2460 //=======================================================================
2461 //function : LoadNodeColumns
2462 //purpose : Load nodes bound to face into a map of node columns
2463 //=======================================================================
2465 bool SMESH_MesherHelper::LoadNodeColumns(TParam2ColumnMap & theParam2ColumnMap,
2466 const TopoDS_Face& theFace,
2467 const std::list<TopoDS_Edge>& theBaseSide,
2468 SMESHDS_Mesh* theMesh,
2469 SMESH_ProxyMesh* theProxyMesh)
2471 // get a right sub-mesh of theFace
2473 const SMESHDS_SubMesh* faceSubMesh = 0;
2476 faceSubMesh = theProxyMesh->GetSubMesh( theFace );
2477 if ( !faceSubMesh ||
2478 faceSubMesh->NbElements() == 0 ||
2479 theProxyMesh->IsTemporary( faceSubMesh->GetElements()->next() ))
2481 // can use a proxy sub-mesh with not temporary elements only
2487 faceSubMesh = theMesh->MeshElements( theFace );
2488 if ( !faceSubMesh || faceSubMesh->NbElements() == 0 )
2491 if ( theParam2ColumnMap.empty() )
2493 // get data of edges for normalization of params
2494 vector< double > length;
2496 list<TopoDS_Edge>::const_iterator edge;
2498 for ( edge = theBaseSide.begin(); edge != theBaseSide.end(); ++edge )
2500 double len = std::max( 1e-10, SMESH_Algo::EdgeLength( *edge ));
2502 length.push_back( len );
2506 // get nodes on theBaseEdge sorted by param on edge and initialize theParam2ColumnMap with them
2507 edge = theBaseSide.begin();
2508 for ( int iE = 0; edge != theBaseSide.end(); ++edge, ++iE )
2510 map< double, const SMDS_MeshNode*> sortedBaseNN;
2511 SMESH_Algo::GetSortedNodesOnEdge( theMesh, *edge,/*noMedium=*/true, sortedBaseNN );
2513 map< double, const SMDS_MeshNode*>::iterator u_n;
2514 // pb with mesh_Projection_2D_00/A1 fixed by adding expectedSupport arg to GetMediumPos()
2515 // so the following solution is commented (hope forever :)
2517 // SMESH_Algo::GetSortedNodesOnEdge( theMesh, *edge,/*noMedium=*/true, sortedBaseNN,
2518 // // SMDSAbs_Edge here is needed to be coherent with
2519 // // StdMeshers_FaceSide used by Quadrangle to get nodes
2520 // // on EDGE; else pb in mesh_Projection_2D_00/A1 where a
2521 // // medium node on EDGE is medium in a triangle but not
2524 // if ( faceSubMesh->GetElements()->next()->IsQuadratic() )
2525 // // filter off nodes medium in faces on theFace (same pb with mesh_Projection_2D_00/A1)
2526 // for ( u_n = sortedBaseNN.begin(); u_n != sortedBaseNN.end() ; )
2528 // const SMDS_MeshNode* node = u_n->second;
2529 // SMDS_ElemIteratorPtr faceIt = node->GetInverseElementIterator( SMDSAbs_Face );
2530 // if ( faceIt->more() && node ) {
2531 // const SMDS_MeshElement* face = faceIt->next();
2532 // if ( faceSubMesh->Contains( face ) && face->IsMediumNode( node ))
2536 // sortedBaseNN.erase( u_n++ );
2540 if ( sortedBaseNN.empty() ) continue;
2542 u_n = sortedBaseNN.begin();
2543 if ( theProxyMesh ) // from sortedBaseNN remove nodes not shared by faces of faceSubMesh
2545 const SMDS_MeshNode* n1 = (++sortedBaseNN.begin())->second;
2546 const SMDS_MeshNode* n2 = (++sortedBaseNN.rbegin())->second;
2547 bool allNodesAreProxy = ( n1 != theProxyMesh->GetProxyNode( n1 ) &&
2548 n2 != theProxyMesh->GetProxyNode( n2 ));
2549 if ( allNodesAreProxy )
2550 for ( u_n = sortedBaseNN.begin(); u_n != sortedBaseNN.end(); u_n++ )
2551 u_n->second = theProxyMesh->GetProxyNode( u_n->second );
2553 if ( u_n = sortedBaseNN.begin(), !isNodeInSubMesh( u_n->second, faceSubMesh ))
2555 while ( ++u_n != sortedBaseNN.end() && !isNodeInSubMesh( u_n->second, faceSubMesh ));
2556 sortedBaseNN.erase( sortedBaseNN.begin(), u_n );
2558 if ( !sortedBaseNN.empty() )
2559 if ( u_n = --sortedBaseNN.end(), !isNodeInSubMesh( u_n->second, faceSubMesh ))
2561 while ( u_n != sortedBaseNN.begin() && !isNodeInSubMesh( (--u_n)->second, faceSubMesh ));
2562 sortedBaseNN.erase( ++u_n, sortedBaseNN.end() );
2564 if ( sortedBaseNN.empty() ) continue;
2568 BRep_Tool::Range( *edge, f, l );
2569 if ( edge->Orientation() == TopAbs_REVERSED ) std::swap( f, l );
2570 const double coeff = 1. / ( l - f ) * length[iE] / fullLen;
2571 const double prevPar = theParam2ColumnMap.empty() ? 0 : theParam2ColumnMap.rbegin()->first;
2572 for ( u_n = sortedBaseNN.begin(); u_n != sortedBaseNN.end(); u_n++ )
2574 double par = prevPar + coeff * ( u_n->first - f );
2575 TParam2ColumnMap::iterator u2nn =
2576 theParam2ColumnMap.insert( theParam2ColumnMap.end(), make_pair( par, TNodeColumn()));
2577 u2nn->second.push_back( u_n->second );
2580 if ( theParam2ColumnMap.size() < 2 )
2585 int prevNbRows = theParam2ColumnMap.begin()->second.size(); // current, at least 1 here
2586 int expectedNbRows = faceSubMesh->NbElements() / ( theParam2ColumnMap.size()-1 ); // to be added
2588 // fill theParam2ColumnMap column by column by passing from nodes on
2589 // theBaseEdge up via mesh faces on theFace
2591 TParam2ColumnMap::iterator par_nVec_1, par_nVec_2;
2592 par_nVec_2 = theParam2ColumnMap.begin();
2593 par_nVec_1 = par_nVec_2++;
2594 TIDSortedElemSet emptySet, avoidSet;
2595 for ( ; par_nVec_2 != theParam2ColumnMap.end(); ++par_nVec_1, ++par_nVec_2 )
2597 vector<const SMDS_MeshNode*>& nCol1 = par_nVec_1->second;
2598 vector<const SMDS_MeshNode*>& nCol2 = par_nVec_2->second;
2599 nCol1.resize( prevNbRows + expectedNbRows );
2600 nCol2.resize( prevNbRows + expectedNbRows );
2602 int i1, i2, foundNbRows = 0;
2603 const SMDS_MeshNode *n1 = nCol1[ prevNbRows-1 ];
2604 const SMDS_MeshNode *n2 = nCol2[ prevNbRows-1 ];
2605 // find face sharing node n1 and n2 and belonging to faceSubMesh
2606 while ( const SMDS_MeshElement* face =
2607 SMESH_MeshAlgos::FindFaceInSet( n1, n2, emptySet, avoidSet, &i1, &i2))
2609 if ( faceSubMesh->Contains( face ))
2611 int nbNodes = face->NbCornerNodes();
2614 if ( foundNbRows + 1 > expectedNbRows )
2616 n1 = face->GetNode( (i2+2) % 4 ); // opposite corner of quadrangle face
2617 n2 = face->GetNode( (i1+2) % 4 );
2618 nCol1[ prevNbRows + foundNbRows] = n1;
2619 nCol2[ prevNbRows + foundNbRows] = n2;
2622 avoidSet.insert( face );
2624 if ( foundNbRows != expectedNbRows )
2628 return ( theParam2ColumnMap.size() > 1 &&
2629 theParam2ColumnMap.begin()->second.size() == prevNbRows + expectedNbRows );
2634 //================================================================================
2636 * \brief Return true if a node is at a corner of a 2D structured mesh of FACE
2638 //================================================================================
2640 bool isCornerOfStructure( const SMDS_MeshNode* n,
2641 const SMESHDS_SubMesh* faceSM,
2642 SMESH_MesherHelper& faceAnalyser )
2644 int nbFacesInSM = 0;
2646 SMDS_ElemIteratorPtr fIt = n->GetInverseElementIterator( SMDSAbs_Face );
2647 while ( fIt->more() )
2648 nbFacesInSM += faceSM->Contains( fIt->next() );
2650 if ( nbFacesInSM == 1 )
2653 if ( nbFacesInSM == 2 && n->GetPosition()->GetTypeOfPosition() == SMDS_TOP_VERTEX )
2655 return faceAnalyser.IsRealSeam( n->getshapeId() );
2661 //=======================================================================
2662 //function : IsStructured
2663 //purpose : Return true if 2D mesh on FACE is a structured rectangle
2664 //=======================================================================
2666 bool SMESH_MesherHelper::IsStructured( SMESH_subMesh* faceSM )
2668 SMESHDS_SubMesh* fSM = faceSM->GetSubMeshDS();
2669 if ( !fSM || fSM->NbElements() == 0 )
2672 list< TopoDS_Edge > edges;
2673 list< int > nbEdgesInWires;
2674 int nbWires = SMESH_Block::GetOrderedEdges( TopoDS::Face( faceSM->GetSubShape() ),
2675 edges, nbEdgesInWires );
2676 if ( nbWires != 1 /*|| nbEdgesInWires.front() != 4*/ ) // allow composite sides
2679 // algo: find corners of a structure and then analyze nb of faces and
2680 // length of structure sides
2682 SMESHDS_Mesh* meshDS = faceSM->GetFather()->GetMeshDS();
2683 SMESH_MesherHelper faceAnalyser( *faceSM->GetFather() );
2684 faceAnalyser.SetSubShape( faceSM->GetSubShape() );
2686 // rotate edges to get the first node being at corner
2687 // (in principle it's not necessary because so far none SALOME algo can make
2688 // such a structured mesh that all corner nodes are not on VERTEXes)
2689 bool isCorner = false;
2690 int nbRemainEdges = nbEdgesInWires.front();
2692 TopoDS_Vertex V = IthVertex( 0, edges.front() );
2693 isCorner = isCornerOfStructure( SMESH_Algo::VertexNode( V, meshDS ),
2696 edges.splice( edges.end(), edges, edges.begin() );
2700 while ( !isCorner && nbRemainEdges > 0 );
2705 // get all nodes from EDGEs
2706 list< const SMDS_MeshNode* > nodes;
2707 list< TopoDS_Edge >::iterator edge = edges.begin();
2708 for ( ; edge != edges.end(); ++edge )
2710 map< double, const SMDS_MeshNode* > u2Nodes;
2711 if ( !SMESH_Algo::GetSortedNodesOnEdge( meshDS, *edge,
2712 /*skipMedium=*/true, u2Nodes ))
2715 list< const SMDS_MeshNode* > edgeNodes;
2716 map< double, const SMDS_MeshNode* >::iterator u2n = u2Nodes.begin();
2717 for ( ; u2n != u2Nodes.end(); ++u2n )
2718 edgeNodes.push_back( u2n->second );
2719 if ( edge->Orientation() == TopAbs_REVERSED )
2720 edgeNodes.reverse();
2722 if ( !nodes.empty() && nodes.back() == edgeNodes.front() )
2723 edgeNodes.pop_front();
2724 nodes.splice( nodes.end(), edgeNodes, edgeNodes.begin(), edgeNodes.end() );
2727 // get length of structured sides
2728 vector<int> nbEdgesInSide;
2730 list< const SMDS_MeshNode* >::iterator n = ++nodes.begin();
2731 for ( ; n != nodes.end(); ++n )
2734 if ( isCornerOfStructure( *n, fSM, faceAnalyser )) {
2735 nbEdgesInSide.push_back( nbEdges );
2741 if ( nbEdgesInSide.size() != 4 )
2743 if ( nbEdgesInSide[0] != nbEdgesInSide[2] )
2745 if ( nbEdgesInSide[1] != nbEdgesInSide[3] )
2747 if ( nbEdgesInSide[0] * nbEdgesInSide[1] != fSM->NbElements() )
2753 //=======================================================================
2754 //function : IsDistorted2D
2755 //purpose : Return true if 2D mesh on FACE is ditorted
2756 //=======================================================================
2758 bool SMESH_MesherHelper::IsDistorted2D( SMESH_subMesh* faceSM,
2761 if ( !faceSM || faceSM->GetSubShape().ShapeType() != TopAbs_FACE )
2764 bool haveBadFaces = false;
2766 SMESH_MesherHelper helper( *faceSM->GetFather() );
2767 helper.SetSubShape( faceSM->GetSubShape() );
2769 const TopoDS_Face& F = TopoDS::Face( faceSM->GetSubShape() );
2770 SMESHDS_SubMesh* smDS = helper.GetMeshDS()->MeshElements( F );
2771 if ( !smDS || smDS->NbElements() == 0 ) return false;
2773 SMDS_ElemIteratorPtr faceIt = smDS->GetElements();
2774 double prevArea = 0;
2775 vector< const SMDS_MeshNode* > nodes;
2777 bool* toCheckUV = checkUV ? & checkUV : 0;
2778 while ( faceIt->more() && !haveBadFaces )
2780 const SMDS_MeshElement* face = faceIt->next();
2783 nodes.resize( face->NbCornerNodes() );
2784 SMDS_MeshElement::iterator n = face->begin_nodes();
2785 for ( size_t i = 0; i < nodes.size(); ++n, ++i )
2788 // avoid elems on degenarate shapes as UV on them can be wrong
2789 if ( helper.HasDegeneratedEdges() )
2791 bool isOnDegen = false;
2792 for ( size_t i = 0; ( i < nodes.size() && !isOnDegen ); ++i )
2793 isOnDegen = helper.IsDegenShape( nodes[ i ]->getshapeId() );
2797 // prepare to getting UVs
2798 const SMDS_MeshNode* inFaceNode = 0;
2799 if ( helper.HasSeam() ) {
2800 for ( size_t i = 0; ( i < nodes.size() && !inFaceNode ); ++i )
2801 if ( !helper.IsSeamShape( nodes[ i ]->getshapeId() ))
2802 inFaceNode = nodes[ i ];
2807 uv.resize( nodes.size() );
2808 for ( size_t i = 0; i < nodes.size(); ++i )
2809 uv[ i ] = helper.GetNodeUV( F, nodes[ i ], inFaceNode, toCheckUV );
2811 // compare orientation of triangles
2812 double faceArea = 0;
2813 for ( int iT = 0, nbT = nodes.size()-2; iT < nbT; ++iT )
2815 gp_XY v1 = uv[ iT+1 ] - uv[ 0 ];
2816 gp_XY v2 = uv[ iT+2 ] - uv[ 0 ];
2817 faceArea += v2 ^ v1;
2819 haveBadFaces = ( faceArea * prevArea < 0 );
2820 prevArea = faceArea;
2823 return haveBadFaces;
2826 //================================================================================
2828 * \brief Find out elements orientation on a geometrical face
2829 * \param theFace - The face correctly oriented in the shape being meshed
2830 * \retval bool - true if the face normal and the normal of first element
2831 * in the correspoding submesh point in different directions
2833 //================================================================================
2835 bool SMESH_MesherHelper::IsReversedSubMesh (const TopoDS_Face& theFace)
2837 if ( theFace.IsNull() )
2840 // find out orientation of a meshed face
2841 int faceID = GetMeshDS()->ShapeToIndex( theFace );
2842 TopoDS_Shape aMeshedFace = GetMeshDS()->IndexToShape( faceID );
2843 bool isReversed = ( theFace.Orientation() != aMeshedFace.Orientation() );
2845 const SMESHDS_SubMesh * aSubMeshDSFace = GetMeshDS()->MeshElements( faceID );
2846 if ( !aSubMeshDSFace )
2849 // find an element on a bounday of theFace
2850 SMDS_ElemIteratorPtr iteratorElem = aSubMeshDSFace->GetElements();
2851 const SMDS_MeshNode* nn[2];
2852 while ( iteratorElem->more() ) // loop on elements on theFace
2854 const SMDS_MeshElement* elem = iteratorElem->next();
2855 if ( ! elem ) continue;
2857 // look for 2 nodes on EDGE
2858 int nbNodes = elem->NbCornerNodes();
2859 nn[0] = elem->GetNode( nbNodes-1 );
2860 for ( int iN = 0; iN < nbNodes; ++iN )
2862 nn[1] = elem->GetNode( iN );
2863 if ( nn[0]->GetPosition()->GetDim() < 2 &&
2864 nn[1]->GetPosition()->GetDim() < 2 )
2866 TopoDS_Shape s0 = GetSubShapeByNode( nn[0], GetMeshDS() );
2867 TopoDS_Shape s1 = GetSubShapeByNode( nn[1], GetMeshDS() );
2868 TopoDS_Shape E = GetCommonAncestor( s0, s1, *myMesh, TopAbs_EDGE );
2869 if ( !E.IsNull() && !s0.IsSame( s1 ))
2873 for ( TopExp_Explorer exp( theFace, TopAbs_EDGE ); exp.More(); exp.Next() )
2874 if ( E.IsSame( exp.Current() )) {
2876 E = exp.Current(); // to know orientation
2881 double u0 = GetNodeU( TopoDS::Edge( E ), nn[0], nn[1], &ok );
2882 double u1 = GetNodeU( TopoDS::Edge( E ), nn[1], nn[0], &ok );
2885 isReversed = ( u0 > u1 );
2886 if ( E.Orientation() == TopAbs_REVERSED )
2887 isReversed = !isReversed;
2897 // find an element with a good normal
2899 bool normalOK = false;
2901 iteratorElem = aSubMeshDSFace->GetElements();
2902 while ( !normalOK && iteratorElem->more() ) // loop on elements on theFace
2904 const SMDS_MeshElement* elem = iteratorElem->next();
2905 if ( ! SMESH_MeshAlgos::FaceNormal( elem, const_cast<gp_XYZ&>( Ne.XYZ() ), /*normalized=*/0 ))
2909 // get UV of a node inside theFACE
2910 SMDS_ElemIteratorPtr nodesIt = elem->nodesIterator();
2911 const SMDS_MeshNode* nInFace = 0;
2912 int iPosDim = SMDS_TOP_VERTEX;
2913 while ( nodesIt->more() ) // loop on nodes
2915 const SMDS_MeshNode* n = static_cast<const SMDS_MeshNode*>( nodesIt->next() );
2916 if ( n->GetPosition()->GetTypeOfPosition() >= iPosDim )
2919 iPosDim = n->GetPosition()->GetTypeOfPosition();
2922 uv = GetNodeUV( theFace, nInFace, 0, &normalOK );
2927 // face normal at node position
2928 TopLoc_Location loc;
2929 Handle(Geom_Surface) surf = BRep_Tool::Surface( theFace, loc );
2930 // if ( surf.IsNull() || surf->Continuity() < GeomAbs_C1 )
2931 // some surfaces not detected as GeomAbs_C1 are nevertheless correct for meshing
2932 if ( surf.IsNull() || surf->Continuity() < GeomAbs_C0 )
2935 gp_Vec d1u, d1v; gp_Pnt p;
2936 surf->D1( uv.X(), uv.Y(), p, d1u, d1v );
2937 gp_Vec Nf = (d1u ^ d1v).Transformed( loc );
2939 if ( theFace.Orientation() == TopAbs_REVERSED )
2942 return Ne * Nf < 0.;
2945 //=======================================================================
2947 //purpose : Count nb of sub-shapes
2948 //=======================================================================
2950 int SMESH_MesherHelper::Count(const TopoDS_Shape& shape,
2951 const TopAbs_ShapeEnum type,
2952 const bool ignoreSame)
2955 TopTools_IndexedMapOfShape map;
2956 TopExp::MapShapes( shape, type, map );
2957 return map.Extent();
2961 for ( TopExp_Explorer exp( shape, type ); exp.More(); exp.Next() )
2967 //=======================================================================
2968 //function : NbAncestors
2969 //purpose : Return number of unique ancestors of the shape
2970 //=======================================================================
2972 int SMESH_MesherHelper::NbAncestors(const TopoDS_Shape& shape,
2973 const SMESH_Mesh& mesh,
2974 TopAbs_ShapeEnum ancestorType/*=TopAbs_SHAPE*/)
2976 TopTools_MapOfShape ancestors;
2977 TopTools_ListIteratorOfListOfShape ansIt( mesh.GetAncestors(shape) );
2978 for ( ; ansIt.More(); ansIt.Next() ) {
2979 if ( ancestorType == TopAbs_SHAPE || ansIt.Value().ShapeType() == ancestorType )
2980 ancestors.Add( ansIt.Value() );
2982 return ancestors.Extent();
2985 //=======================================================================
2986 //function : GetSubShapeOri
2987 //purpose : Return orientation of sub-shape in the main shape
2988 //=======================================================================
2990 TopAbs_Orientation SMESH_MesherHelper::GetSubShapeOri(const TopoDS_Shape& shape,
2991 const TopoDS_Shape& subShape)
2993 TopAbs_Orientation ori = TopAbs_Orientation(-1);
2994 if ( !shape.IsNull() && !subShape.IsNull() )
2996 TopExp_Explorer e( shape, subShape.ShapeType() );
2997 if ( shape.Orientation() >= TopAbs_INTERNAL ) // TopAbs_INTERNAL or TopAbs_EXTERNAL
2998 e.Init( shape.Oriented(TopAbs_FORWARD), subShape.ShapeType() );
2999 for ( ; e.More(); e.Next())