Salome HOME
SMESH_Gen::_map1D_Algo no longer exists
[modules/smesh.git] / src / StdMeshers / StdMeshers_RadialPrism_3D.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESH : implementaion of SMESH idl descriptions
24 // File      : StdMeshers_RadialPrism_3D.cxx
25 // Module    : SMESH
26 // Created   : Fri Oct 20 11:37:07 2006
27 // Author    : Edward AGAPOV (eap)
28 //
29
30 #include "StdMeshers_RadialPrism_3D.hxx"
31
32 #include <Basics_OCCTVersion.hxx>
33
34 #include "StdMeshers_ProjectionUtils.hxx"
35 #include "StdMeshers_NumberOfLayers.hxx"
36 #include "StdMeshers_LayerDistribution.hxx"
37 #include "StdMeshers_Prism_3D.hxx"
38 #include "StdMeshers_Regular_1D.hxx"
39
40 #include "SMDS_MeshNode.hxx"
41 #include "SMESHDS_SubMesh.hxx"
42 #include "SMESH_Gen.hxx"
43 #include "SMESH_Mesh.hxx"
44 #include "SMESH_MesherHelper.hxx"
45 #include "SMESH_subMesh.hxx"
46
47 #include "utilities.h"
48
49 #include <BRepAdaptor_Curve.hxx>
50 #include <BRepBuilderAPI_MakeEdge.hxx>
51 #if OCC_VERSION_LARGE > 0x06050400
52 #include <BRepClass3d.hxx>
53 #else
54 #include <BRepTools.hxx>
55 #endif
56 #include <BRep_Tool.hxx>
57 #include <TopExp_Explorer.hxx>
58 #include <TopoDS.hxx>
59 #include <TopoDS_Shell.hxx>
60 #include <TopoDS_Solid.hxx>
61 #include <TopTools_MapOfShape.hxx>
62 #include <gp.hxx>
63 #include <gp_Pnt.hxx>
64
65 using namespace std;
66
67 #define RETURN_BAD_RESULT(msg) { MESSAGE(")-: Error: " << msg); return false; }
68 #define gpXYZ(n) gp_XYZ(n->X(),n->Y(),n->Z())
69
70 namespace TAssocTool = StdMeshers_ProjectionUtils;
71
72 //=======================================================================
73 //function : StdMeshers_RadialPrism_3D
74 //purpose  : 
75 //=======================================================================
76
77 StdMeshers_RadialPrism_3D::StdMeshers_RadialPrism_3D(int hypId, int studyId, SMESH_Gen* gen)
78   :SMESH_3D_Algo(hypId, studyId, gen)
79 {
80   _name = "RadialPrism_3D";
81   _shapeType = (1 << TopAbs_SOLID);     // 1 bit per shape type
82
83   _compatibleHypothesis.push_back("LayerDistribution");
84   _compatibleHypothesis.push_back("NumberOfLayers");
85   myNbLayerHypo = 0;
86   myDistributionHypo = 0;
87 }
88
89 //================================================================================
90 /*!
91  * \brief Destructor
92  */
93 //================================================================================
94
95 StdMeshers_RadialPrism_3D::~StdMeshers_RadialPrism_3D()
96 {}
97
98 //=======================================================================
99 //function : CheckHypothesis
100 //purpose  : 
101 //=======================================================================
102
103 bool StdMeshers_RadialPrism_3D::CheckHypothesis(SMESH_Mesh&                          aMesh,
104                                                 const TopoDS_Shape&                  aShape,
105                                                 SMESH_Hypothesis::Hypothesis_Status& aStatus)
106 {
107   // check aShape that must have 2 shells
108 /*  PAL16229
109   if ( TAssocTool::Count( aShape, TopAbs_SOLID, 0 ) != 1 ||
110        TAssocTool::Count( aShape, TopAbs_SHELL, 0 ) != 2 )
111   {
112     aStatus = HYP_BAD_GEOMETRY;
113     return false;
114   }
115 */
116   myNbLayerHypo = 0;
117   myDistributionHypo = 0;
118
119   list <const SMESHDS_Hypothesis * >::const_iterator itl;
120
121   const list <const SMESHDS_Hypothesis * >&hyps = GetUsedHypothesis(aMesh, aShape);
122   if ( hyps.size() == 0 )
123   {
124     aStatus = SMESH_Hypothesis::HYP_MISSING;
125     return false;  // can't work with no hypothesis
126   }
127
128   if ( hyps.size() > 1 )
129   {
130     aStatus = SMESH_Hypothesis::HYP_ALREADY_EXIST;
131     return false;
132   }
133
134   const SMESHDS_Hypothesis *theHyp = hyps.front();
135
136   string hypName = theHyp->GetName();
137
138   if (hypName == "NumberOfLayers")
139   {
140     myNbLayerHypo = static_cast<const StdMeshers_NumberOfLayers *>(theHyp);
141     aStatus = SMESH_Hypothesis::HYP_OK;
142     return true;
143   }
144   if (hypName == "LayerDistribution")
145   {
146     myDistributionHypo = static_cast<const StdMeshers_LayerDistribution *>(theHyp);
147     aStatus = SMESH_Hypothesis::HYP_OK;
148     return true;
149   }
150   aStatus = SMESH_Hypothesis::HYP_INCOMPATIBLE;
151   return true;
152 }
153
154 //=======================================================================
155 //function : Compute
156 //purpose  : 
157 //=======================================================================
158
159 bool StdMeshers_RadialPrism_3D::Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape)
160 {
161   TopExp_Explorer exp;
162   SMESHDS_Mesh * meshDS = aMesh.GetMeshDS();
163
164   myHelper = new SMESH_MesherHelper( aMesh );
165   myHelper->IsQuadraticSubMesh( aShape );
166   // to delete helper at exit from Compute()
167   std::auto_ptr<SMESH_MesherHelper> helperDeleter( myHelper );
168
169   // get 2 shells
170   TopoDS_Solid solid = TopoDS::Solid( aShape );
171 #if OCC_VERSION_LARGE > 0x06050400
172   TopoDS_Shell outerShell = BRepClass3d::OuterShell( solid );
173 #else
174   TopoDS_Shell outerShell = BRepTools::OuterShell( solid );
175 #endif
176   TopoDS_Shape innerShell;
177   int nbShells = 0;
178   for ( TopoDS_Iterator It (solid); It.More(); It.Next(), ++nbShells )
179     if ( !outerShell.IsSame( It.Value() ))
180       innerShell = It.Value();
181   if ( nbShells != 2 )
182     return error(COMPERR_BAD_SHAPE, SMESH_Comment("Must be 2 shells but not ")<<nbShells);
183
184   // ----------------------------------
185   // Associate sub-shapes of the shells
186   // ----------------------------------
187
188   TAssocTool::TShapeShapeMap shape2ShapeMap;
189   if ( !TAssocTool::FindSubShapeAssociation( innerShell, &aMesh,
190                                              outerShell, &aMesh,
191                                              shape2ShapeMap) )
192     return error(COMPERR_BAD_SHAPE,"Topology of inner and outer shells seems different" );
193
194   // ------------------
195   // Make mesh
196   // ------------------
197
198   TNode2ColumnMap node2columnMap;
199   myLayerPositions.clear();
200
201   for ( exp.Init( outerShell, TopAbs_FACE ); exp.More(); exp.Next() )
202   {
203     // Corresponding sub-shapes
204     TopoDS_Face outFace = TopoDS::Face( exp.Current() );
205     TopoDS_Face inFace;
206     if ( !shape2ShapeMap.IsBound( outFace, /*isOut=*/true )) {
207       return error(SMESH_Comment("Corresponding inner face not found for face #" )
208                    << meshDS->ShapeToIndex( outFace ));
209     } else {
210       inFace = TopoDS::Face( shape2ShapeMap( outFace, /*isOut=*/true ));
211     }
212
213     // Find matching nodes of in and out faces
214     TNodeNodeMap nodeIn2OutMap;
215     if ( ! TAssocTool::FindMatchingNodesOnFaces( inFace, &aMesh, outFace, &aMesh,
216                                                  shape2ShapeMap, nodeIn2OutMap ))
217       return error(COMPERR_BAD_INPUT_MESH,SMESH_Comment("Mesh on faces #")
218                    << meshDS->ShapeToIndex( outFace ) << " and "
219                    << meshDS->ShapeToIndex( inFace ) << " seems different" );
220
221     // Create volumes
222
223     SMDS_ElemIteratorPtr faceIt = meshDS->MeshElements( inFace )->GetElements();
224     while ( faceIt->more() ) // loop on faces on inFace
225     {
226       const SMDS_MeshElement* face = faceIt->next();
227       if ( !face || face->GetType() != SMDSAbs_Face )
228         continue;
229       int nbNodes = face->NbNodes();
230       if ( face->IsQuadratic() )
231         nbNodes /= 2;
232
233       // find node columns for each node
234       vector< const TNodeColumn* > columns( nbNodes );
235       for ( int i = 0; i < nbNodes; ++i )
236       {
237         const SMDS_MeshNode* nIn = face->GetNode( i );
238         TNode2ColumnMap::iterator n_col = node2columnMap.find( nIn );
239         if ( n_col != node2columnMap.end() ) {
240           columns[ i ] = & n_col->second;
241         }
242         else {
243           TNodeNodeMap::iterator nInOut = nodeIn2OutMap.find( nIn );
244           if ( nInOut == nodeIn2OutMap.end() )
245             RETURN_BAD_RESULT("No matching node for "<< nIn->GetID() <<
246                               " in face "<< face->GetID());
247           columns[ i ] = makeNodeColumn( node2columnMap, nIn, nInOut->second );
248         }
249       }
250
251       StdMeshers_Prism_3D::AddPrisms( columns, myHelper );
252     }
253   } // loop on faces of out shell
254
255   return true;
256 }
257
258 //================================================================================
259 /*!
260  * \brief Create a column of nodes from outNode to inNode
261   * \param n2ColMap - map of node columns to add a created column
262   * \param outNode - botton node of a column
263   * \param inNode - top node of a column
264   * \retval const TNodeColumn* - a new column pointer
265  */
266 //================================================================================
267
268 TNodeColumn* StdMeshers_RadialPrism_3D::makeNodeColumn( TNode2ColumnMap&     n2ColMap,
269                                                         const SMDS_MeshNode* outNode,
270                                                         const SMDS_MeshNode* inNode)
271 {
272   SMESHDS_Mesh * meshDS = myHelper->GetMeshDS();
273   int shapeID = myHelper->GetSubShapeID();
274
275   if ( myLayerPositions.empty() ) {
276     gp_Pnt pIn = gpXYZ( inNode ), pOut = gpXYZ( outNode );
277     computeLayerPositions( pIn, pOut );
278   }
279   int nbSegments = myLayerPositions.size() + 1;
280
281   TNode2ColumnMap::iterator n_col =
282     n2ColMap.insert( make_pair( outNode, TNodeColumn() )).first;
283   TNodeColumn & column = n_col->second;
284   column.resize( nbSegments + 1 );
285   column.front() = outNode;
286   column.back() =  inNode;
287
288   gp_XYZ p1 = gpXYZ( outNode );
289   gp_XYZ p2 = gpXYZ( inNode );
290   for ( int z = 1; z < nbSegments; ++z )
291   {
292     double r = myLayerPositions[ z - 1 ];
293     gp_XYZ p = ( 1 - r ) * p1 + r * p2;
294     SMDS_MeshNode* n = meshDS->AddNode( p.X(), p.Y(), p.Z() );
295     meshDS->SetNodeInVolume( n, shapeID );
296     column[ z ] = n;
297   }
298
299   return & column;
300 }
301
302 //================================================================================
303 //================================================================================
304 /*!
305  * \brief Class computing layers distribution using data of
306  *        StdMeshers_LayerDistribution hypothesis
307  */
308 //================================================================================
309 //================================================================================
310
311 class TNodeDistributor: public StdMeshers_Regular_1D
312 {
313   list <const SMESHDS_Hypothesis *> myUsedHyps;
314 public:
315   // -----------------------------------------------------------------------------
316   static TNodeDistributor* GetDistributor(SMESH_Mesh& aMesh)
317   {
318     const int myID = -1000;
319     TNodeDistributor* myHyp = dynamic_cast<TNodeDistributor*>( aMesh.GetHypothesis( myID ));
320     if ( !myHyp )
321       myHyp = new TNodeDistributor( myID, 0, aMesh.GetGen() );
322     return myHyp;
323   }
324   // -----------------------------------------------------------------------------
325   bool Compute( vector< double > &                  positions,
326                 gp_Pnt                              pIn,
327                 gp_Pnt                              pOut,
328                 SMESH_Mesh&                         aMesh,
329                 const StdMeshers_LayerDistribution* hyp)
330   {
331     double len = pIn.Distance( pOut );
332     if ( len <= DBL_MIN ) return error("Too close points of inner and outer shells");
333
334     if ( !hyp || !hyp->GetLayerDistribution() )
335       return error( "Invalid LayerDistribution hypothesis");
336     myUsedHyps.clear();
337     myUsedHyps.push_back( hyp->GetLayerDistribution() );
338
339     TopoDS_Edge edge = BRepBuilderAPI_MakeEdge( pIn, pOut );
340     SMESH_Hypothesis::Hypothesis_Status aStatus;
341     if ( !StdMeshers_Regular_1D::CheckHypothesis( aMesh, edge, aStatus ))
342       return error( "StdMeshers_Regular_1D::CheckHypothesis() failed "
343                     "with LayerDistribution hypothesis");
344
345     BRepAdaptor_Curve C3D(edge);
346     double f = C3D.FirstParameter(), l = C3D.LastParameter();
347     list< double > params;
348     if ( !StdMeshers_Regular_1D::computeInternalParameters( aMesh, C3D, len, f, l, params, false ))
349       return error("StdMeshers_Regular_1D failed to compute layers distribution");
350
351     positions.clear();
352     positions.reserve( params.size() );
353     for (list<double>::iterator itU = params.begin(); itU != params.end(); itU++)
354       positions.push_back( *itU / len );
355     return true;
356   }
357 protected:
358   // -----------------------------------------------------------------------------
359   TNodeDistributor( int hypId, int studyId, SMESH_Gen* gen)
360     : StdMeshers_Regular_1D( hypId, studyId, gen)
361   {
362   }
363   // -----------------------------------------------------------------------------
364   virtual const list <const SMESHDS_Hypothesis *> &
365     GetUsedHypothesis(SMESH_Mesh &, const TopoDS_Shape &, const bool)
366   {
367     return myUsedHyps;
368   }
369   // -----------------------------------------------------------------------------
370 };
371
372 //================================================================================
373 /*!
374  * \brief Compute positions of nodes between the internal and the external surfaces
375   * \retval bool - is a success
376  */
377 //================================================================================
378
379 bool StdMeshers_RadialPrism_3D::computeLayerPositions(const gp_Pnt& pIn,
380                                                       const gp_Pnt& pOut)
381 {
382   if ( myNbLayerHypo )
383   {
384     int nbSegments = myNbLayerHypo->GetNumberOfLayers();
385     myLayerPositions.resize( nbSegments - 1 );
386     for ( int z = 1; z < nbSegments; ++z )
387       myLayerPositions[ z - 1 ] = double( z )/ double( nbSegments );
388     return true;
389   }
390   if ( myDistributionHypo ) {
391     SMESH_Mesh * mesh = myHelper->GetMesh();
392     if ( !TNodeDistributor::GetDistributor(*mesh)->Compute( myLayerPositions, pIn, pOut,
393                                                             *mesh, myDistributionHypo ))
394     {
395       error( TNodeDistributor::GetDistributor(*mesh)->GetComputeError() );
396       return false;
397     }
398   }
399   RETURN_BAD_RESULT("Bad hypothesis");
400 }
401
402
403 //=======================================================================
404 //function : Evaluate
405 //purpose  : 
406 //=======================================================================
407
408 bool StdMeshers_RadialPrism_3D::Evaluate(SMESH_Mesh& aMesh,
409                                          const TopoDS_Shape& aShape,
410                                          MapShapeNbElems& aResMap)
411 {
412   // get 2 shells
413   TopoDS_Solid solid = TopoDS::Solid( aShape );
414 #if OCC_VERSION_LARGE > 0x06050400
415   TopoDS_Shell outerShell = BRepClass3d::OuterShell( solid );
416 #else
417   TopoDS_Shell outerShell = BRepTools::OuterShell( solid );
418 #endif
419   TopoDS_Shape innerShell;
420   int nbShells = 0;
421   for ( TopoDS_Iterator It (solid); It.More(); It.Next(), ++nbShells )
422     if ( !outerShell.IsSame( It.Value() ))
423       innerShell = It.Value();
424   if ( nbShells != 2 ) {
425     std::vector<int> aResVec(SMDSEntity_Last);
426     for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
427     SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
428     aResMap.insert(std::make_pair(sm,aResVec));
429     SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
430     smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
431     return false;
432   }
433
434   // Associate sub-shapes of the shells
435   TAssocTool::TShapeShapeMap shape2ShapeMap;
436   if ( !TAssocTool::FindSubShapeAssociation( outerShell, &aMesh,
437                                              innerShell, &aMesh,
438                                              shape2ShapeMap) ) {
439     std::vector<int> aResVec(SMDSEntity_Last);
440     for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
441     SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
442     aResMap.insert(std::make_pair(sm,aResVec));
443     SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
444     smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
445     return false;
446   }
447
448   // get info for outer shell
449   int nb0d_Out=0, nb2d_3_Out=0, nb2d_4_Out=0;
450   //TopTools_SequenceOfShape FacesOut;
451   for (TopExp_Explorer exp(outerShell, TopAbs_FACE); exp.More(); exp.Next()) {
452     //FacesOut.Append(exp.Current());
453     SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(exp.Current());
454     MapShapeNbElemsItr anIt = aResMap.find(aSubMesh);
455     std::vector<int> aVec = (*anIt).second;
456     nb0d_Out += aVec[SMDSEntity_Node];
457     nb2d_3_Out += Max(aVec[SMDSEntity_Triangle],aVec[SMDSEntity_Quad_Triangle]);
458     nb2d_4_Out += Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
459   }
460   int nb1d_Out = 0;
461   TopTools_MapOfShape tmpMap;
462   for (TopExp_Explorer exp(outerShell, TopAbs_EDGE); exp.More(); exp.Next()) {
463     if( tmpMap.Contains( exp.Current() ) )
464       continue;
465     tmpMap.Add( exp.Current() );
466     SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(exp.Current());
467     MapShapeNbElemsItr anIt = aResMap.find(aSubMesh);
468     std::vector<int> aVec = (*anIt).second;
469     nb0d_Out += aVec[SMDSEntity_Node];
470     nb1d_Out += Max(aVec[SMDSEntity_Edge],aVec[SMDSEntity_Quad_Edge]);
471   }
472   tmpMap.Clear();
473   for (TopExp_Explorer exp(outerShell, TopAbs_VERTEX); exp.More(); exp.Next()) {
474     if( tmpMap.Contains( exp.Current() ) )
475       continue;
476     tmpMap.Add( exp.Current() );
477     nb0d_Out++;
478   }
479
480   // get info for inner shell
481   int nb0d_In=0, nb2d_3_In=0, nb2d_4_In=0;
482   //TopTools_SequenceOfShape FacesIn;
483   for (TopExp_Explorer exp(innerShell, TopAbs_FACE); exp.More(); exp.Next()) {
484     //FacesIn.Append(exp.Current());
485     SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(exp.Current());
486     MapShapeNbElemsItr anIt = aResMap.find(aSubMesh);
487     std::vector<int> aVec = (*anIt).second;
488     nb0d_In += aVec[SMDSEntity_Node];
489     nb2d_3_In += Max(aVec[SMDSEntity_Triangle],aVec[SMDSEntity_Quad_Triangle]);
490     nb2d_4_In += Max(aVec[SMDSEntity_Quadrangle],aVec[SMDSEntity_Quad_Quadrangle]);
491   }
492   int nb1d_In = 0;
493   tmpMap.Clear();
494   bool IsQuadratic = false;
495   bool IsFirst = true;
496   for (TopExp_Explorer exp(innerShell, TopAbs_EDGE); exp.More(); exp.Next()) {
497     if( tmpMap.Contains( exp.Current() ) )
498       continue;
499     tmpMap.Add( exp.Current() );
500     SMESH_subMesh *aSubMesh = aMesh.GetSubMesh(exp.Current());
501     MapShapeNbElemsItr anIt = aResMap.find(aSubMesh);
502     std::vector<int> aVec = (*anIt).second;
503     nb0d_In += aVec[SMDSEntity_Node];
504     nb1d_In += Max(aVec[SMDSEntity_Edge],aVec[SMDSEntity_Quad_Edge]);
505     if(IsFirst) {
506       IsQuadratic = (aVec[SMDSEntity_Quad_Edge] > aVec[SMDSEntity_Edge]);
507       IsFirst = false;
508     }
509   }
510   tmpMap.Clear();
511   for (TopExp_Explorer exp(innerShell, TopAbs_VERTEX); exp.More(); exp.Next()) {
512     if( tmpMap.Contains( exp.Current() ) )
513       continue;
514     tmpMap.Add( exp.Current() );
515     nb0d_In++;
516   }
517
518   bool IsOK = (nb0d_Out==nb0d_In) && (nb1d_Out==nb1d_In) && 
519               (nb2d_3_Out==nb2d_3_In) && (nb2d_4_Out==nb2d_4_In);
520   if(!IsOK) {
521     std::vector<int> aResVec(SMDSEntity_Last);
522     for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
523     SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
524     aResMap.insert(std::make_pair(sm,aResVec));
525     SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
526     smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
527     return false;
528   }
529
530   int nbLayers = 0;
531   if( myNbLayerHypo ) {
532     nbLayers = myNbLayerHypo->GetNumberOfLayers();
533   }
534   if ( myDistributionHypo ) {
535     if ( !myDistributionHypo->GetLayerDistribution() ) {
536       std::vector<int> aResVec(SMDSEntity_Last);
537       for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
538       SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
539       aResMap.insert(std::make_pair(sm,aResVec));
540       SMESH_ComputeErrorPtr& smError = sm->GetComputeError();
541       smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED,"Submesh can not be evaluated",this));
542       return false;
543     }
544     TopExp_Explorer exp(outerShell, TopAbs_VERTEX);
545     TopoDS_Vertex Vout = TopoDS::Vertex(exp.Current());
546     TopoDS_Vertex Vin = TopoDS::Vertex( shape2ShapeMap(Vout) );
547     if ( myLayerPositions.empty() ) {
548       gp_Pnt pIn = BRep_Tool::Pnt(Vin);
549       gp_Pnt pOut = BRep_Tool::Pnt(Vout);
550       computeLayerPositions( pIn, pOut );
551     }
552     nbLayers = myLayerPositions.size() + 1;
553   }
554
555   std::vector<int> aResVec(SMDSEntity_Last);
556   for(int i=SMDSEntity_Node; i<SMDSEntity_Last; i++) aResVec[i] = 0;
557   if(IsQuadratic) {
558     aResVec[SMDSEntity_Quad_Penta] = nb2d_3_Out * nbLayers;
559     aResVec[SMDSEntity_Quad_Hexa] = nb2d_4_Out * nbLayers;
560     int nb1d = ( nb2d_3_Out*3 + nb2d_4_Out*4 ) / 2;
561     aResVec[SMDSEntity_Node] = nb0d_Out * ( 2*nbLayers - 1 ) - nb1d * nbLayers;
562   }
563   else {
564     aResVec[SMDSEntity_Node] = nb0d_Out * ( nbLayers - 1 );
565     aResVec[SMDSEntity_Penta] = nb2d_3_Out * nbLayers;
566     aResVec[SMDSEntity_Hexa] = nb2d_4_Out * nbLayers;
567   }
568   SMESH_subMesh * sm = aMesh.GetSubMesh(aShape);
569   aResMap.insert(std::make_pair(sm,aResVec));
570
571   return true;
572 }