Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/smesh.git] / src / SMESH / SMESH_Pattern.hxx
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19
20 // File      : SMESH_Pattern.hxx
21 // Created   : Mon Aug  2 10:30:00 2004
22 // Author    : Edward AGAPOV (eap)
23
24 #ifndef SMESH_Pattern_HeaderFile
25 #define SMESH_Pattern_HeaderFile
26
27 #include <vector>
28 #include <list>
29 #include <map>
30 #include <set>
31 #include <iostream>
32
33 #include <TopoDS_Shape.hxx>
34 #include <TopTools_IndexedMapOfOrientedShape.hxx>
35 #include <gp_XYZ.hxx>
36 #include <gp_XY.hxx>
37 #include <gp_Pnt.hxx>
38
39 class SMDS_MeshElement;
40 class SMDS_MeshFace;
41 class SMDS_MeshVolume;
42 class SMDS_MeshNode;
43 class SMESH_Mesh;
44 class SMESHDS_SubMesh;
45 class TopoDS_Shell;
46 class TopoDS_Vertex;
47 class TopoDS_Face;
48 class TopoDS_Edge;
49
50 //
51 // Class allowing meshing by mapping of pre-defined patterns: it generates
52 // a 2D mesh on a geometrical face or a 3D mesh inside a geometrical block
53 // of 6 faces.
54 //
55
56 class SMESH_Pattern {
57  public:
58   
59   SMESH_Pattern ();
60
61   void Clear();
62   // clear fields
63
64   bool Load (const char* theFileContents);
65   // Load a pattern from <theFileContents>
66
67   bool Load (SMESH_Mesh*        theMesh,
68              const TopoDS_Face& theFace,
69              bool               theProject);
70   // Create a pattern from the mesh built on <theFace>.
71   // <theProject>==true makes override nodes positions
72   // on <theFace> computed by mesher
73
74   bool Load (SMESH_Mesh*         theMesh,
75              const TopoDS_Shell& theBlock);
76   // Create a pattern from the mesh built on <theBlock>
77
78   bool Save (std::ostream& theFile);
79   // Save the loaded pattern into theFile
80
81   bool Apply (const TopoDS_Face&   theFace,
82               const TopoDS_Vertex& theVertexOnKeyPoint1,
83               const bool           theReverse);
84   // Compute nodes coordinates applying
85   // the loaded pattern to <theFace>. The first key-point
86   // will be mapped into <theVertexOnKeyPoint1>, which must
87   // be in the outer wire of theFace
88
89   bool Apply (const TopoDS_Shell&  theBlock,
90               const TopoDS_Vertex& theVertex000,
91               const TopoDS_Vertex& theVertex001);
92   // Compute nodes coordinates applying
93   // the loaded pattern to <theBlock>. The (0,0,0) key-point
94   // will be mapped into <theVertex000>. The
95   // (0,0,1) key-point will be mapped into <theVertex001>.
96
97   bool Apply (const SMDS_MeshFace* theFace,
98               const int            theNodeIndexOnKeyPoint1,
99               const bool           theReverse);
100   // Compute nodes coordinates applying
101   // the loaded pattern to <theFace>. The first key-point
102   // will be mapped into <theNodeIndexOnKeyPoint1>-th node
103
104   bool Apply (std::set<const SMDS_MeshFace*>& theFaces,
105               const int                       theNodeIndexOnKeyPoint1,
106               const bool                      theReverse);
107   // Compute nodes coordinates applying
108   // the loaded pattern to <theFaces>. The first key-point
109   // will be mapped into <theNodeIndexOnKeyPoint1>-th node
110
111   bool Apply (const SMDS_MeshVolume* theVolume,
112               const int              theNode000Index,
113               const int              theNode001Index);
114   // Compute nodes coordinates applying
115   // the loaded pattern to <theVolume>. The (0,0,0) key-point
116   // will be mapped into <theNode000Index>-th node. The
117   // (0,0,1) key-point will be mapped into <theNode000Index>-th
118   // node.
119
120   bool Apply (std::set<const SMDS_MeshVolume*>& theVolumes,
121               const int                         theNode000Index,
122               const int                         theNode001Index);
123   // Compute nodes coordinates applying
124   // the loaded pattern to <theVolumes>. The (0,0,0) key-point
125   // will be mapped into <theNode000Index>-th node. The
126   // (0,0,1) key-point will be mapped into <theNode000Index>-th
127   // node.
128
129   bool GetMappedPoints ( std::list<const gp_XYZ *> & thePoints ) const;
130   // Return nodes coordinates computed by Apply() method
131
132   bool MakeMesh(SMESH_Mesh* theMesh,
133                 const bool toCreatePolygons = false,
134                 const bool toCreatePolyedrs = false);
135   // Create nodes and elements in <theMesh> using nodes
136   // coordinates computed by either of Apply...() methods
137
138
139   // Inquiries
140
141   enum ErrorCode {
142     ERR_OK,
143     // Load(file)
144     ERR_READ_NB_POINTS, // couldn't read nb of points
145     ERR_READ_POINT_COORDS, // invalid nb of point coordinates
146     ERR_READ_TOO_FEW_POINTS,  // too few points in a pattern
147     ERR_READ_3D_COORD,  // coordinate of 3D point out of [0,1] range
148     ERR_READ_NO_KEYPOINT, // no key-points in 2D pattern
149     ERR_READ_BAD_INDEX, // invalid point index
150     ERR_READ_ELEM_POINTS, // invalid nb of points in element
151     ERR_READ_NO_ELEMS, // no elements in a pattern
152     ERR_READ_BAD_KEY_POINT, // a key-point not on a boundary
153     // Save(file)
154     ERR_SAVE_NOT_LOADED, // pattern was not loaded
155     // Load(shape)
156     ERR_LOAD_EMPTY_SUBMESH, // no elements to load
157     // Load(face)
158     ERR_LOADF_NARROW_FACE, // too narrow face
159     ERR_LOADF_CLOSED_FACE, // closed face
160     ERR_LOADF_CANT_PROJECT, // impossible to project nodes
161     // Load(volume)
162     ERR_LOADV_BAD_SHAPE, // volume is not a brick of 6 faces
163     ERR_LOADV_COMPUTE_PARAMS, // cant compute point parameters
164     // Apply(shape)
165     ERR_APPL_NOT_COMPUTED, // mapping failed
166     ERR_APPL_NOT_LOADED, // pattern was not loaded
167     ERR_APPL_BAD_DIMENTION, // wrong shape dimention
168     ERR_APPL_BAD_NB_VERTICES, // keypoints - vertices mismatch
169     // Apply(face)
170     ERR_APPLF_BAD_TOPOLOGY, // bad pattern topology
171     ERR_APPLF_BAD_VERTEX, // first vertex not on an outer face boundary
172     ERR_APPLF_INTERNAL_EEROR, // program error
173     // Apply(volume)
174     ERR_APPLV_BAD_SHAPE, // volume is not a brick of 6 faces
175     // Apply(mesh_face)
176     ERR_APPLF_BAD_FACE_GEOM, // bad face geometry
177     // MakeMesh
178     ERR_MAKEM_NOT_COMPUTED // mapping failed
179   };
180
181   ErrorCode GetErrorCode() const { return myErrorCode; }
182   // return ErrorCode of the last operation
183
184   bool IsLoaded() const { return !myPoints.empty() && !myElemPointIDs.empty(); }
185   // Return true if a pattern was successfully loaded
186
187   bool Is2D() const { return myIs2D; }
188   // Return true if the loaded pattern is a 2D one
189
190   bool GetPoints ( std::list<const gp_XYZ *> & thePoints ) const;
191   // Return nodes coordinates of the pattern
192
193   const std::list< int > & GetKeyPointIDs () const { return myKeyPointIDs; }
194   // Return indices of key-points within the sequences returned by
195   // GetPoints() and GetMappedPoints()
196   
197   const std::list< std::list< int > >& GetElementPointIDs (bool applied) const
198   { return myElemXYZIDs.empty() || !applied ? myElemPointIDs : myElemXYZIDs; }
199   // Return nodal connectivity of the elements of the pattern
200
201   void DumpPoints() const;
202   // Debug
203
204
205  private:
206   // private methods
207
208   struct TPoint {
209     gp_XYZ myInitXYZ; // loaded postion
210     gp_XY  myInitUV;
211     double myInitU; // [0,1]
212     gp_Pnt myXYZ; // position to compute
213     gp_XY  myUV;
214     double myU;
215     TPoint();
216   };
217   friend std::ostream & operator <<(std::ostream & OS, const TPoint& p);
218
219   bool setErrorCode( const ErrorCode theErrorCode )
220   { myErrorCode = theErrorCode; return myErrorCode == ERR_OK; }
221   // set ErrorCode and return true if it is Ok
222
223   bool setShapeToMesh(const TopoDS_Shape& theShape);
224   // Set a shape to be meshed. Return True if meshing is possible
225
226   list< TPoint* > & getShapePoints(const TopoDS_Shape& theShape);
227   // Return list of points located on theShape.
228   // A list of edge-points include vertex-points (for 2D pattern only).
229   // A list of face-points doesnt include edge-points.
230   // A list of volume-points doesnt include face-points.
231
232   list< TPoint* > & getShapePoints(const int theShapeID);
233   // Return list of points located on the shape
234
235   bool findBoundaryPoints();
236   // If loaded from file, find points to map on edges and faces and
237   // compute their parameters
238
239   void arrangeBoundaries (list< list< TPoint* > >& boundaryPoints);
240   // if there are several wires, arrange boundaryPoints so that
241   // the outer wire goes first and fix inner wires orientation;
242   // update myKeyPointIDs to correspond to the order of key-points
243   // in boundaries; sort internal boundaries by the nb of key-points
244
245   void computeUVOnEdge( const TopoDS_Edge& theEdge, const list< TPoint* > & ePoints );
246   // compute coordinates of points on theEdge
247
248   bool compUVByIsoIntersection (const list< list< TPoint* > >& boundaryPoints,
249                                 const gp_XY&                   theInitUV,
250                                 gp_XY&                         theUV,
251                                 bool &                         theIsDeformed);
252   // compute UV by intersection of iso-lines found by points on edges
253
254   bool compUVByElasticIsolines(const list< list< TPoint* > >& boundaryPoints,
255                                const list< TPoint* >&         pointsToCompute);
256   // compute UV as nodes of iso-poly-lines consisting of
257   // segments keeping relative size as in the pattern
258
259   double setFirstEdge (list< TopoDS_Edge > & theWire, int theFirstEdgeID);
260   // choose the best first edge of theWire; return the summary distance
261   // between point UV computed by isolines intersection and
262   // eventual UV got from edge p-curves
263
264   typedef list< list< TopoDS_Edge > > TListOfEdgesList;
265
266   bool sortSameSizeWires (TListOfEdgesList &                theWireList,
267                           const TListOfEdgesList::iterator& theFromWire,
268                           const TListOfEdgesList::iterator& theToWire,
269                           const int                         theFirstEdgeID,
270                           list< list< TPoint* > >&          theEdgesPointsList );
271   // sort wires in theWireList from theFromWire until theToWire,
272   // the wires are set in the order to correspond to the order
273   // of boundaries; after sorting, edges in the wires are put
274   // in a good order, point UVs on edges are computed and points
275   // are appended to theEdgesPointsList
276
277   typedef std::set<const SMDS_MeshNode*> TNodeSet;
278
279   void mergePoints (const bool uniteGroups);
280   // Merge XYZ on edges and/or faces.
281
282   void makePolyElements(const std::vector< const SMDS_MeshNode* >& theNodes,
283                         const bool                                 toCreatePolygons,
284                         const bool                                 toCreatePolyedrs);
285   // prepare intermediate data to create Polygons and Polyhedrons
286
287   void createElements(SMESH_Mesh*                                 theMesh,
288                       const std::vector<const SMDS_MeshNode* >&   theNodesVector,
289                       const std::list< std::list< int > > &       theElemNodeIDs,
290                       const std::vector<const SMDS_MeshElement*>& theElements);
291   // add elements to the mesh
292
293   bool getFacesDefinition(const SMDS_MeshNode**                      theBndNodes,
294                           const int                                  theNbBndNodes,
295                           const std::vector< const SMDS_MeshNode* >& theNodes,
296                           std::list< int >&                          theFaceDefs,
297                           std::vector<int>&                          theQuantity);
298   // fill faces definition for a volume face defined by theBndNodes
299   // return true if a face definition changes
300   
301
302   bool isReversed(const SMDS_MeshNode*    theFirstNode,
303                   const std::list< int >& theIdsList) const;
304   // check xyz ids order in theIdsList taking into account
305   // theFirstNode on a link
306
307   void clearMesh(SMESH_Mesh* theMesh) const;
308   // clear mesh elements existing on myShape in theMesh
309
310   static SMESHDS_SubMesh * getSubmeshWithElements(SMESH_Mesh*         theMesh,
311                                                   const TopoDS_Shape& theShape);
312   // return submesh containing elements bound to theShape in theMesh
313
314  private:
315   // fields
316
317   typedef std::list< int > TElemDef; // element definition is its nodes ids
318
319   bool                                 myIs2D;
320   std::vector< TPoint >                myPoints;
321   std::list< int >                     myKeyPointIDs;
322   std::list< TElemDef >                myElemPointIDs;
323
324   ErrorCode                            myErrorCode;
325   bool                                 myIsComputed;
326   bool                                 myIsBoundaryPointsFound;
327
328   TopoDS_Shape                         myShape;
329   // all functions assure that shapes are indexed so that first go
330   // ordered vertices, then ordered edge, then faces and maybe a shell
331   TopTools_IndexedMapOfOrientedShape   myShapeIDMap;
332   std::map< int, list< TPoint* > >     myShapeIDToPointsMap;
333
334   // for the 2d case:
335   // nb of key-points in each of pattern boundaries
336   std::list< int >                     myNbKeyPntInBoundary;
337
338   
339   // to compute while applying to mesh elements, not to shapes
340
341   std::vector<gp_XYZ>                  myXYZ;            // XYZ of nodes to create
342   std::list< TElemDef >                myElemXYZIDs;     // new elements definitions
343   std::map< int, const SMDS_MeshNode*> myXYZIdToNodeMap; // map XYZ id to node of a refined element
344   std::vector<const SMDS_MeshElement*> myElements;       // refined elements
345   std::vector<const SMDS_MeshNode*>    myOrderedNodes;
346
347    // elements to replace with polygon or polyhedron
348   std::vector<const SMDS_MeshElement*> myPolyElems;
349   // definitions of new poly elements
350   std::list< TElemDef >                myPolyElemXYZIDs;
351   std::list< std::vector<int> >        myPolyhedronQuantities;
352
353   // map a boundary to XYZs on it;
354   // a boundary (edge or face) is defined as a set of its nodes,
355   // XYZs on a boundary are indices of myXYZ s
356   std::map<TNodeSet,std::list<std::list<int> > >  myIdsOnBoundary;
357   // map XYZ id to element it is in
358   std::map< int, std::list< TElemDef* > >         myReverseConnectivity;
359 };
360
361
362 #endif