Salome HOME
Fix compilation problems on Mandriva64 and Mandriva
[modules/smesh.git] / src / StdMeshers / StdMeshers_RadialPrism_3D.cxx
1 //  SMESH SMESH : implementaion of SMESH idl descriptions
2 //
3 //  Copyright (C) 2003  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 //
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 "StdMeshers_ProjectionUtils.hxx"
33 #include "StdMeshers_NumberOfLayers.hxx"
34 #include "StdMeshers_LayerDistribution.hxx"
35 #include "StdMeshers_Prism_3D.hxx"
36 #include "StdMeshers_Regular_1D.hxx"
37
38 #include "SMDS_MeshNode.hxx"
39 #include "SMESHDS_SubMesh.hxx"
40 #include "SMESH_Gen.hxx"
41 #include "SMESH_Mesh.hxx"
42 #include "SMESH_MeshEditor.hxx"
43 #include "SMESH_MesherHelper.hxx"
44 #include "SMESH_subMesh.hxx"
45
46 #include "utilities.h"
47
48 #include <TopoDS_Solid.hxx>
49 #include <TopoDS_Shell.hxx>
50 #include <BRepTools.hxx>
51 #include <BRepAdaptor_Curve.hxx>
52 #include <TopTools_ListIteratorOfListOfShape.hxx>
53 #include <BRepBuilderAPI_MakeEdge.hxx>
54 #include <gp.hxx>
55 #include <gp_Pnt.hxx>
56
57
58 using namespace std;
59
60 #define RETURN_BAD_RESULT(msg) { MESSAGE(msg); return false; }
61 #define gpXYZ(n) gp_XYZ(n->X(),n->Y(),n->Z())
62
63 typedef StdMeshers_ProjectionUtils TAssocTool;
64
65 //=======================================================================
66 //function : StdMeshers_RadialPrism_3D
67 //purpose  : 
68 //=======================================================================
69
70 StdMeshers_RadialPrism_3D::StdMeshers_RadialPrism_3D(int hypId, int studyId, SMESH_Gen* gen)
71   :SMESH_3D_Algo(hypId, studyId, gen)
72 {
73   _name = "RadialPrism_3D";
74   _shapeType = (1 << TopAbs_SOLID);     // 1 bit per shape type
75
76   _compatibleHypothesis.push_back("LayerDistribution");
77   _compatibleHypothesis.push_back("NumberOfLayers");
78   myNbLayerHypo = 0;
79   myDistributionHypo = 0;
80 }
81
82 //================================================================================
83 /*!
84  * \brief Destructor
85  */
86 //================================================================================
87
88 StdMeshers_RadialPrism_3D::~StdMeshers_RadialPrism_3D()
89 {}
90
91 //=======================================================================
92 //function : CheckHypothesis
93 //purpose  : 
94 //=======================================================================
95
96 bool StdMeshers_RadialPrism_3D::CheckHypothesis(SMESH_Mesh&                          aMesh,
97                                                 const TopoDS_Shape&                  aShape,
98                                                 SMESH_Hypothesis::Hypothesis_Status& aStatus)
99 {
100   // check aShape that must have 2 shells
101   if ( TAssocTool::Count( aShape, TopAbs_SOLID, 0 ) != 1 ||
102        TAssocTool::Count( aShape, TopAbs_SHELL, 0 ) != 2 )
103   {
104     aStatus = HYP_BAD_GEOMETRY;
105     return false;
106   }
107
108   myNbLayerHypo = 0;
109   myDistributionHypo = 0;
110
111   list <const SMESHDS_Hypothesis * >::const_iterator itl;
112
113   const list <const SMESHDS_Hypothesis * >&hyps = GetUsedHypothesis(aMesh, aShape);
114   if ( hyps.size() == 0 )
115   {
116     aStatus = SMESH_Hypothesis::HYP_MISSING;
117     return false;  // can't work with no hypothesis
118   }
119
120   if ( hyps.size() > 1 )
121   {
122     aStatus = SMESH_Hypothesis::HYP_ALREADY_EXIST;
123     return false;
124   }
125
126   const SMESHDS_Hypothesis *theHyp = hyps.front();
127
128   string hypName = theHyp->GetName();
129
130   if (hypName == "NumberOfLayers")
131   {
132     myNbLayerHypo = static_cast<const StdMeshers_NumberOfLayers *>(theHyp);
133     aStatus = SMESH_Hypothesis::HYP_OK;
134     return true;
135   }
136   if (hypName == "LayerDistribution")
137   {
138     myDistributionHypo = static_cast<const StdMeshers_LayerDistribution *>(theHyp);
139     aStatus = SMESH_Hypothesis::HYP_OK;
140     return true;
141   }
142   aStatus = SMESH_Hypothesis::HYP_INCOMPATIBLE;
143   return true;
144 }
145
146 //=======================================================================
147 //function : Compute
148 //purpose  : 
149 //=======================================================================
150
151 bool StdMeshers_RadialPrism_3D::Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape)
152 {
153   TopExp_Explorer exp;
154   SMESHDS_Mesh * meshDS = aMesh.GetMeshDS();
155
156   myHelper = new SMESH_MesherHelper( aMesh );
157   myHelper->IsQuadraticSubMesh( aShape );
158   // to delete helper at exit from Compute()
159   std::auto_ptr<SMESH_MesherHelper> helperDeleter( myHelper );
160
161   // get 2 shells 
162   TopoDS_Solid solid = TopoDS::Solid( aShape );
163   TopoDS_Shell outerShell = BRepTools::OuterShell( solid );
164   TopoDS_Shape innerShell;
165   int nbShells = 0;
166   for ( TopoDS_Iterator It (solid); It.More(); It.Next(), ++nbShells )
167     if ( !outerShell.IsSame( It.Value() ))
168       innerShell = It.Value();
169   if ( nbShells != 2 )
170     return error(COMPERR_BAD_SHAPE, SMESH_Comment("Must be 2 shells but not")<<nbShells);
171
172   // ----------------------------------
173   // Associate subshapes of the shells
174   // ----------------------------------
175
176   TAssocTool::TShapeShapeMap shape2ShapeMap;
177   if ( !TAssocTool::FindSubShapeAssociation( outerShell, &aMesh,
178                                              innerShell, &aMesh,
179                                              shape2ShapeMap) )
180     return error(COMPERR_BAD_SHAPE,"Topology of inner and outer shells seems different" );
181
182   // ------------------
183   // Make mesh
184   // ------------------
185
186   TNode2ColumnMap node2columnMap;
187   myLayerPositions.clear();
188
189   for ( exp.Init( outerShell, TopAbs_FACE ); exp.More(); exp.Next() )
190   {
191     // Corresponding subshapes
192     TopoDS_Face outFace = TopoDS::Face( exp.Current() );
193     TopoDS_Face inFace;
194     if ( !shape2ShapeMap.IsBound( outFace )) {
195       return error(dfltErr(),SMESH_Comment("Corresponding inner face not found for face #" )
196                    << meshDS->ShapeToIndex( outFace ));
197     } else {
198       inFace = TopoDS::Face( shape2ShapeMap( outFace ));
199     }
200
201     // Find matching nodes of in and out faces
202     TNodeNodeMap nodeIn2OutMap;
203     if ( ! TAssocTool::FindMatchingNodesOnFaces( inFace, &aMesh, outFace, &aMesh,
204                                                  shape2ShapeMap, nodeIn2OutMap ))
205       return error(COMPERR_BAD_INPUT_MESH,SMESH_Comment("Mesh on faces #")
206                    << meshDS->ShapeToIndex( outFace ) << " and "
207                    << meshDS->ShapeToIndex( inFace ) << " seems different" );
208
209     // Create volumes
210
211     SMDS_ElemIteratorPtr faceIt = meshDS->MeshElements( inFace )->GetElements();
212     while ( faceIt->more() ) // loop on faces on inFace
213     {
214       const SMDS_MeshElement* face = faceIt->next();
215       if ( !face || face->GetType() != SMDSAbs_Face )
216         continue;
217       int nbNodes = face->NbNodes();
218       if ( face->IsQuadratic() )
219         nbNodes /= 2;
220
221       // find node columns for each node
222       vector< const TNodeColumn* > columns( nbNodes );
223       for ( int i = 0; i < nbNodes; ++i )
224       {
225         const SMDS_MeshNode* n = face->GetNode( i );
226         TNode2ColumnMap::iterator n_col = node2columnMap.find( n );
227         if ( n_col != node2columnMap.end() )
228           columns[ i ] = & n_col->second;
229         else
230           columns[ i ] = makeNodeColumn( node2columnMap, n, nodeIn2OutMap[ n ] );
231       }
232
233       StdMeshers_Prism_3D::AddPrisms( columns, myHelper );
234     }
235   } // loop on faces of out shell
236
237   return true;
238 }
239
240 //================================================================================
241 /*!
242  * \brief Create a column of nodes from outNode to inNode
243   * \param n2ColMap - map of node columns to add a created column
244   * \param outNode - botton node of a column
245   * \param inNode - top node of a column
246   * \retval const TNodeColumn* - a new column pointer
247  */
248 //================================================================================
249
250 TNodeColumn* StdMeshers_RadialPrism_3D::makeNodeColumn( TNode2ColumnMap&     n2ColMap,
251                                                         const SMDS_MeshNode* outNode,
252                                                         const SMDS_MeshNode* inNode)
253 {
254   SMESHDS_Mesh * meshDS = myHelper->GetMeshDS();
255   int shapeID = myHelper->GetSubShapeID();
256
257   if ( myLayerPositions.empty() ) {
258     gp_Pnt pIn = gpXYZ( inNode ), pOut = gpXYZ( outNode );
259     computeLayerPositions( pIn, pOut );
260   }
261   int nbSegments = myLayerPositions.size() + 1;
262
263   TNode2ColumnMap::iterator n_col =
264     n2ColMap.insert( make_pair( outNode, TNodeColumn() )).first;
265   TNodeColumn & column = n_col->second;
266   column.resize( nbSegments + 1 );
267   column.front() = outNode;
268   column.back() =  inNode;
269
270   gp_XYZ p1 = gpXYZ( outNode );
271   gp_XYZ p2 = gpXYZ( inNode );
272   for ( int z = 1; z < nbSegments; ++z )
273   {
274     double r = myLayerPositions[ z - 1 ];
275     gp_XYZ p = ( 1 - r ) * p1 + r * p2;
276     SMDS_MeshNode* n = meshDS->AddNode( p.X(), p.Y(), p.Z() );
277     meshDS->SetNodeInVolume( n, shapeID );
278     column[ z ] = n;
279   }
280
281   return & column;
282 }
283
284 //================================================================================
285 //================================================================================
286 /*!
287  * \brief Class computing layers distribution using data of
288  *        StdMeshers_LayerDistribution hypothesis
289  */
290 //================================================================================
291 //================================================================================
292
293 class TNodeDistributor: public StdMeshers_Regular_1D
294 {
295   list <const SMESHDS_Hypothesis *> myUsedHyps;
296 public:
297   // -----------------------------------------------------------------------------
298   static TNodeDistributor* GetDistributor(SMESH_Mesh& aMesh)
299   {
300     const int myID = -1000;
301     map < int, SMESH_1D_Algo * > & algoMap = aMesh.GetGen()->_map1D_Algo;
302     map < int, SMESH_1D_Algo * >::iterator id_algo = algoMap.find( myID );
303     if ( id_algo == algoMap.end() )
304       return new TNodeDistributor( myID, 0, aMesh.GetGen() );
305     return static_cast< TNodeDistributor* >( id_algo->second );
306   }
307   // -----------------------------------------------------------------------------
308   bool Compute( vector< double > &                  positions,
309                 gp_Pnt                              pIn,
310                 gp_Pnt                              pOut,
311                 SMESH_Mesh&                         aMesh,
312                 const StdMeshers_LayerDistribution* hyp)
313   {
314     double len = pIn.Distance( pOut );
315     if ( len <= DBL_MIN ) return error(dfltErr(),"Too close points of inner and outer shells");
316
317     if ( !hyp || !hyp->GetLayerDistribution() )
318       return error(dfltErr(), "Invalid LayerDistribution hypothesis");
319     myUsedHyps.clear();
320     myUsedHyps.push_back( hyp->GetLayerDistribution() );
321
322     TopoDS_Edge edge = BRepBuilderAPI_MakeEdge( pIn, pOut );
323     SMESH_Hypothesis::Hypothesis_Status aStatus;
324     if ( !StdMeshers_Regular_1D::CheckHypothesis( aMesh, edge, aStatus ))
325       return error(dfltErr(), "StdMeshers_Regular_1D::CheckHypothesis() failed"
326                    "with LayerDistribution hypothesis");
327
328     BRepAdaptor_Curve C3D(edge);
329     double f = C3D.FirstParameter(), l = C3D.LastParameter();
330     list< double > params;
331     if ( !StdMeshers_Regular_1D::computeInternalParameters( C3D, len, f, l, params, false ))
332       return error(dfltErr(),"StdMeshers_Regular_1D failed to compute layers distribution");
333
334     positions.clear();
335     positions.reserve( params.size() );
336     for (list<double>::iterator itU = params.begin(); itU != params.end(); itU++)
337       positions.push_back( *itU / len );
338     return true;
339   }
340 protected:
341   // -----------------------------------------------------------------------------
342   TNodeDistributor( int hypId, int studyId, SMESH_Gen* gen)
343     : StdMeshers_Regular_1D( hypId, studyId, gen)
344   {
345   }
346   // -----------------------------------------------------------------------------
347   virtual const list <const SMESHDS_Hypothesis *> &
348     GetUsedHypothesis(SMESH_Mesh &, const TopoDS_Shape &, const bool)
349   {
350     return myUsedHyps;
351   }
352   // -----------------------------------------------------------------------------
353 };
354
355 //================================================================================
356 /*!
357  * \brief Compute positions of nodes between the internal and the external surfaces
358   * \retval bool - is a success
359  */
360 //================================================================================
361
362 bool StdMeshers_RadialPrism_3D::computeLayerPositions(const gp_Pnt& pIn,
363                                                       const gp_Pnt& pOut)
364 {
365   if ( myNbLayerHypo )
366   {
367     int nbSegments = myNbLayerHypo->GetNumberOfLayers();
368     myLayerPositions.resize( nbSegments - 1 );
369     for ( int z = 1; z < nbSegments; ++z )
370       myLayerPositions[ z - 1 ] = double( z )/ double( nbSegments );
371     return true;
372   }
373   if ( myDistributionHypo ) {
374     SMESH_Mesh * mesh = myHelper->GetMesh();
375     if ( !TNodeDistributor::GetDistributor(*mesh)->Compute( myLayerPositions, pIn, pOut,
376                                                             *mesh, myDistributionHypo ))
377     {
378       error( TNodeDistributor::GetDistributor(*mesh)->GetComputeError() );
379       return false;
380     }
381   }
382   RETURN_BAD_RESULT("Bad hypothesis");
383 }