1 // Copyright (C) 2007-2012 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.
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 // SMESH StdMeshers_Penta_3D implementaion of SMESH idl descriptions
24 // File : StdMeshers_Penta_3D.cxx
27 #include "StdMeshers_Penta_3D.hxx"
29 #include "utilities.h"
30 #include "Utils_ExceptHandlers.hxx"
32 #include "SMDS_EdgePosition.hxx"
33 #include "SMDS_MeshElement.hxx"
34 #include "SMDS_VolumeOfNodes.hxx"
35 #include "SMDS_VolumeTool.hxx"
36 #include "SMESHDS_SubMesh.hxx"
37 #include "SMESH_Mesh.hxx"
38 #include "SMESH_MesherHelper.hxx"
39 #include "SMESH_subMesh.hxx"
40 #include "SMESH_subMeshEventListener.hxx"
41 #include "SMESH_Comment.hxx"
43 #include <BRep_Tool.hxx>
45 #include <TopExp_Explorer.hxx>
46 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
47 #include <TopTools_IndexedMapOfShape.hxx>
48 #include <TopTools_ListIteratorOfListOfShape.hxx>
49 #include <TopTools_ListOfShape.hxx>
50 #include <TopTools_SequenceOfShape.hxx>
51 #include <TopTools_MapOfShape.hxx>
53 #include <TopoDS_Edge.hxx>
54 #include <TopoDS_Shell.hxx>
55 #include <TopoDS_Vertex.hxx>
63 typedef map < int, int, less<int> >::iterator \
64 StdMeshers_IteratorOfDataMapOfIntegerInteger;
66 enum { NB_WALL_FACES = 4 };
68 //=======================================================================
69 //function : StdMeshers_Penta_3D
71 //=======================================================================
72 StdMeshers_Penta_3D::StdMeshers_Penta_3D()
73 : myErrorStatus(SMESH_ComputeError::New())
76 myWallNodesMaps.resize( SMESH_Block::NbFaces() );
77 myShapeXYZ.resize( SMESH_Block::NbSubShapes() );
81 //=======================================================================
82 //function : ~StdMeshers_Penta_3D
84 //=======================================================================
86 StdMeshers_Penta_3D::~StdMeshers_Penta_3D()
90 //=======================================================================
93 //=======================================================================
94 bool StdMeshers_Penta_3D::Compute(SMESH_Mesh& aMesh,
95 const TopoDS_Shape& aShape)
97 MESSAGE("StdMeshers_Penta_3D::Compute()");
105 if (!myErrorStatus->IsOK()) {
111 if (!myErrorStatus->IsOK()) {
116 if (!myErrorStatus->IsOK()) {
120 // now unnecessary faces removed, we can load medium nodes
121 SMESH_MesherHelper helper(aMesh);
123 myCreateQuadratic = myTool->IsQuadraticSubMesh(aShape);
127 if (!myErrorStatus->IsOK()) {
134 if (!myErrorStatus->IsOK()) {
143 //=======================================================================
144 //function : MakeNodes
146 //=======================================================================
147 void StdMeshers_Penta_3D::MakeNodes()
150 int i, j, k, ij, iNbN, aNodeID, aSize, iErr;
152 SMESH_Block::TShapeID aSID, aSIDs[aNbSIDs]={
153 SMESH_Block::ID_V000, SMESH_Block::ID_V100,
154 SMESH_Block::ID_V110, SMESH_Block::ID_V010,
155 SMESH_Block::ID_Ex00, SMESH_Block::ID_E1y0,
156 SMESH_Block::ID_Ex10, SMESH_Block::ID_E0y0,
160 SMESH_Mesh* pMesh=GetMesh();
162 // 1. Define the sizes of mesh
164 // 1.1 Horizontal size
166 for (i=0; i<aNbSIDs; ++i) {
167 const TopoDS_Shape& aS = myBlock.Shape(aSIDs[i]);
168 SMESH_subMesh *aSubMesh = pMesh->GetSubMeshContaining(aS);
170 SMESHDS_SubMesh *aSM = aSubMesh->GetSubMeshDS();
171 if(!myCreateQuadratic) {
172 iNbN = aSM->NbNodes();
176 SMDS_NodeIteratorPtr itn = aSM->GetNodes();
178 const SMDS_MeshNode* aNode = itn->next();
179 if(myTool->IsMedium(aNode))
186 //printf("*** Horizontal: number of nodes summary=%d\n", myJSize);
191 const TopoDS_Shape& aS=myBlock.Shape(SMESH_Block::ID_E00z);
192 SMESH_subMesh *aSubMesh = pMesh->GetSubMeshContaining(aS);
194 SMESHDS_SubMesh *aSM = aSubMesh->GetSubMeshDS();
195 if(!myCreateQuadratic) {
196 iNbN = aSM->NbNodes();
200 SMDS_NodeIteratorPtr itn = aSM->GetNodes();
202 const SMDS_MeshNode* aNode = itn->next();
203 if(myTool->IsMedium(aNode))
210 //printf("*** Vertical: number of nodes on edges and vertices=%d\n", myISize);
212 aSize=myISize*myJSize;
213 myTNodes.resize(aSize);
215 StdMeshers_TNode aTNode;
219 // 2. Fill the repers on base face (Z=0)
222 for (k=0; k<aNbSIDs; ++k) {
224 const TopoDS_Shape& aS = myBlock.Shape(aSID);
225 SMDS_NodeIteratorPtr ite = pMesh->GetSubMeshContaining(aS)->GetSubMeshDS()->GetNodes();
227 const SMDS_MeshNode* aNode = ite->next();
228 if(myTool->IsMedium(aNode))
230 aNodeID=aNode->GetID();
232 aTNode.SetNode(aNode);
233 aTNode.SetShapeSupportID(aSID);
234 aTNode.SetBaseNodeID(aNodeID);
236 if ( SMESH_Block::IsEdgeID (aSID)) {
237 const SMDS_EdgePosition* epos =
238 static_cast<const SMDS_EdgePosition*>(aNode->GetPosition());
239 myBlock.ComputeParameters( epos->GetUParameter(), aS, aCoords );
245 aP3D.SetCoord(aX, aY, aZ);
246 myBlock.ComputeParameters(aP3D, aS, aCoords);
248 iErr = myBlock.ErrorStatus();
250 MESSAGE("StdMeshers_Penta_3D::MakeNodes()," <<
251 "SMESHBlock: ComputeParameters operation failed");
252 myErrorStatus=myBlock.GetError();
255 aTNode.SetNormCoord(aCoords);
262 // 3.1 Fill maps of wall nodes
263 SMESH_Block::TShapeID wallFaceID[ NB_WALL_FACES ] = {
264 SMESH_Block::ID_Fx0z, SMESH_Block::ID_Fx1z,
265 SMESH_Block::ID_F0yz, SMESH_Block::ID_F1yz
267 SMESH_Block::TShapeID baseEdgeID[ NB_WALL_FACES ] = {
268 SMESH_Block::ID_Ex00, SMESH_Block::ID_Ex10,
269 SMESH_Block::ID_E0y0, SMESH_Block::ID_E1y0
271 for ( i = 0; i < NB_WALL_FACES ; ++i ) {
272 int fIndex = SMESH_Block::ShapeIndex( wallFaceID[ i ]);
273 bool ok = LoadIJNodes (myWallNodesMaps[ fIndex ],
274 TopoDS::Face( myBlock.Shape( wallFaceID[ i ] )),
275 TopoDS::Edge( myBlock.Shape( baseEdgeID[ i ] )),
278 myErrorStatus->myName = COMPERR_BAD_INPUT_MESH;
279 myErrorStatus->myComment = SMESH_Comment() <<
280 "Can't find regular quadrangle mesh on a side face #" <<
281 pMesh->GetMeshDS()->ShapeToIndex( myBlock.Shape( wallFaceID[ i ]));
286 // 3.2 find node columns for vertical edges and edge IDs
287 vector<const SMDS_MeshNode*> * verticEdgeNodes[ NB_WALL_FACES ];
288 SMESH_Block::TShapeID verticEdgeID [ NB_WALL_FACES ];
289 for ( i = 0; i < NB_WALL_FACES ; ++i ) { // 4 first base nodes are nodes on vertices
291 SMESH_Block::TShapeID eID, vID = aSIDs[ i ];
292 ShapeSupportID(false, vID, eID);
293 verticEdgeID[ i ] = eID;
295 StdMeshers_TNode& aTNode = myTNodes[ i ];
296 verticEdgeNodes[ i ] = 0;
297 for ( j = 0; j < NB_WALL_FACES ; ++j ) { // loop on 4 wall faces
298 int fIndex = SMESH_Block::ShapeIndex( wallFaceID[ j ]);
299 StdMeshers_IJNodeMap & ijNodes= myWallNodesMaps[ fIndex ];
300 if ( ijNodes.begin()->second[0] == aTNode.Node() )
301 verticEdgeNodes[ i ] = & ijNodes.begin()->second;
302 else if ( ijNodes.rbegin()->second[0] == aTNode.Node() )
303 verticEdgeNodes[ i ] = & ijNodes.rbegin()->second;
304 if ( verticEdgeNodes[ i ] )
309 // 3.3 set XYZ of vertices, and initialize of the rest
310 SMESHDS_Mesh* aMesh = GetMesh()->GetMeshDS();
311 for ( int id = SMESH_Block::ID_V000; id < SMESH_Block::ID_Shell; ++id ) {
312 if ( SMESH_Block::IsVertexID( id )) {
313 TopoDS_Shape V = myBlock.Shape( id );
314 SMESHDS_SubMesh* sm = aMesh->MeshElements( V );
315 const SMDS_MeshNode* n = sm->GetNodes()->next();
316 myShapeXYZ[ id ].SetCoord( n->X(), n->Y(), n->Z() );
319 myShapeXYZ[ id ].SetCoord( 0., 0., 0. );
323 // 4. Fill the rest repers
326 SMESH_Block::TShapeID aSSID, aBNSSID;
327 StdMeshers_TNode aTN;
330 // create top face and find UV for it's corners
331 const TopoDS_Face& TopFace = TopoDS::Face(myBlock.Shape(SMESH_Block::ID_Fxy1));
332 SMESHDS_Mesh* meshDS = pMesh->GetMeshDS();
333 int topfaceID = meshDS->ShapeToIndex(TopFace);
334 const TopoDS_Vertex& v001 = TopoDS::Vertex(myBlock.Shape(SMESH_Block::ID_V001));
335 SMDS_NodeIteratorPtr itn = pMesh->GetSubMeshContaining(v001)->GetSubMeshDS()->GetNodes();
336 const SMDS_MeshNode* N = itn->next();
337 gp_XY UV001 = myTool->GetNodeUV(TopFace,N);
338 const TopoDS_Vertex& v101 = TopoDS::Vertex(myBlock.Shape(SMESH_Block::ID_V101));
339 itn = pMesh->GetSubMeshContaining(v101)->GetSubMeshDS()->GetNodes();
341 gp_XY UV101 = myTool->GetNodeUV(TopFace,N);
342 const TopoDS_Vertex& v011 = TopoDS::Vertex(myBlock.Shape(SMESH_Block::ID_V011));
343 itn = pMesh->GetSubMeshContaining(v011)->GetSubMeshDS()->GetNodes();
345 gp_XY UV011 = myTool->GetNodeUV(TopFace,N);
346 const TopoDS_Vertex& v111 = TopoDS::Vertex(myBlock.Shape(SMESH_Block::ID_V111));
347 itn = pMesh->GetSubMeshContaining(v111)->GetSubMeshDS()->GetNodes();
349 gp_XY UV111 = myTool->GetNodeUV(TopFace,N);
351 for (j=0; j<myJSize; ++j) { // loop on all nodes of the base face (ID_Fxy0)
353 const StdMeshers_TNode& aBN = myTNodes[j];
354 aBNSSID = (SMESH_Block::TShapeID)aBN.ShapeSupportID();
355 iBNID = aBN.BaseNodeID();
356 const gp_XYZ& aBNXYZ = aBN.NormCoord();
357 bool createNode = ( aBNSSID == SMESH_Block::ID_Fxy0 ); // if base node is inside a bottom face
359 // set XYZ on horizontal edges and get node columns of faces:
360 // 2 columns for each face, between which a base node is located
361 vector<const SMDS_MeshNode*>* nColumns[8];
362 double ratio[ NB_WALL_FACES ]; // base node position between columns [0.-1.]
364 for ( k = 0; k < NB_WALL_FACES ; ++k ) {
365 ratio[ k ] = SetHorizEdgeXYZ (aBNXYZ, wallFaceID[ k ],
366 nColumns[k*2], nColumns[k*2+1]);
370 // XYZ on the bottom and top faces
371 const SMDS_MeshNode* n = aBN.Node();
372 myShapeXYZ[ SMESH_Block::ID_Fxy0 ].SetCoord( n->X(), n->Y(), n->Z() );
373 myShapeXYZ[ SMESH_Block::ID_Fxy1 ].SetCoord( 0., 0., 0. );
375 // first create or find a top node, then the rest ones in a column
376 for (i=myISize-1; i>0; --i) // vertical loop, from top to bottom
378 bIsUpperLayer = (i==(myISize-1));
379 gp_XY UV_Ex01, UV_Ex11, UV_E0y1, UV_E1y1;
380 if ( createNode ) // a base node is inside a top face
382 // set XYZ on vertical edges and faces
383 for ( k = 0; k < NB_WALL_FACES ; ++k ) {
384 // XYZ on a vertical edge
385 const SMDS_MeshNode* n = (*verticEdgeNodes[ k ]) [ i ];
386 myShapeXYZ[ verticEdgeID[ k ] ].SetCoord( n->X(), n->Y(), n->Z() );
387 // XYZ on a face (part 1 from one column)
388 n = (*nColumns[k*2]) [ i ];
389 gp_XYZ xyz( n->X(), n->Y(), n->Z() );
390 myShapeXYZ[ wallFaceID[ k ]] = ( 1. - ratio[ k ]) * xyz;
392 if( bIsUpperLayer ) {
393 tmp1 = myTool->GetNodeUV(TopFace,n);
394 tmp1 = ( 1. - ratio[ k ]) * tmp1;
396 // XYZ on a face (part 2 from other column)
397 n = (*nColumns[k*2+1]) [ i ];
398 xyz.SetCoord( n->X(), n->Y(), n->Z() );
399 myShapeXYZ[ wallFaceID[ k ]] += ratio[ k ] * xyz;
400 if( bIsUpperLayer ) {
401 gp_XY tmp2 = myTool->GetNodeUV(TopFace,n);
402 tmp1 += ratio[ k ] * tmp2;
414 // fill current node info
417 // -normalized coordinates
421 aZ=(double)i/(double)(myISize-1);
422 aCoords.SetCoord(aX, aY, aZ);
424 // suporting shape ID
425 ShapeSupportID(bIsUpperLayer, aBNSSID, aSSID);
426 if (!myErrorStatus->IsOK()) {
427 MESSAGE("StdMeshers_Penta_3D::MakeNodes() ");
431 aTN.SetShapeSupportID(aSSID);
432 aTN.SetNormCoord(aCoords);
433 aTN.SetBaseNodeID(iBNID);
435 if (aSSID!=SMESH_Block::ID_NONE){
436 // try to find the node
437 const TopoDS_Shape& aS=myBlock.Shape((int)aSSID);
438 FindNodeOnShape(aS, aCoords, i, aTN);
441 // create node and get its id
442 CreateNode (bIsUpperLayer, aCoords, aTN);
444 if ( bIsUpperLayer ) {
445 const SMDS_MeshNode* n = aTN.Node();
446 myShapeXYZ[ SMESH_Block::ID_Fxy1 ].SetCoord( n->X(), n->Y(), n->Z() );
447 // set node on top face:
448 // find UV parameter for this node
450 // UV011+-----+----------+UV111
453 // UV_E0y1+ +node +UV_E1y1
457 // UV001+-----+----------+UV101
460 double u = aCoords.X(), v = aCoords.Y();
461 double u1 = ( 1. - u ), v1 = ( 1. - v );
462 aP.ChangeCoord() = UV_Ex01 * v1;
463 aP.ChangeCoord() += UV_Ex11 * v;
464 aP.ChangeCoord() += UV_E0y1 * u1;
465 aP.ChangeCoord() += UV_E1y1 * u;
466 aP.ChangeCoord() -= UV001 * u1 * v1;
467 aP.ChangeCoord() -= UV101 * u * v1;
468 aP.ChangeCoord() -= UV011 * u1 * v;
469 aP.ChangeCoord() -= UV111 * u * v;
470 meshDS->SetNodeOnFace((SMDS_MeshNode*)n, topfaceID, aP.X(), aP.Y());
473 if (!myErrorStatus->IsOK()) {
474 MESSAGE("StdMeshers_Penta_3D::MakeNodes() ");
484 //=======================================================================
485 //function : FindNodeOnShape
487 //=======================================================================
489 void StdMeshers_Penta_3D::FindNodeOnShape(const TopoDS_Shape& aS,
490 const gp_XYZ& aParams,
492 StdMeshers_TNode& aTN)
494 double aX, aY, aZ, aD, aTol2, minD;
497 SMESH_Mesh* pMesh = GetMesh();
498 aTol2 = myTol3D*myTol3D;
500 SMDS_MeshNode* pNode = NULL;
502 if ( aS.ShapeType() == TopAbs_FACE ||
503 aS.ShapeType() == TopAbs_EDGE ) {
504 // find a face ID to which aTN belongs to
506 if ( aS.ShapeType() == TopAbs_FACE )
507 faceID = myBlock.ShapeID( aS );
508 else { // edge maybe vertical or top horizontal
509 gp_XYZ aCoord = aParams;
510 if ( aCoord.Z() == 1. )
511 aCoord.SetZ( 0.5 ); // move from top down
513 aCoord.SetX( 0.5 ); // move along X
514 faceID = SMESH_Block::GetShapeIDByParams( aCoord );
516 ASSERT( SMESH_Block::IsFaceID( faceID ));
517 int fIndex = SMESH_Block::ShapeIndex( faceID );
518 StdMeshers_IJNodeMap & ijNodes = myWallNodesMaps[ fIndex ];
519 // look for a base node in ijNodes
520 const SMDS_MeshNode* baseNode = pMesh->GetMeshDS()->FindNode( aTN.BaseNodeID() );
521 StdMeshers_IJNodeMap::const_iterator par_nVec = ijNodes.begin();
522 for ( ; par_nVec != ijNodes.end(); par_nVec++ )
523 if ( par_nVec->second[ 0 ] == baseNode ) {
524 pNode = (SMDS_MeshNode*)par_nVec->second.at( z );
530 myBlock.Point(aParams, aS, aP1);
532 SMDS_NodeIteratorPtr ite=
533 pMesh->GetSubMeshContaining(aS)->GetSubMeshDS()->GetNodes();
535 const SMDS_MeshNode* aNode = ite->next();
536 if(myTool->IsMedium(aNode))
541 aP2.SetCoord(aX, aY, aZ);
542 aD=(double)aP1.SquareDistance(aP2);
543 //printf("** D=%lf ", aD, aTol2);
545 pNode=(SMDS_MeshNode*)aNode;
555 //aTN.SetNode(pNode);
556 //MESSAGE("StdMeshers_Penta_3D::FindNodeOnShape(), can not find the node");
557 //myErrorStatus=11; // can not find the node;
561 //=======================================================================
562 //function : SetHorizEdgeXYZ
564 //=======================================================================
566 double StdMeshers_Penta_3D::SetHorizEdgeXYZ(const gp_XYZ& aBaseNodeParams,
568 vector<const SMDS_MeshNode*>*& aCol1,
569 vector<const SMDS_MeshNode*>*& aCol2)
571 // find base and top edges of the face
572 enum { BASE = 0, TOP };
573 vector< int > edgeVec; // 0-base, 1-top
574 SMESH_Block::GetFaceEdgesIDs( aFaceID, edgeVec );
576 int coord = SMESH_Block::GetCoordIndOnEdge( edgeVec[ BASE ] );
577 bool isForward = myBlock.IsForwadEdge( edgeVec[ BASE ] );
579 double param = aBaseNodeParams.Coord( coord );
583 // look for columns around param
584 StdMeshers_IJNodeMap & ijNodes =
585 myWallNodesMaps[ SMESH_Block::ShapeIndex( aFaceID )];
586 StdMeshers_IJNodeMap::iterator par_nVec_1 = ijNodes.begin();
587 while ( par_nVec_1->first < param )
589 StdMeshers_IJNodeMap::iterator par_nVec_2 = par_nVec_1;
592 if ( par_nVec_1 != ijNodes.begin() ) {
594 r = ( param - par_nVec_1->first ) / ( par_nVec_2->first - par_nVec_1->first );
596 aCol1 = & par_nVec_1->second;
597 aCol2 = & par_nVec_2->second;
601 // this variant is better for cases with curved edges and
602 // different nodes distribution on top and base edges
603 const SMDS_MeshNode* n1 = aCol1->back();
604 const SMDS_MeshNode* n2 = aCol2->back();
605 gp_XYZ xyz1( n1->X(), n1->Y(), n1->Z() );
606 gp_XYZ xyz2( n2->X(), n2->Y(), n2->Z() );
607 myShapeXYZ[ edgeVec[ 1 ] ] = ( 1. - r ) * xyz1 + r * xyz2;
610 // this variant is better for other cases
611 // SMESH_MesherHelper helper( *GetMesh() );
612 // const TopoDS_Edge & edge = TopoDS::Edge( myBlock.Shape( edgeVec[ TOP ]));
613 // double u1 = helper.GetNodeU( edge, n1 );
614 // double u2 = helper.GetNodeU( edge, n2 );
615 // double u = ( 1. - r ) * u1 + r * u2;
616 // gp_XYZ topNodeParams;
617 // myBlock.Block().EdgeParameters( edgeVec[ TOP ], u, topNodeParams );
618 // myBlock.Block().EdgePoint( edgeVec[ TOP ],
620 // myShapeXYZ[ edgeVec[ TOP ]]);
624 myBlock.Block().EdgePoint( edgeVec[ BASE ],
626 myShapeXYZ[ edgeVec[ BASE ]]);
631 //=======================================================================
632 //function : MakeVolumeMesh
634 //=======================================================================
635 void StdMeshers_Penta_3D::MakeVolumeMesh()
637 int i, j, ij, ik, i1, i2, aSSID;
639 SMESH_Mesh* pMesh = GetMesh();
640 SMESHDS_Mesh* meshDS = pMesh->GetMeshDS();
642 int shapeID = meshDS->ShapeToIndex( myShape );
644 // 1. Set Node In Volume
646 for (i=1; i<ik; ++i){
647 for (j=0; j<myJSize; ++j){
649 const StdMeshers_TNode& aTN = myTNodes[ij];
650 aSSID=aTN.ShapeSupportID();
651 if (aSSID==SMESH_Block::ID_NONE) {
652 SMDS_MeshNode* aNode = (SMDS_MeshNode*)aTN.Node();
653 meshDS->SetNodeInVolume(aNode, shapeID);
658 // 2. Make pentahedrons
660 vector<const SMDS_MeshNode*> aN;
662 SMDS_ElemIteratorPtr itf, aItNodes;
664 const TopoDS_Face& aFxy0=
665 TopoDS::Face(myBlock.Shape(SMESH_Block::ID_Fxy0));
666 SMESH_subMesh *aSubMesh0 = pMesh->GetSubMeshContaining(aFxy0);
667 SMESHDS_SubMesh *aSM0 = aSubMesh0->GetSubMeshDS();
669 itf = aSM0->GetElements();
671 const SMDS_MeshElement* pE0 = itf->next();
673 int nbFaceNodes = pE0->NbNodes();
674 if(myCreateQuadratic)
675 nbFaceNodes = nbFaceNodes/2;
676 if ( aN.size() < nbFaceNodes * 2 )
677 aN.resize( nbFaceNodes * 2 );
679 for ( k=0; k<nbFaceNodes; ++k ) {
680 const SMDS_MeshNode* pNode = pE0->GetNode(k);
681 // if(myTool->IsMedium(pNode))
683 aID0 = pNode->GetID();
684 aJ[k] = GetIndexOnLayer(aID0);
685 if (!myErrorStatus->IsOK()) {
686 MESSAGE("StdMeshers_Penta_3D::MakeVolumeMesh");
692 for (i=0; i<ik; ++i) {
695 for(j=0; j<nbFaceNodes; ++j) {
696 ij = i1*myJSize+aJ[j];
697 const StdMeshers_TNode& aTN1 = myTNodes[ij];
698 const SMDS_MeshNode* aN1 = aTN1.Node();
702 const StdMeshers_TNode& aTN2 = myTNodes[ij];
703 const SMDS_MeshNode* aN2 = aTN2.Node();
704 aN[j+nbFaceNodes] = aN2;
706 // check if volume orientation will be ok
708 SMDS_VolumeTool vTool;
709 switch ( nbFaceNodes ) {
711 SMDS_VolumeOfNodes tmpVol (aN[0], aN[1], aN[2],
712 aN[3], aN[4], aN[5]);
713 vTool.Set( &tmpVol );
717 SMDS_VolumeOfNodes tmpVol(aN[0], aN[1], aN[2], aN[3],
718 aN[4], aN[5], aN[6], aN[7]);
719 vTool.Set( &tmpVol );
725 forward = vTool.IsForward();
728 SMDS_MeshVolume* aV = 0;
729 switch ( nbFaceNodes ) {
732 //aV = meshDS->AddVolume(aN[0], aN[1], aN[2],
733 // aN[3], aN[4], aN[5]);
734 aV = myTool->AddVolume(aN[0], aN[1], aN[2], aN[3], aN[4], aN[5]);
737 //aV = meshDS->AddVolume(aN[0], aN[2], aN[1],
738 // aN[3], aN[5], aN[4]);
739 aV = myTool->AddVolume(aN[0], aN[2], aN[1], aN[3], aN[5], aN[4]);
744 //aV = meshDS->AddVolume(aN[0], aN[1], aN[2], aN[3],
745 // aN[4], aN[5], aN[6], aN[7]);
746 aV = myTool->AddVolume(aN[0], aN[1], aN[2], aN[3],
747 aN[4], aN[5], aN[6], aN[7]);
750 //aV = meshDS->AddVolume(aN[0], aN[3], aN[2], aN[1],
751 // aN[4], aN[7], aN[6], aN[5]);
752 aV = myTool->AddVolume(aN[0], aN[3], aN[2], aN[1],
753 aN[4], aN[7], aN[6], aN[5]);
759 meshDS->SetMeshElementOnShape(aV, shapeID);
764 //=======================================================================
765 //function : MakeMeshOnFxy1
767 //=======================================================================
768 void StdMeshers_Penta_3D::MakeMeshOnFxy1()
770 int aID0, aJ, aLevel, ij, aNbNodes, k;
772 SMDS_NodeIteratorPtr itn;
773 SMDS_ElemIteratorPtr itf, aItNodes;
774 SMDSAbs_ElementType aElementType;
776 const TopoDS_Face& aFxy0=
777 TopoDS::Face(myBlock.Shape(SMESH_Block::ID_Fxy0));
778 const TopoDS_Face& aFxy1=
779 TopoDS::Face(myBlock.Shape(SMESH_Block::ID_Fxy1));
781 SMESH_Mesh* pMesh = GetMesh();
782 SMESHDS_Mesh * meshDS = pMesh->GetMeshDS();
784 SMESH_subMesh *aSubMesh1 = pMesh->GetSubMeshContaining(aFxy1);
785 SMESH_subMesh *aSubMesh0 = pMesh->GetSubMeshContaining(aFxy0);
786 SMESHDS_SubMesh *aSM0 = aSubMesh0->GetSubMeshDS();
788 // set nodes on aFxy1
790 itn = aSM0->GetNodes();
791 aNbNodes = aSM0->NbNodes();
792 //printf("** aNbNodes=%d\n", aNbNodes);
793 myTool->SetSubShape( aFxy1 ); // to set medium nodes to aFxy1
795 // set elements on aFxy1
796 vector<const SMDS_MeshNode*> aNodes1;
798 itf = aSM0->GetElements();
800 const SMDS_MeshElement* pE0 = itf->next();
801 aElementType = pE0->GetType();
802 if (!aElementType==SMDSAbs_Face) {
805 aNbNodes = pE0->NbNodes();
806 if(myCreateQuadratic)
807 aNbNodes = aNbNodes/2;
808 if ( aNodes1.size() < aNbNodes )
809 aNodes1.resize( aNbNodes );
811 k = aNbNodes-1; // reverse a face
812 aItNodes = pE0->nodesIterator();
813 while (aItNodes->more()) {
814 const SMDS_MeshNode* pNode =
815 static_cast<const SMDS_MeshNode*> (aItNodes->next());
816 if(myTool->IsMedium(pNode))
818 aID0 = pNode->GetID();
819 aJ = GetIndexOnLayer(aID0);
820 if (!myErrorStatus->IsOK()) {
821 MESSAGE("StdMeshers_Penta_3D::MakeMeshOnFxy1() ");
825 ij = aLevel*myJSize + aJ;
826 const StdMeshers_TNode& aTN1 = myTNodes[ij];
827 const SMDS_MeshNode* aN1 = aTN1.Node();
831 SMDS_MeshFace * face = 0;
832 switch ( aNbNodes ) {
834 face = myTool->AddFace(aNodes1[0], aNodes1[1], aNodes1[2]);
837 face = myTool->AddFace(aNodes1[0], aNodes1[1], aNodes1[2], aNodes1[3]);
842 meshDS->SetMeshElementOnShape(face, aFxy1);
844 myTool->SetSubShape( myShape );
846 // update compute state of top face submesh
847 aSubMesh1->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
849 // assure that mesh on the top face will be cleaned when it is cleaned
850 // on the bottom face
851 SMESH_subMesh* volSM = pMesh->GetSubMesh( myTool->GetSubShape() );
852 volSM->SetEventListener( new SMESH_subMeshEventListener(true, // deletable by SMESH_subMesh
853 "StdMeshers_Penta_3D"),
854 SMESH_subMeshEventListenerData::MakeData( aSubMesh1 ),
855 aSubMesh0 ); // translate CLEAN event of aSubMesh0 to aSubMesh1
858 //=======================================================================
859 //function : ClearMeshOnFxy1
861 //=======================================================================
862 void StdMeshers_Penta_3D::ClearMeshOnFxy1()
864 SMESH_subMesh* aSubMesh;
865 SMESH_Mesh* pMesh=GetMesh();
867 const TopoDS_Shape& aFxy1=myBlock.Shape(SMESH_Block::ID_Fxy1);
868 aSubMesh = pMesh->GetSubMeshContaining(aFxy1);
870 aSubMesh->ComputeStateEngine( SMESH_subMesh::CLEAN );
873 //=======================================================================
874 //function : GetIndexOnLayer
876 //=======================================================================
877 int StdMeshers_Penta_3D::GetIndexOnLayer(const int aID)
880 StdMeshers_IteratorOfDataMapOfIntegerInteger aMapIt;
882 aMapIt=myConnectingMap.find(aID);
883 if (aMapIt==myConnectingMap.end()) {
884 myErrorStatus->myName = 200;
885 myErrorStatus->myComment = "Internal error of StdMeshers_Penta_3D";
892 //=======================================================================
893 //function : MakeConnectingMap
895 //=======================================================================
896 void StdMeshers_Penta_3D::MakeConnectingMap()
900 for (j=0; j<myJSize; ++j) {
901 const StdMeshers_TNode& aBN=myTNodes[j];
902 aBNID=aBN.BaseNodeID();
903 myConnectingMap[aBNID]=j;
907 //=======================================================================
908 //function : CreateNode
910 //=======================================================================
911 void StdMeshers_Penta_3D::CreateNode(const bool bIsUpperLayer,
912 const gp_XYZ& aParams,
913 StdMeshers_TNode& aTN)
919 SMDS_MeshNode* pNode=NULL;
922 // if (bIsUpperLayer) {
923 // // point on face Fxy1
924 // const TopoDS_Shape& aS=myBlock.Shape(SMESH_Block::ID_Fxy1);
925 // myBlock.Point(aParams, aS, aP);
928 // // point inside solid
929 // myBlock.Point(aParams, aP);
932 double u = aParams.X(), v = aParams.Y();
933 double u1 = ( 1. - u ), v1 = ( 1. - v );
934 aP.ChangeCoord() = myShapeXYZ[ SMESH_Block::ID_Ex01 ] * v1;
935 aP.ChangeCoord() += myShapeXYZ[ SMESH_Block::ID_Ex11 ] * v;
936 aP.ChangeCoord() += myShapeXYZ[ SMESH_Block::ID_E0y1 ] * u1;
937 aP.ChangeCoord() += myShapeXYZ[ SMESH_Block::ID_E1y1 ] * u;
939 aP.ChangeCoord() -= myShapeXYZ[ SMESH_Block::ID_V001 ] * u1 * v1;
940 aP.ChangeCoord() -= myShapeXYZ[ SMESH_Block::ID_V101 ] * u * v1;
941 aP.ChangeCoord() -= myShapeXYZ[ SMESH_Block::ID_V011 ] * u1 * v;
942 aP.ChangeCoord() -= myShapeXYZ[ SMESH_Block::ID_V111 ] * u * v;
945 SMESH_Block::ShellPoint( aParams, myShapeXYZ, aP.ChangeCoord() );
948 // iErr=myBlock.ErrorStatus();
950 // myErrorStatus=12; // can not find the node point;
954 aX=aP.X(); aY=aP.Y(); aZ=aP.Z();
956 SMESH_Mesh* pMesh = GetMesh();
957 SMESHDS_Mesh* pMeshDS = pMesh->GetMeshDS();
959 pNode = pMeshDS->AddNode(aX, aY, aZ);
964 //=======================================================================
965 //function : ShapeSupportID
967 //=======================================================================
968 void StdMeshers_Penta_3D::ShapeSupportID(const bool bIsUpperLayer,
969 const SMESH_Block::TShapeID aBNSSID,
970 SMESH_Block::TShapeID& aSSID)
973 case SMESH_Block::ID_V000:
974 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_V001 : SMESH_Block::ID_E00z;
976 case SMESH_Block::ID_V100:
977 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_V101 : SMESH_Block::ID_E10z;
979 case SMESH_Block::ID_V110:
980 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_V111 : SMESH_Block::ID_E11z;
982 case SMESH_Block::ID_V010:
983 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_V011 : SMESH_Block::ID_E01z;
985 case SMESH_Block::ID_Ex00:
986 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_Ex01 : SMESH_Block::ID_Fx0z;
988 case SMESH_Block::ID_Ex10:
989 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_Ex11 : SMESH_Block::ID_Fx1z;
991 case SMESH_Block::ID_E0y0:
992 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_E0y1 : SMESH_Block::ID_F0yz;
994 case SMESH_Block::ID_E1y0:
995 aSSID=(bIsUpperLayer) ? SMESH_Block::ID_E1y1 : SMESH_Block::ID_F1yz;
997 case SMESH_Block::ID_Fxy0:
998 aSSID=SMESH_Block::ID_NONE;//(bIsUpperLayer) ? Shape_ID_Fxy1 : Shape_ID_NONE;
1001 aSSID=SMESH_Block::ID_NONE;
1002 myErrorStatus->myName=10; // Can not find supporting shape ID
1003 myErrorStatus->myComment = "Internal error of StdMeshers_Penta_3D";
1008 //=======================================================================
1009 //function : MakeBlock
1011 //=======================================================================
1012 void StdMeshers_Penta_3D::MakeBlock()
1015 int i, j, iNbEV, iNbE, iErr, iCnt, iNbNodes, iNbF;
1017 TopoDS_Vertex aV000, aV001;
1019 TopTools_IndexedDataMapOfShapeListOfShape aMVES;
1020 TopTools_IndexedMapOfShape aME ,aMEV, aM;
1021 TopTools_ListIteratorOfListOfShape aIt;
1023 TopExp::MapShapes(myShape, TopAbs_FACE, aM);
1025 // 0. Find triangulated face aFTr
1026 SMDSAbs_ElementType aElementType;
1027 SMESH_Mesh* pMesh=GetMesh();
1031 for (i=1; i<=iNbF; ++i) {
1032 const TopoDS_Shape& aF = aM(i);
1033 SMESH_subMesh *aSubMesh = pMesh->GetSubMeshContaining(aF);
1035 SMESHDS_SubMesh *aSM = aSubMesh->GetSubMeshDS();
1036 SMDS_ElemIteratorPtr itf = aSM->GetElements();
1037 while(itf->more()) {
1038 const SMDS_MeshElement * pElement = itf->next();
1039 aElementType = pElement->GetType();
1040 if (aElementType==SMDSAbs_Face) {
1041 iNbNodes = pElement->NbNodes();
1042 if ( iNbNodes==3 || (pElement->IsQuadratic() && iNbNodes==6) ) {
1047 // The current algorithm fails if there is more that one
1048 // face wich contains triangles ...
1049 // In that case, replace return by break to try another
1050 // method (coded in "if (iCnt != 1) { ... }")
1052 // MESSAGE("StdMeshers_Penta_3D::MakeBlock() ");
1053 // myErrorStatus=5; // more than one face has triangulation
1065 // The current algorithm fails if "iCnt != 1", the case "iCnt == 0"
1066 // was not reached 'cause it was not called from Hexa_3D ... Now it
1067 // can occurs and in my opinion, it is the most common case.
1070 // The suggested algorithm is the following :
1072 // o Check that nb_of_faces == 6 and nb_of_edges == 12
1073 // then the shape is tologically equivalent to a box
1074 // o In a box, there are three set of four // edges ...
1075 // In the cascade notation, it seems to be the edges
1080 // o For each one of this set, check if the four edges
1081 // have the same number of element.
1082 // o If so, check if the "corresponding" // faces contains
1083 // only quads. It's the faces numbered:
1087 // o If so, check if the opposite edges of each // faces
1088 // have the same number of elements. It is the edges
1090 // - 2 and 4, 6 and 8, 9 and 10, 11 and 12
1091 // - 1 and 3, 5 and 7, 9 and 11, 10 and 12
1092 // - 1 and 5, 3 and 7, 4 and 8, 2 and 6
1093 // o If so, check if the two other faces have the same
1094 // number of elements. It is the faces numbered:
1098 // This test should be improved to test if the nodes
1099 // of the two faces are really "en face".
1100 // o If so, one of the two faces is a candidate to an extrusion,
1101 // It is the faces numbered :
1105 // o Finally, if there is only one candidate, let do the
1106 // extrusion job for the corresponding face
1110 int iNbF = aM.Extent();
1113 int nb_f1 = pMesh->GetSubMeshContaining(aM(1))->GetSubMeshDS()->NbElements();
1114 int nb_f2 = pMesh->GetSubMeshContaining(aM(2))->GetSubMeshDS()->NbElements();
1115 int nb_f3 = pMesh->GetSubMeshContaining(aM(3))->GetSubMeshDS()->NbElements();
1116 int nb_f4 = pMesh->GetSubMeshContaining(aM(4))->GetSubMeshDS()->NbElements();
1117 int nb_f5 = pMesh->GetSubMeshContaining(aM(5))->GetSubMeshDS()->NbElements();
1118 int nb_f6 = pMesh->GetSubMeshContaining(aM(6))->GetSubMeshDS()->NbElements();
1120 int has_only_quad_f1 = 1;
1121 int has_only_quad_f2 = 1;
1122 int has_only_quad_f3 = 1;
1123 int has_only_quad_f4 = 1;
1124 int has_only_quad_f5 = 1;
1125 int has_only_quad_f6 = 1;
1127 for (i=1; i<=iNbF; ++i) {
1129 const TopoDS_Shape& aF = aM(i);
1130 SMESH_subMesh *aSubMesh = pMesh->GetSubMeshContaining(aF);
1131 SMESHDS_SubMesh *aSM = aSubMesh->GetSubMeshDS();
1132 SMDS_ElemIteratorPtr itf = aSM->GetElements();
1133 while(itf->more()) {
1134 const SMDS_MeshElement * pElement = itf->next();
1135 aElementType = pElement->GetType();
1136 if (aElementType==SMDSAbs_Face) {
1137 iNbNodes = pElement->NbNodes();
1138 if ( iNbNodes!=4 ) {
1144 if (i==1) has_only_quad_f1 = ok ;
1145 if (i==2) has_only_quad_f2 = ok ;
1146 if (i==3) has_only_quad_f3 = ok ;
1147 if (i==4) has_only_quad_f4 = ok ;
1148 if (i==5) has_only_quad_f5 = ok ;
1149 if (i==6) has_only_quad_f6 = ok ;
1152 TopTools_IndexedMapOfShape aE;
1153 TopExp::MapShapes(myShape, TopAbs_EDGE, aE);
1154 int iNbE = aE.Extent();
1157 int nb_e01 = pMesh->GetSubMeshContaining(aE(1))->GetSubMeshDS()->NbElements();
1158 int nb_e02 = pMesh->GetSubMeshContaining(aE(2))->GetSubMeshDS()->NbElements();
1159 int nb_e03 = pMesh->GetSubMeshContaining(aE(3))->GetSubMeshDS()->NbElements();
1160 int nb_e04 = pMesh->GetSubMeshContaining(aE(4))->GetSubMeshDS()->NbElements();
1161 int nb_e05 = pMesh->GetSubMeshContaining(aE(5))->GetSubMeshDS()->NbElements();
1162 int nb_e06 = pMesh->GetSubMeshContaining(aE(6))->GetSubMeshDS()->NbElements();
1163 int nb_e07 = pMesh->GetSubMeshContaining(aE(7))->GetSubMeshDS()->NbElements();
1164 int nb_e08 = pMesh->GetSubMeshContaining(aE(8))->GetSubMeshDS()->NbElements();
1165 int nb_e09 = pMesh->GetSubMeshContaining(aE(9))->GetSubMeshDS()->NbElements();
1166 int nb_e10 = pMesh->GetSubMeshContaining(aE(10))->GetSubMeshDS()->NbElements();
1167 int nb_e11 = pMesh->GetSubMeshContaining(aE(11))->GetSubMeshDS()->NbElements();
1168 int nb_e12 = pMesh->GetSubMeshContaining(aE(12))->GetSubMeshDS()->NbElements();
1172 if ( (nb_e01==nb_e03) && (nb_e03==nb_e05) && (nb_e05==nb_e07) ) {
1173 if ( has_only_quad_f1 && has_only_quad_f2 && has_only_quad_f3 && has_only_quad_f4 ) {
1174 if ( (nb_e09==nb_e10) && (nb_e08==nb_e06) && (nb_e11==nb_e12) && (nb_e04==nb_e02) ) {
1182 if ( (nb_e02==nb_e04) && (nb_e04==nb_e06) && (nb_e06==nb_e08) ) {
1183 if ( has_only_quad_f1 && has_only_quad_f2 && has_only_quad_f5 && has_only_quad_f6 ) {
1184 if ( (nb_e01==nb_e03) && (nb_e10==nb_e12) && (nb_e05==nb_e07) && (nb_e09==nb_e11) ) {
1192 if ( (nb_e09==nb_e10) && (nb_e10==nb_e11) && (nb_e11==nb_e12) ) {
1193 if ( has_only_quad_f3 && has_only_quad_f4 && has_only_quad_f5 && has_only_quad_f6 ) {
1194 if ( (nb_e01==nb_e05) && (nb_e02==nb_e06) && (nb_e03==nb_e07) && (nb_e04==nb_e08) ) {
1210 myErrorStatus->myName=5; // more than one face has triangulation
1211 myErrorStatus->myComment="Incorrect input mesh";
1217 // 1. Vetrices V00, V001;
1219 TopExp::MapShapes(aFTr, TopAbs_EDGE, aME);
1220 TopExp::MapShapesAndAncestors(myShape, TopAbs_VERTEX, TopAbs_EDGE, aMVES);
1222 // 1.1 Base vertex V000
1223 iNbE = aME.Extent();
1224 if (iNbE!= NB_WALL_FACES ){
1225 MESSAGE("StdMeshers_Penta_3D::MakeBlock() ");
1226 myErrorStatus->myName=7; // too few edges are in base face aFTr
1227 myErrorStatus->myComment=SMESH_Comment("Not a quadrilateral face #")
1228 <<pMesh->GetMeshDS()->ShapeToIndex( aFTr )<<": "<<iNbE<<" edges" ;
1231 const TopoDS_Edge& aE1=TopoDS::Edge(aME(1));
1232 aV000=TopExp::FirstVertex(aE1);
1234 const TopTools_ListOfShape& aLE=aMVES.FindFromKey(aV000);
1235 aIt.Initialize(aLE);
1236 for (; aIt.More(); aIt.Next()) {
1237 const TopoDS_Shape& aEx=aIt.Value();
1240 iNbEV=aMEV.Extent();
1242 MESSAGE("StdMeshers_Penta_3D::MakeBlock() ");
1243 myErrorStatus->myName=7; // too few edges meet in base vertex
1244 myErrorStatus->myComment=SMESH_Comment("3 edges must share vertex #")
1245 <<pMesh->GetMeshDS()->ShapeToIndex( aV000 )<<" but there are "<<iNbEV<<" edges";
1251 for (j=1; j<=iNbEV; ++j) {
1252 const TopoDS_Shape& aEx=aMEV(j);
1253 if (!aME.Contains(aEx)) {
1254 TopoDS_Vertex aV[2];
1256 const TopoDS_Edge& aE=TopoDS::Edge(aEx);
1257 TopExp::Vertices(aE, aV[0], aV[1]);
1258 for (i=0; i<2; ++i) {
1259 if (!aV[i].IsSame(aV000)) {
1269 MESSAGE("StdMeshers_Penta_3D::MakeBlock() ");
1270 myErrorStatus->myName=8; // can not find reper V001
1271 myErrorStatus->myComment=SMESH_Comment("Can't find opposite vertex for vertex #")
1272 <<pMesh->GetMeshDS()->ShapeToIndex( aV000 );
1276 //gp_Pnt aP000, aP001;
1278 //aP000=BRep_Tool::Pnt(TopoDS::Vertex(aV000));
1279 //printf("*** aP000 { %lf, %lf, %lf }\n", aP000.X(), aP000.Y(), aP000.Z());
1280 //aP001=BRep_Tool::Pnt(TopoDS::Vertex(aV001));
1281 //printf("*** aP001 { %lf, %lf, %lf }\n", aP001.X(), aP001.Y(), aP001.Z());
1285 TopExp::MapShapes(myShape, TopAbs_SHELL, aME);
1288 MESSAGE("StdMeshers_Penta_3D::MakeBlock() ");
1289 myErrorStatus->myName=9; // number of shells in source shape !=1
1290 myErrorStatus->myComment=SMESH_Comment("Unexpected nb of shells ")<<iNbE;
1295 const TopoDS_Shell& aShell=TopoDS::Shell(aME(1));
1296 myBlock.Load(aShell, aV000, aV001);
1297 iErr = myBlock.ErrorStatus();
1299 MESSAGE("StdMeshers_Penta_3D::MakeBlock() ");
1300 myErrorStatus=myBlock.GetError(); // SMESHBlock: Load operation failed
1304 //=======================================================================
1305 //function : CheckData
1307 //=======================================================================
1308 void StdMeshers_Penta_3D::CheckData()
1311 int iNbEx[]={8, 12, 6};
1313 TopAbs_ShapeEnum aST;
1314 TopAbs_ShapeEnum aSTEx[]={
1315 TopAbs_VERTEX, TopAbs_EDGE, TopAbs_FACE
1317 TopTools_IndexedMapOfShape aM;
1319 if (myShape.IsNull()){
1320 MESSAGE("StdMeshers_Penta_3D::CheckData() ");
1321 myErrorStatus->myName=2; // null shape
1322 myErrorStatus->myComment="Null shape";
1326 aST=myShape.ShapeType();
1327 if (!(aST==TopAbs_SOLID || aST==TopAbs_SHELL)) {
1328 MESSAGE("StdMeshers_Penta_3D::CheckData() ");
1329 myErrorStatus->myName=3; // not compatible type of shape
1330 myErrorStatus->myComment=SMESH_Comment("Wrong shape type (TopAbs_ShapeEnum) ")<<aST;
1334 for (i=0; i<3; ++i) {
1336 TopExp::MapShapes(myShape, aSTEx[i], aM);
1339 MESSAGE("StdMeshers_Penta_3D::CheckData() ");
1340 myErrorStatus->myName=4; // number of sub-shape is not compatible
1341 myErrorStatus->myComment="Wrong number of sub-shapes of a block";
1347 //=======================================================================
1348 //function : LoadIJNodes
1349 //purpose : Load nodes bound to theFace into column (vectors) and rows
1351 // The value of theIJNodes map is a vector of ordered nodes so
1352 // that the 0-the one lies on theBaseEdge.
1353 // The key of theIJNodes map is a normalized parameter of each
1354 // 0-the node on theBaseEdge.
1355 //=======================================================================
1357 bool StdMeshers_Penta_3D::LoadIJNodes(StdMeshers_IJNodeMap & theIJNodes,
1358 const TopoDS_Face& theFace,
1359 const TopoDS_Edge& theBaseEdge,
1360 SMESHDS_Mesh* theMesh)
1362 // get vertices of theBaseEdge
1363 TopoDS_Vertex vfb, vlb, vft; // first and last, bottom and top vertices
1364 TopoDS_Edge eFrw = TopoDS::Edge( theBaseEdge.Oriented( TopAbs_FORWARD ));
1365 TopExp::Vertices( eFrw, vfb, vlb );
1367 // find the other edges of theFace and orientation of e1
1368 TopoDS_Edge e1, e2, eTop;
1369 bool rev1, CumOri = false;
1370 TopExp_Explorer exp( theFace, TopAbs_EDGE );
1372 for ( ; exp.More(); exp.Next() ) {
1373 if ( ++nbEdges > NB_WALL_FACES ) {
1374 return false; // more than 4 edges in theFace
1376 TopoDS_Edge e = TopoDS::Edge( exp.Current() );
1377 if ( theBaseEdge.IsSame( e ))
1379 TopoDS_Vertex vCommon;
1380 if ( !TopExp::CommonVertex( theBaseEdge, e, vCommon ))
1382 else if ( vCommon.IsSame( vfb )) {
1384 vft = TopExp::LastVertex( e1, CumOri );
1385 rev1 = vfb.IsSame( vft );
1387 vft = TopExp::FirstVertex( e1, CumOri );
1392 if ( nbEdges < NB_WALL_FACES ) {
1393 return false; // less than 4 edges in theFace
1396 // submeshes corresponding to shapes
1397 SMESHDS_SubMesh* smFace = theMesh->MeshElements( theFace );
1398 SMESHDS_SubMesh* smb = theMesh->MeshElements( theBaseEdge );
1399 SMESHDS_SubMesh* smt = theMesh->MeshElements( eTop );
1400 SMESHDS_SubMesh* sm1 = theMesh->MeshElements( e1 );
1401 SMESHDS_SubMesh* sm2 = theMesh->MeshElements( e2 );
1402 SMESHDS_SubMesh* smVfb = theMesh->MeshElements( vfb );
1403 SMESHDS_SubMesh* smVlb = theMesh->MeshElements( vlb );
1404 SMESHDS_SubMesh* smVft = theMesh->MeshElements( vft );
1405 if (!smFace || !smb || !smt || !sm1 || !sm2 || !smVfb || !smVlb || !smVft ) {
1406 MESSAGE( "NULL submesh " <<smFace<<" "<<smb<<" "<<smt<<" "<<
1407 sm1<<" "<<sm2<<" "<<smVfb<<" "<<smVlb<<" "<<smVft);
1410 if ( smb->NbNodes() != smt->NbNodes() || sm1->NbNodes() != sm2->NbNodes() ) {
1411 MESSAGE(" Diff nb of nodes on opposite edges" );
1414 if (smVfb->NbNodes() != 1 || smVlb->NbNodes() != 1 || smVft->NbNodes() != 1) {
1415 MESSAGE("Empty submesh of vertex");
1418 if ( sm1->NbNodes() * smb->NbNodes() != smFace->NbNodes() ) {
1419 // check quadratic case
1420 if ( myCreateQuadratic ) {
1421 int n1 = sm1->NbNodes()/2;
1422 int n2 = smb->NbNodes()/2;
1423 int n3 = sm1->NbNodes() - n1;
1424 int n4 = smb->NbNodes() - n2;
1425 int nf = sm1->NbNodes()*smb->NbNodes() - n3*n4;
1426 if( nf != smFace->NbNodes() ) {
1427 MESSAGE( "Wrong nb face nodes: " <<
1428 sm1->NbNodes()<<" "<<smb->NbNodes()<<" "<<smFace->NbNodes());
1433 MESSAGE( "Wrong nb face nodes: " <<
1434 sm1->NbNodes()<<" "<<smb->NbNodes()<<" "<<smFace->NbNodes());
1439 int vsize = sm1->NbNodes() + 2;
1440 int hsize = smb->NbNodes() + 2;
1441 if(myCreateQuadratic) {
1442 vsize = vsize - sm1->NbNodes()/2 -1;
1443 hsize = hsize - smb->NbNodes()/2 -1;
1446 // load nodes from theBaseEdge
1448 set<const SMDS_MeshNode*> loadedNodes;
1449 const SMDS_MeshNode* nullNode = 0;
1451 vector<const SMDS_MeshNode*> & nVecf = theIJNodes[ 0.];
1452 nVecf.resize( vsize, nullNode );
1453 loadedNodes.insert( nVecf[ 0 ] = smVfb->GetNodes()->next() );
1455 vector<const SMDS_MeshNode*> & nVecl = theIJNodes[ 1.];
1456 nVecl.resize( vsize, nullNode );
1457 loadedNodes.insert( nVecl[ 0 ] = smVlb->GetNodes()->next() );
1460 BRep_Tool::Range( eFrw, f, l );
1461 double range = l - f;
1462 SMDS_NodeIteratorPtr nIt = smb->GetNodes();
1463 const SMDS_MeshNode* node;
1464 while ( nIt->more() ) {
1466 if(myTool->IsMedium(node))
1468 const SMDS_EdgePosition* pos =
1469 dynamic_cast<const SMDS_EdgePosition*>( node->GetPosition() );
1473 double u = ( pos->GetUParameter() - f ) / range;
1474 vector<const SMDS_MeshNode*> & nVec = theIJNodes[ u ];
1475 nVec.resize( vsize, nullNode );
1476 loadedNodes.insert( nVec[ 0 ] = node );
1478 if ( theIJNodes.size() != hsize ) {
1479 MESSAGE( "Wrong node positions on theBaseEdge" );
1483 // load nodes from e1
1485 map< double, const SMDS_MeshNode*> sortedNodes; // sort by param on edge
1486 nIt = sm1->GetNodes();
1487 while ( nIt->more() ) {
1489 if(myTool->IsMedium(node))
1491 const SMDS_EdgePosition* pos =
1492 dynamic_cast<const SMDS_EdgePosition*>( node->GetPosition() );
1496 sortedNodes.insert( make_pair( pos->GetUParameter(), node ));
1498 loadedNodes.insert( nVecf[ vsize - 1 ] = smVft->GetNodes()->next() );
1499 map< double, const SMDS_MeshNode*>::iterator u_n = sortedNodes.begin();
1500 int row = rev1 ? vsize - 1 : 0;
1501 for ( ; u_n != sortedNodes.end(); u_n++ ) {
1504 loadedNodes.insert( nVecf[ row ] = u_n->second );
1507 // try to load the rest nodes
1509 // get all faces from theFace
1510 TIDSortedElemSet allFaces, foundFaces;
1511 SMDS_ElemIteratorPtr eIt = smFace->GetElements();
1512 while ( eIt->more() ) {
1513 const SMDS_MeshElement* e = eIt->next();
1514 if ( e->GetType() == SMDSAbs_Face )
1515 allFaces.insert( e );
1517 // Starting from 2 neighbour nodes on theBaseEdge, look for a face
1518 // the nodes belong to, and between the nodes of the found face,
1519 // look for a not loaded node considering this node to be the next
1520 // in a column of the starting second node. Repeat, starting
1521 // from nodes next to the previous starting nodes in their columns,
1522 // and so on while a face can be found. Then go the the next pair
1523 // of nodes on theBaseEdge.
1524 StdMeshers_IJNodeMap::iterator par_nVec_1 = theIJNodes.begin();
1525 StdMeshers_IJNodeMap::iterator par_nVec_2 = par_nVec_1;
1528 for ( par_nVec_2++; par_nVec_2 != theIJNodes.end(); par_nVec_1++, par_nVec_2++ ) {
1531 const SMDS_MeshNode* n1 = par_nVec_1->second[ row ];
1532 const SMDS_MeshNode* n2 = par_nVec_2->second[ row ];
1533 const SMDS_MeshElement* face = 0;
1535 // look for a face by 2 nodes
1536 face = SMESH_MeshEditor::FindFaceInSet( n1, n2, allFaces, foundFaces );
1538 int nbFaceNodes = face->NbNodes();
1539 if ( (!myCreateQuadratic && nbFaceNodes>4) ||
1540 (myCreateQuadratic && nbFaceNodes>8) ) {
1541 MESSAGE(" Too many nodes in a face: " << nbFaceNodes );
1544 // look for a not loaded node of the <face>
1546 const SMDS_MeshNode* n3 = 0; // a node defferent from n1 and n2
1547 eIt = face->nodesIterator() ;
1548 while ( !found && eIt->more() ) {
1549 node = static_cast<const SMDS_MeshNode*>( eIt->next() );
1550 if(myTool->IsMedium(node))
1552 found = loadedNodes.insert( node ).second;
1553 if ( !found && node != n1 && node != n2 )
1557 if ( ++row > vsize - 1 ) {
1558 MESSAGE( "Too many nodes in column "<< col <<": "<< row+1);
1561 par_nVec_2->second[ row ] = node;
1562 foundFaces.insert( face );
1564 if ( nbFaceNodes==4 || (myCreateQuadratic && nbFaceNodes==8) ) {
1565 n1 = par_nVec_1->second[ row ];
1568 else if ( (nbFaceNodes==3 || (myCreateQuadratic && nbFaceNodes==6) ) &&
1569 n3 == par_nVec_1->second[ row ] ) {
1573 MESSAGE( "Not quad mesh, column "<< col );
1578 while ( face && n1 && n2 );
1580 if ( row < vsize - 1 ) {
1581 MESSAGE( "Too few nodes in column "<< col <<": "<< row+1);
1582 MESSAGE( "Base node 1: "<< par_nVec_1->second[0]);
1583 MESSAGE( "Base node 2: "<< par_nVec_2->second[0]);
1584 MESSAGE( "Current node 1: "<< n1);
1585 MESSAGE( "Current node 2: "<< n2);
1586 MESSAGE( "first base node: "<< theIJNodes.begin()->second[0]);
1587 MESSAGE( "last base node: "<< theIJNodes.rbegin()->second[0]);
1590 } // loop on columns
1595 //////////////////////////////////////////////////////////////////////////
1597 // StdMeshers_SMESHBlock
1599 //////////////////////////////////////////////////////////////////////////
1601 //=======================================================================
1602 //function : StdMeshers_SMESHBlock
1604 //=======================================================================
1605 StdMeshers_SMESHBlock::StdMeshers_SMESHBlock()
1608 myIsEdgeForward.resize( SMESH_Block::NbEdges(), -1 );
1611 //=======================================================================
1612 //function : IsForwadEdge
1614 //=======================================================================
1616 bool StdMeshers_SMESHBlock::IsForwadEdge(const int theEdgeID)
1618 int index = myTBlock.ShapeIndex( theEdgeID );
1619 if ( !myTBlock.IsEdgeID( theEdgeID ))
1622 if ( myIsEdgeForward[ index ] < 0 )
1623 myIsEdgeForward[ index ] =
1624 myTBlock.IsForwardEdge( TopoDS::Edge( Shape( theEdgeID )), myShapeIDMap );
1626 return myIsEdgeForward[ index ];
1629 //=======================================================================
1630 //function : ErrorStatus
1632 //=======================================================================
1633 int StdMeshers_SMESHBlock::ErrorStatus() const
1635 return myErrorStatus;
1638 //================================================================================
1640 * \brief Return problem description
1642 //================================================================================
1644 SMESH_ComputeErrorPtr StdMeshers_SMESHBlock::GetError() const
1646 SMESH_ComputeErrorPtr err = SMESH_ComputeError::New();
1647 string & text = err->myComment;
1648 switch ( myErrorStatus ) {
1650 case 3: text = "Internal error of StdMeshers_Penta_3D"; break;
1651 case 4: text = "Can't compute normalized parameters of a point inside a block"; break;
1652 case 5: text = "Can't compute coordinates by normalized parameters inside a block"; break;
1653 case 6: text = "Can't detect block sub-shapes. Not a block?"; break;
1656 err->myName = myErrorStatus;
1660 //=======================================================================
1663 //=======================================================================
1664 void StdMeshers_SMESHBlock::Load(const TopoDS_Shell& theShell)
1666 TopoDS_Vertex aV000, aV001;
1668 Load(theShell, aV000, aV001);
1671 //=======================================================================
1674 //=======================================================================
1675 void StdMeshers_SMESHBlock::Load(const TopoDS_Shell& theShell,
1676 const TopoDS_Vertex& theV000,
1677 const TopoDS_Vertex& theV001)
1685 myShapeIDMap.Clear();
1686 bOk = myTBlock.LoadBlockShapes(myShell, theV000, theV001, myShapeIDMap);
1693 //=======================================================================
1694 //function : ComputeParameters
1696 //=======================================================================
1697 void StdMeshers_SMESHBlock::ComputeParameters(const gp_Pnt& thePnt,
1700 ComputeParameters(thePnt, myShell, theXYZ);
1703 //=======================================================================
1704 //function : ComputeParameters
1706 //=======================================================================
1707 void StdMeshers_SMESHBlock::ComputeParameters(const gp_Pnt& thePnt,
1708 const TopoDS_Shape& theShape,
1716 aID = ShapeID(theShape);
1717 if (myErrorStatus) {
1720 bOk = myTBlock.ComputeParameters(thePnt, theXYZ, aID);
1722 myErrorStatus=4; // problems with computation Parameters
1727 //=======================================================================
1728 //function : ComputeParameters
1730 //=======================================================================
1732 void StdMeshers_SMESHBlock::ComputeParameters(const double& theU,
1733 const TopoDS_Shape& theShape,
1741 aID = ShapeID(theShape);
1742 if (myErrorStatus) {
1745 if ( SMESH_Block::IsEdgeID( aID ))
1746 bOk = myTBlock.EdgeParameters( aID, theU, theXYZ );
1748 myErrorStatus=4; // problems with computation Parameters
1753 //=======================================================================
1756 //=======================================================================
1757 void StdMeshers_SMESHBlock::Point(const gp_XYZ& theParams, gp_Pnt& aP3D)
1761 Point(theParams, aS, aP3D);
1764 //=======================================================================
1767 //=======================================================================
1768 void StdMeshers_SMESHBlock::Point(const gp_XYZ& theParams,
1769 const TopoDS_Shape& theShape,
1776 gp_XYZ aXYZ(99.,99.,99.);
1779 if (theShape.IsNull()) {
1780 bOk = myTBlock.ShellPoint(theParams, aXYZ);
1784 aID=ShapeID(theShape);
1785 if (myErrorStatus) {
1789 if (SMESH_Block::IsVertexID(aID)) {
1790 bOk = myTBlock.VertexPoint(aID, aXYZ);
1792 else if (SMESH_Block::IsEdgeID(aID)) {
1793 bOk = myTBlock.EdgePoint(aID, theParams, aXYZ);
1796 else if (SMESH_Block::IsFaceID(aID)) {
1797 bOk = myTBlock.FacePoint(aID, theParams, aXYZ);
1801 myErrorStatus=5; // problems with point computation
1807 //=======================================================================
1808 //function : ShapeID
1810 //=======================================================================
1811 int StdMeshers_SMESHBlock::ShapeID(const TopoDS_Shape& theShape)
1816 TopoDS_Shape aSF, aSR;
1819 aSF.Orientation(TopAbs_FORWARD);
1821 aSR.Orientation(TopAbs_REVERSED);
1823 if (myShapeIDMap.Contains(aSF)) {
1824 aID=myShapeIDMap.FindIndex(aSF);
1827 if (myShapeIDMap.Contains(aSR)) {
1828 aID=myShapeIDMap.FindIndex(aSR);
1831 myErrorStatus=2; // unknown shape;
1835 //=======================================================================
1838 //=======================================================================
1839 const TopoDS_Shape& StdMeshers_SMESHBlock::Shape(const int theID)
1845 aNb=myShapeIDMap.Extent();
1846 if (theID<1 || theID>aNb) {
1847 myErrorStatus=3; // ID is out of range
1848 return myEmptyShape;
1851 const TopoDS_Shape& aS=myShapeIDMap.FindKey(theID);
1856 //=======================================================================
1857 //function : Evaluate
1859 //=======================================================================
1860 bool StdMeshers_Penta_3D::Evaluate(SMESH_Mesh& aMesh,
1861 const TopoDS_Shape& aShape,
1862 MapShapeNbElems& aResMap)
1864 MESSAGE("StdMeshers_Penta_3D::Evaluate()");
1866 // find face contains only triangles
1867 vector < SMESH_subMesh * >meshFaces;
1868 TopTools_SequenceOfShape aFaces;
1869 int NumBase = 0, i = 0;
1870 for (TopExp_Explorer exp(aShape, TopAbs_FACE); exp.More(); exp.Next()) {
1872 aFaces.Append(exp.Current());
1873 SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(exp.Current());
1874 meshFaces.push_back(aSubMesh);
1875 MapShapeNbElemsItr anIt = aResMap.find(meshFaces[i]);
1876 if( anIt == aResMap.end() ) {
1880 std::vector<int> aVec = (*anIt).second;
1881 int nbtri = Max(aVec[SMDSEntity_Triangle],aVec[SMDSEntity_Quad_Triangle]);
1882 int nbqua = Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
1883 if( nbtri>0 && nbqua==0 ) {
1889 std::vector<int> aResVec(SMDSEntity_Last);
1890 for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
1891 SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
1892 aResMap.insert(std::make_pair(sm,aResVec));
1893 myErrorStatus->myName = COMPERR_ALGO_FAILED;
1894 myErrorStatus->myComment = "Submesh can not be evaluated";
1898 // find number of 1d elems for base face
1900 TopTools_MapOfShape Edges1;
1901 for (TopExp_Explorer exp(aFaces.Value(NumBase), TopAbs_EDGE); exp.More(); exp.Next()) {
1902 Edges1.Add(exp.Current());
1903 SMESH_subMesh *sm = aMesh.GetSubMesh(exp.Current());
1905 MapShapeNbElemsItr anIt = aResMap.find(sm);
1906 if( anIt == aResMap.end() ) continue;
1907 std::vector<int> aVec = (*anIt).second;
1908 nb1d += Max(aVec[SMDSEntity_Edge],aVec[SMDSEntity_Quad_Edge]);
1911 // find face opposite to base face
1913 for(i=1; i<=6; i++) {
1914 if(i==NumBase) continue;
1915 bool IsOpposite = true;
1916 for(TopExp_Explorer exp(aFaces.Value(i), TopAbs_EDGE); exp.More(); exp.Next()) {
1917 if( Edges1.Contains(exp.Current()) ) {
1927 // find number of 2d elems on side faces
1929 for(i=1; i<=6; i++) {
1930 if( i==OppNum || i==NumBase ) continue;
1931 MapShapeNbElemsItr anIt = aResMap.find( meshFaces[i-1] );
1932 if( anIt == aResMap.end() ) continue;
1933 std::vector<int> aVec = (*anIt).second;
1934 nb2d += Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
1937 MapShapeNbElemsItr anIt = aResMap.find( meshFaces[NumBase-1] );
1938 std::vector<int> aVec = (*anIt).second;
1939 int nb2d_face0 = Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
1940 int nb0d_face0 = aVec[SMDSEntity_Node];
1942 anIt = aResMap.find( meshFaces[OppNum-1] );
1943 for(i=SMDSEntity_Node; i<SMDSEntity_Last; i++)
1944 (*anIt).second[i] = aVec[i];
1946 SMESH_MesherHelper aTool (aMesh);
1947 bool _quadraticMesh = aTool.IsQuadraticSubMesh(aShape);
1949 std::vector<int> aResVec(SMDSEntity_Last);
1950 for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
1951 if(_quadraticMesh) {
1952 aResVec[SMDSEntity_Quad_Penta] = nb2d_face0 * ( nb2d/nb1d );
1953 aResVec[SMDSEntity_Node] = nb0d_face0 * ( 2*nb2d/nb1d - 1 );
1956 aResVec[SMDSEntity_Node] = nb0d_face0 * ( nb2d/nb1d - 1 );
1957 aResVec[SMDSEntity_Penta] = nb2d_face0 * ( nb2d/nb1d );
1959 SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
1960 aResMap.insert(std::make_pair(sm,aResVec));