Salome HOME
PAL16631 (SALOME crash after a mesh computation failed due to lack of memory)
[modules/smesh.git] / src / StdMeshers / StdMeshers_Quadrangle_2D.hxx
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_Quadrangle_2D.hxx
25 //           Moved here from SMESH_Quadrangle_2D.hxx
26 //  Author : Paul RASCLE, EDF
27 //  Module : SMESH
28 //  $Header$
29
30 #ifndef _SMESH_QUADRANGLE_2D_HXX_
31 #define _SMESH_QUADRANGLE_2D_HXX_
32
33 #include "SMESH_2D_Algo.hxx"
34 #include "Utils_SALOME_Exception.hxx"
35
36 class SMESH_Mesh;
37 class SMESH_MesherHelper;
38 class StdMeshers_FaceSide;
39 struct uvPtStruct;
40
41 //class SMDS_MeshNode;
42
43 enum TSideID { BOTTOM_SIDE=0, RIGHT_SIDE, TOP_SIDE, LEFT_SIDE, NB_SIDES };
44
45 typedef uvPtStruct UVPtStruct;
46 typedef struct faceQuadStruct
47 {
48   vector< StdMeshers_FaceSide*> side;
49   bool isEdgeOut[4]; // true, if an edge has more nodes, than the opposite
50   UVPtStruct* uv_grid;
51   ~faceQuadStruct();
52 } FaceQuadStruct;
53
54 class StdMeshers_Quadrangle_2D: public SMESH_2D_Algo
55 {
56 public:
57   StdMeshers_Quadrangle_2D(int hypId, int studyId, SMESH_Gen* gen);
58   virtual ~StdMeshers_Quadrangle_2D();
59
60   virtual bool CheckHypothesis(SMESH_Mesh& aMesh,
61                                const TopoDS_Shape& aShape,
62                                SMESH_Hypothesis::Hypothesis_Status& aStatus);
63
64   virtual bool Compute(SMESH_Mesh& aMesh,
65                        const TopoDS_Shape& aShape);
66
67   FaceQuadStruct* CheckAnd2Dcompute(SMESH_Mesh& aMesh,
68                                     const TopoDS_Shape& aShape,
69                                     const bool CreateQuadratic);
70
71 protected:
72
73   FaceQuadStruct* CheckNbEdges(SMESH_Mesh& aMesh,
74                                const TopoDS_Shape& aShape);
75
76   bool SetNormalizedGrid(SMESH_Mesh& aMesh,
77                          const TopoDS_Shape& aShape,
78                          FaceQuadStruct*& quad);
79
80   /**
81    * Special function for creation only quandrangle faces
82    */
83   bool ComputeQuadPref(SMESH_Mesh& aMesh,
84                        const TopoDS_Shape& aShape,
85                        FaceQuadStruct* quad);
86
87   UVPtStruct* LoadEdgePoints2(SMESH_Mesh& aMesh,
88                               const TopoDS_Face& F, const TopoDS_Edge& E,
89                               bool IsReverse);
90
91   UVPtStruct* LoadEdgePoints(SMESH_Mesh& aMesh,
92                              const TopoDS_Face& F, const TopoDS_Edge& E,
93                              double first, double last);
94
95   UVPtStruct* MakeEdgePoints(SMESH_Mesh& aMesh,
96                              const TopoDS_Face& F, const TopoDS_Edge& E,
97                              double first, double last, int nb_segm);
98
99   // true if QuadranglePreference hypothesis is assigned that forces
100   // construction of quadrangles if the number of nodes on opposite edges
101   // is not the same in the case where the global number of nodes on edges is even
102   bool myQuadranglePreference;
103
104   SMESH_MesherHelper* myTool; // tool for working with quadratic elements
105 };
106
107 #endif