Salome HOME
Merge multi-study removal branch.
[modules/smesh.git] / src / StdMeshers / StdMeshers_Hexa_3D.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESH : implementaion of SMESH idl descriptions
24 //  File   : StdMeshers_Hexa_3D.cxx
25 //           Moved here from SMESH_Hexa_3D.cxx
26 //  Author : Paul RASCLE, EDF
27 //  Module : SMESH
28 //
29 #include "StdMeshers_Hexa_3D.hxx"
30
31 #include "StdMeshers_CompositeHexa_3D.hxx"
32 #include "StdMeshers_FaceSide.hxx"
33 #include "StdMeshers_HexaFromSkin_3D.hxx"
34 #include "StdMeshers_Penta_3D.hxx"
35 #include "StdMeshers_Prism_3D.hxx"
36 #include "StdMeshers_Quadrangle_2D.hxx"
37 #include "StdMeshers_ViscousLayers.hxx"
38
39 #include "SMESH_Comment.hxx"
40 #include "SMESH_Gen.hxx"
41 #include "SMESH_Mesh.hxx"
42 #include "SMESH_MesherHelper.hxx"
43 #include "SMESH_subMesh.hxx"
44
45 #include "SMDS_MeshNode.hxx"
46
47 #include <TopExp.hxx>
48 #include <TopExp_Explorer.hxx>
49 #include <TopTools_SequenceOfShape.hxx>
50 #include <TopTools_MapOfShape.hxx>
51 #include <TopoDS.hxx>
52
53 #include "utilities.h"
54 #include "Utils_ExceptHandlers.hxx"
55
56 typedef SMESH_Comment TComm;
57
58 using namespace std;
59
60 static SMESH_ComputeErrorPtr ComputePentahedralMesh(SMESH_Mesh &,
61                                                     const TopoDS_Shape &,
62                                                     SMESH_ProxyMesh* proxyMesh=0);
63
64 static bool EvaluatePentahedralMesh(SMESH_Mesh &, const TopoDS_Shape &,
65                                     MapShapeNbElems &);
66
67 //=============================================================================
68 /*!
69  * Constructor
70  */
71 //=============================================================================
72
73 StdMeshers_Hexa_3D::StdMeshers_Hexa_3D(int hypId, SMESH_Gen * gen)
74   :SMESH_3D_Algo(hypId, gen)
75 {
76   _name = "Hexa_3D";
77   _shapeType = (1 << TopAbs_SHELL) | (1 << TopAbs_SOLID);       // 1 bit /shape type
78   _requireShape = false;
79   _compatibleHypothesis.push_back("ViscousLayers");
80 }
81
82 //=============================================================================
83 /*!
84  * Destructor
85  */
86 //=============================================================================
87
88 StdMeshers_Hexa_3D::~StdMeshers_Hexa_3D()
89 {
90 }
91
92 //=============================================================================
93 /*!
94  * Retrieves defined hypotheses
95  */
96 //=============================================================================
97
98 bool StdMeshers_Hexa_3D::CheckHypothesis
99                          (SMESH_Mesh&                          aMesh,
100                           const TopoDS_Shape&                  aShape,
101                           SMESH_Hypothesis::Hypothesis_Status& aStatus)
102 {
103   // check nb of faces in the shape
104 /*  PAL16229
105   aStatus = SMESH_Hypothesis::HYP_BAD_GEOMETRY;
106   int nbFaces = 0;
107   for (TopExp_Explorer exp(aShape, TopAbs_FACE); exp.More(); exp.Next())
108     if ( ++nbFaces > 6 )
109       break;
110   if ( nbFaces != 6 )
111     return false;
112 */
113
114   _viscousLayersHyp = NULL;
115
116   const list<const SMESHDS_Hypothesis*>& hyps =
117     GetUsedHypothesis(aMesh, aShape, /*ignoreAuxiliary=*/false);
118   list <const SMESHDS_Hypothesis* >::const_iterator h = hyps.begin();
119   if ( h == hyps.end())
120   {
121     aStatus = SMESH_Hypothesis::HYP_OK;
122     return true;
123   }
124
125   // only StdMeshers_ViscousLayers can be used
126   aStatus = HYP_OK;
127   for ( ; h != hyps.end(); ++h )
128   {
129     if ( !(_viscousLayersHyp = dynamic_cast< const StdMeshers_ViscousLayers*> ( *h )))
130       break;
131   }
132   if ( !_viscousLayersHyp )
133     aStatus = HYP_INCOMPATIBLE;
134   else
135     error( _viscousLayersHyp->CheckHypothesis( aMesh, aShape, aStatus ));
136
137   return aStatus == HYP_OK;
138 }
139
140 namespace
141 {
142   //=============================================================================
143
144   typedef boost::shared_ptr< FaceQuadStruct > FaceQuadStructPtr;
145   typedef std::vector<gp_XYZ>                 TXYZColumn;
146
147   // symbolic names of box sides
148   enum EBoxSides{ B_BOTTOM=0, B_RIGHT, B_TOP, B_LEFT, B_FRONT, B_BACK, B_NB_SIDES };
149
150   // symbolic names of sides of quadrangle
151   enum EQuadSides{ Q_BOTTOM=0, Q_RIGHT, Q_TOP, Q_LEFT, Q_NB_SIDES };
152
153   enum EAxes{ COO_X=1, COO_Y, COO_Z };
154
155   //=============================================================================
156   /*!
157    * \brief Container of nodes of structured mesh on a qudrangular geom FACE
158    */
159   struct _FaceGrid
160   {
161     // face sides
162     FaceQuadStructPtr _quad;
163
164     // map of (node parameter on EDGE) to (column (vector) of nodes)
165     TParam2ColumnMap _u2nodesMap;
166
167     // node column's taken form _u2nodesMap taking into account sub-shape orientation
168     vector<TNodeColumn> _columns;
169
170     // columns of normalized parameters of nodes within the unitary cube
171     vector<TXYZColumn> _ijkColumns;
172
173     // geometry of a cube side
174     TopoDS_Face _sideF;
175
176     const SMDS_MeshNode* GetNode(int iCol, int iRow) const
177     {
178       return _columns[iCol][iRow];
179     }
180     gp_XYZ GetXYZ(int iCol, int iRow) const
181     {
182       return SMESH_TNodeXYZ( GetNode( iCol, iRow ));
183     }
184     gp_XYZ& GetIJK(int iCol, int iRow)
185     {
186       return _ijkColumns[iCol][iRow];
187     }
188   };
189
190   //================================================================================
191   /*!
192    * \brief Convertor of a pair of integers to a sole index
193    */
194   struct _Indexer
195   {
196     int _xSize, _ySize;
197     _Indexer( int xSize, int ySize ): _xSize(xSize), _ySize(ySize) {}
198     int size() const { return _xSize * _ySize; }
199     int operator()(const int x, const int y) const { return y * _xSize + x; }
200   };
201
202   //================================================================================
203   /*!
204    * \brief Appends a range of node columns from a map to another map
205    */
206   template< class TMapIterator >
207   void append( TParam2ColumnMap& toMap, TMapIterator from, TMapIterator to )
208   {
209     const SMDS_MeshNode* lastNode = toMap.rbegin()->second[0];
210     const SMDS_MeshNode* firstNode = from->second[0];
211     if ( lastNode == firstNode )
212       from++;
213     double u = toMap.rbegin()->first;
214     for (; from != to; ++from )
215     {
216       u += 1;
217       TParam2ColumnMap::iterator u2nn = toMap.insert( toMap.end(), make_pair ( u, TNodeColumn()));
218       u2nn->second.swap( from->second );
219     }
220   }
221
222   //================================================================================
223   /*!
224    * \brief Finds FaceQuadStruct having a side equal to a given one and rearranges
225    *  the found FaceQuadStruct::side to have the given side at a Q_BOTTOM place
226    */
227   FaceQuadStructPtr getQuadWithBottom( StdMeshers_FaceSidePtr side,
228                                        FaceQuadStructPtr      quad[ 6 ])
229   {
230     FaceQuadStructPtr foundQuad;
231     for ( int i = 1; i < 6; ++i )
232     {
233       if ( !quad[i] ) continue;
234       for ( unsigned iS = 0; iS < quad[i]->side.size(); ++iS )
235       {
236         const StdMeshers_FaceSidePtr side2 = quad[i]->side[iS];
237         if (( side->FirstVertex().IsSame( side2->FirstVertex() ) ||
238               side->FirstVertex().IsSame( side2->LastVertex() ))
239             &&
240             ( side->LastVertex().IsSame( side2->FirstVertex() ) ||
241               side->LastVertex().IsSame( side2->LastVertex() ))
242             )
243         {
244           if ( iS != Q_BOTTOM )
245           {
246             vector< FaceQuadStruct::Side > newSides;
247             for ( unsigned j = iS; j < quad[i]->side.size(); ++j )
248               newSides.push_back( quad[i]->side[j] );
249             for ( unsigned j = 0; j < iS; ++j )
250               newSides.push_back( quad[i]->side[j] );
251             quad[i]->side.swap( newSides );
252           }
253           foundQuad.swap(quad[i]);
254           return foundQuad;
255         }
256       }
257     }
258     return foundQuad;
259   }
260   //================================================================================
261   /*!
262    * \brief Returns true if the 1st base node of sideGrid1 belongs to sideGrid2
263    */
264   //================================================================================
265
266   bool beginsAtSide( const _FaceGrid&     sideGrid1,
267                      const _FaceGrid&     sideGrid2,
268                      SMESH_ProxyMesh::Ptr proxymesh )
269   {
270     const TNodeColumn& col0  = sideGrid2._u2nodesMap.begin()->second;
271     const TNodeColumn& col1  = sideGrid2._u2nodesMap.rbegin()->second;
272     const SMDS_MeshNode* n00 = col0.front();
273     const SMDS_MeshNode* n01 = col0.back();
274     const SMDS_MeshNode* n10 = col1.front();
275     const SMDS_MeshNode* n11 = col1.back();
276     const SMDS_MeshNode* n = (sideGrid1._u2nodesMap.begin()->second)[0];
277     if ( proxymesh )
278     {
279       n00 = proxymesh->GetProxyNode( n00 );
280       n10 = proxymesh->GetProxyNode( n10 );
281       n01 = proxymesh->GetProxyNode( n01 );
282       n11 = proxymesh->GetProxyNode( n11 );
283       n   = proxymesh->GetProxyNode( n );
284     }
285     return ( n == n00 || n == n01 || n == n10 || n == n11 );
286   }
287
288   //================================================================================
289   /*!
290    * \brief Fill in _FaceGrid::_ijkColumns
291    *  \param [in,out] fg - a _FaceGrid
292    *  \param [in] i1 - coordinate index along _columns
293    *  \param [in] i2 - coordinate index along _columns[i]
294    *  \param [in] v3 - value of the constant parameter
295    */
296   //================================================================================
297
298   void computeIJK( _FaceGrid& fg, int i1, int i2, double v3 )
299   {
300     gp_XYZ ijk( v3, v3, v3 );
301     const size_t nbCol = fg._columns.size();
302     const size_t nbRow = fg._columns[0].size();
303
304     fg._ijkColumns.resize( nbCol );
305     for ( size_t i = 0; i < nbCol; ++i )
306       fg._ijkColumns[ i ].resize( nbRow, ijk );
307
308     vector< double > len( nbRow );
309     len[0] = 0;
310     for ( size_t i = 0; i < nbCol; ++i )
311     {
312       gp_Pnt pPrev = fg.GetXYZ( i, 0 );
313       for ( size_t j = 1; j < nbRow; ++j )
314       {
315         gp_Pnt p = fg.GetXYZ( i, j );
316         len[ j ] = len[ j-1 ] + p.Distance( pPrev );
317         pPrev = p;
318       }
319       for ( size_t j = 0; j < nbRow; ++j )
320         fg.GetIJK( i, j ).SetCoord( i2, len[ j ]/len.back() );
321     }
322
323     len.resize( nbCol );
324     for ( size_t j = 0; j < nbRow; ++j )
325     {
326       gp_Pnt pPrev = fg.GetXYZ( 0, j );
327       for ( size_t i = 1; i < nbCol; ++i )
328       {
329         gp_Pnt p = fg.GetXYZ( i, j );
330         len[ i ] = len[ i-1 ] + p.Distance( pPrev );
331         pPrev = p;
332       }
333       for ( size_t i = 0; i < nbCol; ++i )
334         fg.GetIJK( i, j ).SetCoord( i1, len[ i ]/len.back() );
335     }
336   }
337 }
338
339 //=============================================================================
340 /*!
341  * Generates hexahedron mesh on hexaedron like form using algorithm from
342  * "Application de l'interpolation transfinie ï¿½ la cr�ation de maillages
343  *  C0 ou G1 continus sur des triangles, quadrangles, tetraedres, pentaedres
344  *  et hexaedres d�form�s."
345  * Alain PERONNET - 8 janvier 1999
346  */
347 //=============================================================================
348
349 bool StdMeshers_Hexa_3D::Compute(SMESH_Mesh &         aMesh,
350                                  const TopoDS_Shape & aShape)
351 {
352   // PAL14921. Enable catching std::bad_alloc and Standard_OutOfMemory outside
353   //Unexpect aCatch(SalomeException);
354   SMESHDS_Mesh * meshDS = aMesh.GetMeshDS();
355
356   // Shape verification
357   // ----------------------
358
359   // shape must be a solid (or a shell) with 6 faces
360   TopExp_Explorer exp(aShape,TopAbs_SHELL);
361   if ( !exp.More() )
362     return error(COMPERR_BAD_SHAPE, "No SHELL in the geometry");
363   if ( exp.Next(), exp.More() )
364     return error(COMPERR_BAD_SHAPE, "More than one SHELL in the geometry");
365
366   TopTools_IndexedMapOfShape FF;
367   TopExp::MapShapes( aShape, TopAbs_FACE, FF);
368   if ( FF.Extent() != 6)
369   {
370     static StdMeshers_CompositeHexa_3D compositeHexa(_gen->GetANewId(), _gen);
371     if ( !compositeHexa.Compute( aMesh, aShape ))
372       return error( compositeHexa.GetComputeError() );
373     return true;
374   }
375
376   // Find sides of a cube
377   // ---------------------
378   
379   FaceQuadStructPtr quad[ 6 ];
380   StdMeshers_Quadrangle_2D quadAlgo( _gen->GetANewId(), _gen);
381   for ( int i = 0; i < 6; ++i )
382   {
383     if ( !( quad[i] = FaceQuadStructPtr( quadAlgo.CheckNbEdges( aMesh, FF( i+1 ),
384                                                                 /*considerMesh=*/true))))
385       return error( quadAlgo.GetComputeError() );
386     if ( quad[i]->side.size() != 4 )
387       return error( COMPERR_BAD_SHAPE, "Not a quadrangular box side" );
388   }
389
390   _FaceGrid aCubeSide[ 6 ];
391
392   swap( aCubeSide[B_BOTTOM]._quad, quad[0] );
393   swap( aCubeSide[B_BOTTOM]._quad->side[ Q_RIGHT],// direct the normal of bottom quad inside cube
394         aCubeSide[B_BOTTOM]._quad->side[ Q_LEFT ] );
395
396   aCubeSide[B_FRONT]._quad = getQuadWithBottom( aCubeSide[B_BOTTOM]._quad->side[Q_BOTTOM], quad );
397   aCubeSide[B_RIGHT]._quad = getQuadWithBottom( aCubeSide[B_BOTTOM]._quad->side[Q_RIGHT ], quad );
398   aCubeSide[B_BACK ]._quad = getQuadWithBottom( aCubeSide[B_BOTTOM]._quad->side[Q_TOP   ], quad );
399   aCubeSide[B_LEFT ]._quad = getQuadWithBottom( aCubeSide[B_BOTTOM]._quad->side[Q_LEFT  ], quad );
400   if ( aCubeSide[B_FRONT ]._quad )
401     aCubeSide[B_TOP]._quad = getQuadWithBottom( aCubeSide[B_FRONT ]._quad->side[Q_TOP ], quad );
402
403   for ( int i = 1; i < 6; ++i )
404     if ( !aCubeSide[i]._quad )
405       return error( COMPERR_BAD_SHAPE );
406
407   // Make viscous layers
408   // --------------------
409
410   SMESH_ProxyMesh::Ptr proxymesh;
411   if ( _viscousLayersHyp )
412   {
413     proxymesh = _viscousLayersHyp->Compute( aMesh, aShape, /*makeN2NMap=*/ true );
414     if ( !proxymesh )
415       return false;
416   }
417
418   // Check if there are triangles on cube sides
419   // -------------------------------------------
420
421   if ( aMesh.NbTriangles() > 0 )
422   {
423     for ( int i = 0; i < 6; ++i )
424     {
425       const TopoDS_Face& sideF = aCubeSide[i]._quad->face;
426       const SMESHDS_SubMesh* smDS =
427         proxymesh ? proxymesh->GetSubMesh( sideF ) : meshDS->MeshElements( sideF );
428       if ( !SMESH_MesherHelper::IsSameElemGeometry( smDS, SMDSGeom_QUADRANGLE,
429                                                     /*nullSubMeshRes=*/false ))
430       {
431         SMESH_ComputeErrorPtr err = ComputePentahedralMesh(aMesh, aShape, proxymesh.get());
432         return error( err );
433       }
434     }
435   }
436
437   // Check presence of regular grid mesh on FACEs of the cube
438   // ------------------------------------------------------------
439
440   // tool creating quadratic elements if needed
441   SMESH_MesherHelper helper (aMesh);
442   _quadraticMesh = helper.IsQuadraticSubMesh(aShape);
443
444   for ( int i = 0; i < 6; ++i )
445   {
446     const TopoDS_Face& F = aCubeSide[i]._quad->face;
447     StdMeshers_FaceSidePtr baseQuadSide = aCubeSide[i]._quad->side[ Q_BOTTOM ];
448     list<TopoDS_Edge> baseEdges( baseQuadSide->Edges().begin(), baseQuadSide->Edges().end() );
449
450     // assure correctness of node positions on baseE:
451     // helper.GetNodeU() will fix positions if they are wrong
452     helper.ToFixNodeParameters( true );
453     for ( int iE = 0; iE < baseQuadSide->NbEdges(); ++iE )
454     {
455       const TopoDS_Edge& baseE = baseQuadSide->Edge( iE );
456       if ( SMESHDS_SubMesh* smDS = meshDS->MeshElements( baseE ))
457       {
458         bool ok;
459         helper.SetSubShape( baseE );
460         SMDS_ElemIteratorPtr eIt = smDS->GetElements();
461         while ( eIt->more() )
462         {
463           const SMDS_MeshElement* e = eIt->next();
464           // expect problems on a composite side
465           try { helper.GetNodeU( baseE, e->GetNode(0), e->GetNode(1), &ok); }
466           catch (...) {}
467           try { helper.GetNodeU( baseE, e->GetNode(1), e->GetNode(0), &ok); }
468           catch (...) {}
469         }
470       }
471     }
472
473     // load grid
474     bool ok =
475       helper.LoadNodeColumns( aCubeSide[i]._u2nodesMap, F, baseEdges, meshDS, proxymesh.get());
476     if ( ok )
477     {
478       // check if the loaded grid corresponds to nb of quadrangles on the FACE
479       const SMESHDS_SubMesh* faceSubMesh =
480         proxymesh ? proxymesh->GetSubMesh( F ) : meshDS->MeshElements( F );
481       const int nbQuads = faceSubMesh->NbElements();
482       const int nbHor = aCubeSide[i]._u2nodesMap.size() - 1;
483       const int nbVer = aCubeSide[i]._u2nodesMap.begin()->second.size() - 1;
484       ok = ( nbQuads == nbHor * nbVer );
485     }
486     if ( !ok )
487     {
488       SMESH_ComputeErrorPtr err = ComputePentahedralMesh(aMesh, aShape, proxymesh.get());
489       return error( err );
490     }
491   }
492
493   // Orient loaded grids of cube sides along axis of the unitary cube coord system
494   bool isReverse[6];
495   isReverse[B_BOTTOM] = beginsAtSide( aCubeSide[B_BOTTOM], aCubeSide[B_RIGHT ], proxymesh );
496   isReverse[B_TOP   ] = beginsAtSide( aCubeSide[B_TOP   ], aCubeSide[B_RIGHT ], proxymesh );
497   isReverse[B_FRONT ] = beginsAtSide( aCubeSide[B_FRONT ], aCubeSide[B_RIGHT ], proxymesh );
498   isReverse[B_BACK  ] = beginsAtSide( aCubeSide[B_BACK  ], aCubeSide[B_RIGHT ], proxymesh );
499   isReverse[B_LEFT  ] = beginsAtSide( aCubeSide[B_LEFT  ], aCubeSide[B_BACK  ], proxymesh );
500   isReverse[B_RIGHT ] = beginsAtSide( aCubeSide[B_RIGHT ], aCubeSide[B_BACK  ], proxymesh );
501   for ( int i = 0; i < 6; ++i )
502   {
503     aCubeSide[i]._columns.resize( aCubeSide[i]._u2nodesMap.size() );
504
505     size_t iFwd = 0, iRev = aCubeSide[i]._columns.size()-1;
506     size_t*  pi = isReverse[i] ? &iRev : &iFwd;
507     TParam2ColumnMap::iterator u2nn = aCubeSide[i]._u2nodesMap.begin();
508     for ( ; iFwd < aCubeSide[i]._columns.size(); --iRev, ++iFwd, ++u2nn )
509       aCubeSide[i]._columns[ *pi ].swap( u2nn->second );
510
511     aCubeSide[i]._u2nodesMap.clear();
512   }
513
514   if ( proxymesh )
515     for ( int i = 0; i < 6; ++i )
516       for ( unsigned j = 0; j < aCubeSide[i]._columns.size(); ++j)
517         for ( unsigned k = 0; k < aCubeSide[i]._columns[j].size(); ++k)
518         {
519           const SMDS_MeshNode* & n = aCubeSide[i]._columns[j][k];
520           n = proxymesh->GetProxyNode( n );
521         }
522
523   // 4) Create internal nodes of the cube
524   // -------------------------------------
525
526   helper.SetSubShape( aShape );
527   helper.SetElementsOnShape(true);
528
529   // shortcuts to sides
530   _FaceGrid* fBottom = & aCubeSide[ B_BOTTOM ];
531   _FaceGrid* fRight  = & aCubeSide[ B_RIGHT  ];
532   _FaceGrid* fTop    = & aCubeSide[ B_TOP    ];
533   _FaceGrid* fLeft   = & aCubeSide[ B_LEFT   ];
534   _FaceGrid* fFront  = & aCubeSide[ B_FRONT  ];
535   _FaceGrid* fBack   = & aCubeSide[ B_BACK   ];
536
537   // compute normalized parameters of nodes on sides (PAL23189)
538   computeIJK( *fBottom, COO_X, COO_Y, /*z=*/0. );
539   computeIJK( *fRight,  COO_Y, COO_Z, /*x=*/1. );
540   computeIJK( *fTop,    COO_X, COO_Y, /*z=*/1. );
541   computeIJK( *fLeft,   COO_Y, COO_Z, /*x=*/0. );
542   computeIJK( *fFront,  COO_X, COO_Z, /*y=*/0. );
543   computeIJK( *fBack,   COO_X, COO_Z, /*y=*/1. );
544
545   // cube size measured in nb of nodes
546   int x, xSize = fBottom->_columns.size() , X = xSize - 1;
547   int y, ySize = fLeft->_columns.size()   , Y = ySize - 1;
548   int z, zSize = fLeft->_columns[0].size(), Z = zSize - 1;
549
550   // columns of internal nodes "rising" from nodes of fBottom
551   _Indexer colIndex( xSize, ySize );
552   vector< vector< const SMDS_MeshNode* > > columns( colIndex.size() );
553
554   // fill node columns by front and back box sides
555   for ( x = 0; x < xSize; ++x ) {
556     vector< const SMDS_MeshNode* >& column0 = columns[ colIndex( x, 0 )];
557     vector< const SMDS_MeshNode* >& column1 = columns[ colIndex( x, Y )];
558     column0.resize( zSize );
559     column1.resize( zSize );
560     for ( z = 0; z < zSize; ++z ) {
561       column0[ z ] = fFront->GetNode( x, z );
562       column1[ z ] = fBack ->GetNode( x, z );
563     }
564   }
565   // fill node columns by left and right box sides
566   for ( y = 1; y < ySize-1; ++y ) {
567     vector< const SMDS_MeshNode* >& column0 = columns[ colIndex( 0, y )];
568     vector< const SMDS_MeshNode* >& column1 = columns[ colIndex( X, y )];
569     column0.resize( zSize );
570     column1.resize( zSize );
571     for ( z = 0; z < zSize; ++z ) {
572       column0[ z ] = fLeft ->GetNode( y, z );
573       column1[ z ] = fRight->GetNode( y, z );
574     }
575   }
576   // get nodes from top and bottom box sides
577   for ( x = 1; x < xSize-1; ++x ) {
578     for ( y = 1; y < ySize-1; ++y ) {
579       vector< const SMDS_MeshNode* >& column = columns[ colIndex( x, y )];
580       column.resize( zSize );
581       column.front() = fBottom->GetNode( x, y );
582       column.back()  = fTop   ->GetNode( x, y );
583     }
584   }
585
586   // projection points of the internal node on cube sub-shapes by which
587   // coordinates of the internal node are computed
588   vector<gp_XYZ> pointsOnShapes( SMESH_Block::ID_Shell );
589
590   // projections on vertices are constant
591   pointsOnShapes[ SMESH_Block::ID_V000 ] = fBottom->GetXYZ( 0, 0 );
592   pointsOnShapes[ SMESH_Block::ID_V100 ] = fBottom->GetXYZ( X, 0 );
593   pointsOnShapes[ SMESH_Block::ID_V010 ] = fBottom->GetXYZ( 0, Y );
594   pointsOnShapes[ SMESH_Block::ID_V110 ] = fBottom->GetXYZ( X, Y );
595   pointsOnShapes[ SMESH_Block::ID_V001 ] = fTop->GetXYZ( 0, 0 );
596   pointsOnShapes[ SMESH_Block::ID_V101 ] = fTop->GetXYZ( X, 0 );
597   pointsOnShapes[ SMESH_Block::ID_V011 ] = fTop->GetXYZ( 0, Y );
598   pointsOnShapes[ SMESH_Block::ID_V111 ] = fTop->GetXYZ( X, Y );
599
600   gp_XYZ params; // normalized parameters of an internal node within the unit box
601   for ( x = 1; x < xSize-1; ++x )
602   {
603     const double rX = x / double(X);
604     for ( y = 1; y < ySize-1; ++y )
605     {
606       const double rY = y / double(Y);
607
608       // a column to fill in during z loop
609       vector< const SMDS_MeshNode* >& column = columns[ colIndex( x, y )];
610       // projection points on horizontal edges
611       pointsOnShapes[ SMESH_Block::ID_Ex00 ] = fBottom->GetXYZ( x, 0 );
612       pointsOnShapes[ SMESH_Block::ID_Ex10 ] = fBottom->GetXYZ( x, Y );
613       pointsOnShapes[ SMESH_Block::ID_E0y0 ] = fBottom->GetXYZ( 0, y );
614       pointsOnShapes[ SMESH_Block::ID_E1y0 ] = fBottom->GetXYZ( X, y );
615       pointsOnShapes[ SMESH_Block::ID_Ex01 ] = fTop->GetXYZ( x, 0 );
616       pointsOnShapes[ SMESH_Block::ID_Ex11 ] = fTop->GetXYZ( x, Y );
617       pointsOnShapes[ SMESH_Block::ID_E0y1 ] = fTop->GetXYZ( 0, y );
618       pointsOnShapes[ SMESH_Block::ID_E1y1 ] = fTop->GetXYZ( X, y );
619       // projection points on horizontal faces
620       pointsOnShapes[ SMESH_Block::ID_Fxy0 ] = fBottom->GetXYZ( x, y );
621       pointsOnShapes[ SMESH_Block::ID_Fxy1 ] = fTop   ->GetXYZ( x, y );
622       for ( z = 1; z < zSize-1; ++z ) // z loop
623       {
624         const double rZ = z / double(Z);
625
626         const gp_XYZ& pBo = fBottom->GetIJK( x, y );
627         const gp_XYZ& pTo = fTop   ->GetIJK( x, y );
628         const gp_XYZ& pFr = fFront ->GetIJK( x, z );
629         const gp_XYZ& pBa = fBack  ->GetIJK( x, z );
630         const gp_XYZ& pLe = fLeft  ->GetIJK( y, z );
631         const gp_XYZ& pRi = fRight ->GetIJK( y, z );
632         params.SetCoord( 1, 0.5 * ( pBo.X() * ( 1. - rZ ) + pTo.X() * rZ  +
633                                     pFr.X() * ( 1. - rY ) + pBa.X() * rY ));
634         params.SetCoord( 2, 0.5 * ( pBo.Y() * ( 1. - rZ ) + pTo.Y() * rZ  +
635                                     pLe.Y() * ( 1. - rX ) + pRi.Y() * rX ));
636         params.SetCoord( 3, 0.5 * ( pFr.Z() * ( 1. - rY ) + pBa.Z() * rY  +
637                                     pLe.Z() * ( 1. - rX ) + pRi.Z() * rX ));
638
639         // projection points on vertical edges
640         pointsOnShapes[ SMESH_Block::ID_E00z ] = fFront->GetXYZ( 0, z );
641         pointsOnShapes[ SMESH_Block::ID_E10z ] = fFront->GetXYZ( X, z );
642         pointsOnShapes[ SMESH_Block::ID_E01z ] = fBack->GetXYZ( 0, z );
643         pointsOnShapes[ SMESH_Block::ID_E11z ] = fBack->GetXYZ( X, z );
644         // projection points on vertical faces
645         pointsOnShapes[ SMESH_Block::ID_Fx0z ] = fFront->GetXYZ( x, z );
646         pointsOnShapes[ SMESH_Block::ID_Fx1z ] = fBack ->GetXYZ( x, z );
647         pointsOnShapes[ SMESH_Block::ID_F0yz ] = fLeft ->GetXYZ( y, z );
648         pointsOnShapes[ SMESH_Block::ID_F1yz ] = fRight->GetXYZ( y, z );
649
650         // compute internal node coordinates
651         gp_XYZ coords;
652         SMESH_Block::ShellPoint( params, pointsOnShapes, coords );
653         column[ z ] = helper.AddNode( coords.X(), coords.Y(), coords.Z() );
654       }
655     }
656   }
657
658   // side data no more needed, free memory
659   for ( int i = 0; i < 6; ++i )
660     aCubeSide[i]._columns.clear();
661
662   // 5) Create hexahedrons
663   // ---------------------
664
665   for ( x = 0; x < xSize-1; ++x ) {
666     for ( y = 0; y < ySize-1; ++y ) {
667       vector< const SMDS_MeshNode* >& col00 = columns[ colIndex( x, y )];
668       vector< const SMDS_MeshNode* >& col10 = columns[ colIndex( x+1, y )];
669       vector< const SMDS_MeshNode* >& col01 = columns[ colIndex( x, y+1 )];
670       vector< const SMDS_MeshNode* >& col11 = columns[ colIndex( x+1, y+1 )];
671       for ( z = 0; z < zSize-1; ++z )
672       {
673         // bottom face normal of a hexa mush point outside the volume
674         helper.AddVolume(col00[z],   col01[z],   col11[z],   col10[z],
675                          col00[z+1], col01[z+1], col11[z+1], col10[z+1]);
676       }
677     }
678   }
679   return true;
680 }
681
682 //=============================================================================
683 /*!
684  *  Evaluate
685  */
686 //=============================================================================
687
688 bool StdMeshers_Hexa_3D::Evaluate(SMESH_Mesh & aMesh,
689                                   const TopoDS_Shape & aShape,
690                                   MapShapeNbElems& aResMap)
691 {
692   vector < SMESH_subMesh * >meshFaces;
693   TopTools_SequenceOfShape aFaces;
694   for (TopExp_Explorer exp(aShape, TopAbs_FACE); exp.More(); exp.Next()) {
695     aFaces.Append(exp.Current());
696     SMESH_subMesh *aSubMesh = aMesh.GetSubMeshContaining(exp.Current());
697     ASSERT(aSubMesh);
698     meshFaces.push_back(aSubMesh);
699   }
700   if (meshFaces.size() != 6) {
701     //return error(COMPERR_BAD_SHAPE, TComm(meshFaces.size())<<" instead of 6 faces in a block");
702     static StdMeshers_CompositeHexa_3D compositeHexa(-10, aMesh.GetGen());
703     return compositeHexa.Evaluate(aMesh, aShape, aResMap);
704   }
705   
706   int i = 0;
707   for(; i<6; i++) {
708     //TopoDS_Shape aFace = meshFaces[i]->GetSubShape();
709     TopoDS_Shape aFace = aFaces.Value(i+1);
710     SMESH_Algo *algo = _gen->GetAlgo(aMesh, aFace);
711     if( !algo ) {
712       std::vector<int> aResVec(SMDSEntity_Last);
713       for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
714       SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
715       aResMap.insert(std::make_pair(sm,aResVec));
716       SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
717       smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
718       return false;
719     }
720     string algoName = algo->GetName();
721     bool isAllQuad = false;
722     if (algoName == "Quadrangle_2D") {
723       MapShapeNbElemsItr anIt = aResMap.find(meshFaces[i]);
724       if( anIt == aResMap.end() ) continue;
725       std::vector<int> aVec = (*anIt).second;
726       int nbtri = Max(aVec[SMDSEntity_Triangle],aVec[SMDSEntity_Quad_Triangle]);
727       if( nbtri == 0 )
728         isAllQuad = true;
729     }
730     if ( ! isAllQuad ) {
731       return EvaluatePentahedralMesh(aMesh, aShape, aResMap);
732     }
733   }
734   
735   // find number of 1d elems for 1 face
736   int nb1d = 0;
737   TopTools_MapOfShape Edges1;
738   bool IsQuadratic = false;
739   bool IsFirst = true;
740   for (TopExp_Explorer exp(aFaces.Value(1), TopAbs_EDGE); exp.More(); exp.Next()) {
741     Edges1.Add(exp.Current());
742     SMESH_subMesh *sm = aMesh.GetSubMesh(exp.Current());
743     if( sm ) {
744       MapShapeNbElemsItr anIt = aResMap.find(sm);
745       if( anIt == aResMap.end() ) continue;
746       std::vector<int> aVec = (*anIt).second;
747       nb1d += Max(aVec[SMDSEntity_Edge],aVec[SMDSEntity_Quad_Edge]);
748       if(IsFirst) {
749         IsQuadratic = (aVec[SMDSEntity_Quad_Edge] > aVec[SMDSEntity_Edge]);
750         IsFirst = false;
751       }
752     }
753   }
754   // find face opposite to 1 face
755   int OppNum = 0;
756   for(i=2; i<=6; i++) {
757     bool IsOpposite = true;
758     for(TopExp_Explorer exp(aFaces.Value(i), TopAbs_EDGE); exp.More(); exp.Next()) {
759       if( Edges1.Contains(exp.Current()) ) {
760         IsOpposite = false;
761         break;
762       }
763     }
764     if(IsOpposite) {
765       OppNum = i;
766       break;
767     }
768   }
769   // find number of 2d elems on side faces
770   int nb2d = 0;
771   for(i=2; i<=6; i++) {
772     if( i == OppNum ) continue;
773     MapShapeNbElemsItr anIt = aResMap.find( meshFaces[i-1] );
774     if( anIt == aResMap.end() ) continue;
775     std::vector<int> aVec = (*anIt).second;
776     nb2d += Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
777   }
778   
779   MapShapeNbElemsItr anIt = aResMap.find( meshFaces[0] );
780   std::vector<int> aVec = (*anIt).second;
781   int nb2d_face0 = Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
782   int nb0d_face0 = aVec[SMDSEntity_Node];
783
784   std::vector<int> aResVec(SMDSEntity_Last);
785   for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
786   if(IsQuadratic) {
787     aResVec[SMDSEntity_Quad_Hexa] = nb2d_face0 * ( nb2d/nb1d );
788     int nb1d_face0_int = ( nb2d_face0*4 - nb1d ) / 2;
789     aResVec[SMDSEntity_Node] = nb0d_face0 * ( 2*nb2d/nb1d - 1 ) - nb1d_face0_int * nb2d/nb1d;
790   }
791   else {
792     aResVec[SMDSEntity_Node] = nb0d_face0 * ( nb2d/nb1d - 1 );
793     aResVec[SMDSEntity_Hexa] = nb2d_face0 * ( nb2d/nb1d );
794   }
795   SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
796   aResMap.insert(std::make_pair(sm,aResVec));
797
798   return true;
799 }
800
801 //================================================================================
802 /*!
803  * \brief Computes hexahedral mesh from 2D mesh of block
804  */
805 //================================================================================
806
807 bool StdMeshers_Hexa_3D::Compute(SMESH_Mesh & aMesh, SMESH_MesherHelper* aHelper)
808 {
809   static StdMeshers_HexaFromSkin_3D * algo = 0;
810   if ( !algo ) {
811     SMESH_Gen* gen = aMesh.GetGen();
812     algo = new StdMeshers_HexaFromSkin_3D( gen->GetANewId(), gen );
813   }
814   algo->InitComputeError();
815   algo->Compute( aMesh, aHelper );
816   return error( algo->GetComputeError());
817 }
818
819 //================================================================================
820 /*!
821  * \brief Return true if the algorithm can mesh this shape
822  *  \param [in] aShape - shape to check
823  *  \param [in] toCheckAll - if true, this check returns OK if all shapes are OK,
824  *              else, returns OK if at least one shape is OK
825  */
826 //================================================================================
827
828 bool StdMeshers_Hexa_3D::IsApplicable( const TopoDS_Shape & aShape, bool toCheckAll )
829 {
830   TopExp_Explorer exp0( aShape, TopAbs_SOLID );
831   if ( !exp0.More() ) return false;
832
833   for ( ; exp0.More(); exp0.Next() )
834   {
835     int nbFoundShells = 0;
836     TopExp_Explorer exp1( exp0.Current(), TopAbs_SHELL );
837     for ( ; exp1.More(); exp1.Next(), ++nbFoundShells)
838       if ( nbFoundShells == 2 ) break;
839     if ( nbFoundShells != 1 ) {
840       if ( toCheckAll ) return false;
841       continue;
842     }   
843     exp1.Init( exp0.Current(), TopAbs_FACE );
844     int nbEdges = SMESH_MesherHelper::Count( exp1.Current(), TopAbs_EDGE, /*ignoreSame=*/true );
845     bool ok = ( nbEdges > 3 );
846     if ( toCheckAll && !ok ) return false;
847     if ( !toCheckAll && ok ) return true;
848   }
849   return toCheckAll;
850 };
851
852 //=======================================================================
853 //function : ComputePentahedralMesh
854 //purpose  : 
855 //=======================================================================
856
857 SMESH_ComputeErrorPtr ComputePentahedralMesh(SMESH_Mesh &          aMesh,
858                                              const TopoDS_Shape &  aShape,
859                                              SMESH_ProxyMesh*      proxyMesh)
860 {
861   SMESH_ComputeErrorPtr err = SMESH_ComputeError::New();
862   if ( proxyMesh )
863   {
864     err->myName = COMPERR_BAD_INPUT_MESH;
865     err->myComment = "Can't build pentahedral mesh on viscous layers";
866     return err;
867   }
868   bool bOK;
869   StdMeshers_Penta_3D anAlgo;
870   //
871   bOK=anAlgo.Compute(aMesh, aShape);
872   //
873   err = anAlgo.GetComputeError();
874   //
875   if ( !bOK && anAlgo.ErrorStatus() == 5 )
876   {
877     static StdMeshers_Prism_3D * aPrism3D = 0;
878     if ( !aPrism3D ) {
879       SMESH_Gen* gen = aMesh.GetGen();
880       aPrism3D = new StdMeshers_Prism_3D( gen->GetANewId(), gen );
881     }
882     SMESH_Hypothesis::Hypothesis_Status aStatus;
883     if ( aPrism3D->CheckHypothesis( aMesh, aShape, aStatus ) ) {
884       aPrism3D->InitComputeError();
885       bOK = aPrism3D->Compute( aMesh, aShape );
886       err = aPrism3D->GetComputeError();
887     }
888   }
889   return err;
890 }
891
892
893 //=======================================================================
894 //function : EvaluatePentahedralMesh
895 //purpose  : 
896 //=======================================================================
897
898 bool EvaluatePentahedralMesh(SMESH_Mesh & aMesh,
899                              const TopoDS_Shape & aShape,
900                              MapShapeNbElems& aResMap)
901 {
902   StdMeshers_Penta_3D anAlgo;
903   bool bOK = anAlgo.Evaluate(aMesh, aShape, aResMap);
904
905   //err = anAlgo.GetComputeError();
906   //if ( !bOK && anAlgo.ErrorStatus() == 5 )
907   if( !bOK ) {
908     static StdMeshers_Prism_3D * aPrism3D = 0;
909     if ( !aPrism3D ) {
910       SMESH_Gen* gen = aMesh.GetGen();
911       aPrism3D = new StdMeshers_Prism_3D( gen->GetANewId(), gen );
912     }
913     SMESH_Hypothesis::Hypothesis_Status aStatus;
914     if ( aPrism3D->CheckHypothesis( aMesh, aShape, aStatus ) ) {
915       return aPrism3D->Evaluate(aMesh, aShape, aResMap);
916     }
917   }
918
919   return bOK;
920 }