Salome HOME
[SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D...
[modules/smesh.git] / src / SMESH / SMESH_Mesh.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   : SMESH_Mesh.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_MESH_HXX_
30 #define _SMESH_MESH_HXX_
31
32 #include "SMESH_SMESH.hxx"
33
34 #include "SMESH_Hypothesis.hxx"
35
36 #include "SMESHDS_Mesh.hxx"
37 #include "SMESHDS_Command.hxx"
38 #include "SMDSAbs_ElementType.hxx"
39
40 #include "Utils_SALOME_Exception.hxx"
41
42 #include <TopoDS_Shape.hxx>
43 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
44
45 #include <list>
46 #include <map>
47
48 class SMESH_Gen;
49 class SMESHDS_Document;
50 class SMESH_Group;
51 class TopTools_ListOfShape;
52 class SMESH_subMesh;
53 class SMESH_HypoFilter;
54 class TopoDS_Solid;
55
56 class SMESH_EXPORT SMESH_Mesh
57 {
58 public:
59   SMESH_Mesh(int               theLocalId, 
60              int               theStudyId, 
61              SMESH_Gen*        theGen,
62              bool              theIsEmbeddedMode,
63              SMESHDS_Document* theDocument);
64   
65   virtual ~SMESH_Mesh();
66   
67   /*!
68    * \brief Set geometry to be meshed
69    */
70   void ShapeToMesh(const TopoDS_Shape & aShape);
71   /*!
72    * \brief Return geometry to be meshed. (It may be a PseudoShape()!)
73    */
74   TopoDS_Shape GetShapeToMesh() const;
75   /*!
76    * \brief Return true if there is a geometry to be meshed, not PseudoShape()
77    */
78   bool HasShapeToMesh() const { return _isShapeToMesh; }
79   /*!
80    * \brief Return a solid which is returned by GetShapeToMesh() if
81    *        a real geometry to be meshed was not set
82    */
83   static const TopoDS_Solid& PseudoShape();
84
85   /*!
86    * \brief Remove all nodes and elements
87    */
88   void Clear();
89
90   int UNVToMesh(const char* theFileName);
91   /*!
92    * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
93    */
94   int MEDToMesh(const char* theFileName, const char* theMeshName);
95   
96   int STLToMesh(const char* theFileName);
97
98   SMESH_Hypothesis::Hypothesis_Status
99   AddHypothesis(const TopoDS_Shape & aSubShape, int anHypId)
100     throw(SALOME_Exception);
101   
102   SMESH_Hypothesis::Hypothesis_Status
103   RemoveHypothesis(const TopoDS_Shape & aSubShape, int anHypId)
104     throw(SALOME_Exception);
105   
106   const std::list <const SMESHDS_Hypothesis * >&
107   GetHypothesisList(const TopoDS_Shape & aSubShape) const
108     throw(SALOME_Exception);
109
110   const SMESH_Hypothesis * GetHypothesis(const TopoDS_Shape &    aSubShape,
111                                          const SMESH_HypoFilter& aFilter,
112                                          const bool              andAncestors,
113                                          TopoDS_Shape*           assignedTo=0) const;
114   
115   int GetHypotheses(const TopoDS_Shape &                     aSubShape,
116                     const SMESH_HypoFilter&                  aFilter,
117                     std::list <const SMESHDS_Hypothesis * >& aHypList,
118                     const bool                               andAncestors) const;
119
120   const std::list<SMESHDS_Command*> & GetLog() throw(SALOME_Exception);
121   
122   void ClearLog() throw(SALOME_Exception);
123   
124   int GetId()                { return _id; }
125   
126   SMESHDS_Mesh * GetMeshDS() { return _myMeshDS; }
127   
128   SMESH_Gen *GetGen()        { return _gen; }
129   
130   SMESH_subMesh *GetSubMesh(const TopoDS_Shape & aSubShape)
131     throw(SALOME_Exception);
132   
133   SMESH_subMesh *GetSubMeshContaining(const TopoDS_Shape & aSubShape) const
134     throw(SALOME_Exception);
135   
136   SMESH_subMesh *GetSubMeshContaining(const int aShapeID) const
137     throw(SALOME_Exception);
138   /*!
139    * \brief Return submeshes of groups containing the given subshape
140    */
141   std::list<SMESH_subMesh*> GetGroupSubMeshesContaining(const TopoDS_Shape & shape) const
142     throw(SALOME_Exception);
143   /*!
144    * \brief Say all submeshes that theChangedHyp has been modified
145    */
146   void NotifySubMeshesHypothesisModification(const SMESH_Hypothesis* theChangedHyp);
147
148   const std::list < SMESH_subMesh * >&
149   GetSubMeshUsingHypothesis(SMESHDS_Hypothesis * anHyp) throw(SALOME_Exception);
150   /*!
151    * \brief Return True if anHyp is used to mesh aSubShape
152    */
153   bool IsUsedHypothesis(SMESHDS_Hypothesis *  anHyp,
154                         const SMESH_subMesh * aSubMesh);
155   /*!
156    * \brief check if a hypothesis alowing notconform mesh is present
157    */
158   bool IsNotConformAllowed() const;
159   
160   bool IsMainShape(const TopoDS_Shape& theShape) const;
161   /*!
162    * \brief Return list of ancestors of theSubShape in the order
163    *        that lower dimention shapes come first
164    */
165   const TopTools_ListOfShape& GetAncestors(const TopoDS_Shape& theSubShape) const;
166
167   void SetAutoColor(bool theAutoColor) throw(SALOME_Exception);
168
169   bool GetAutoColor() throw(SALOME_Exception);
170
171   /*!
172    * \brief Return data map of descendant to ancestor shapes
173    */
174   typedef TopTools_IndexedDataMapOfShapeListOfShape TAncestorMap;
175   const TAncestorMap& GetAncestorMap() const { return _mapAncestors; }
176   /*!
177    * \brief Check group names for duplications.
178    *  Consider maximum group name length stored in MED file
179    */
180   bool HasDuplicatedGroupNamesMED();
181
182   void ExportMED(const char *file, 
183                  const char* theMeshName = NULL, 
184                  bool theAutoGroups = true, 
185                  int theVersion = 0) 
186     throw(SALOME_Exception);
187
188   void ExportDAT(const char *file) throw(SALOME_Exception);
189   void ExportUNV(const char *file) throw(SALOME_Exception);
190   void ExportSTL(const char *file, const bool isascii) throw(SALOME_Exception);
191   
192   int NbNodes() throw(SALOME_Exception);
193   
194   int NbEdges(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
195   
196   int NbFaces(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
197   
198   int NbTriangles(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
199   
200   int NbQuadrangles(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
201
202   int NbPolygons() throw(SALOME_Exception);
203   
204   int NbVolumes(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
205   
206   int NbTetras(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
207   
208   int NbHexas(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
209   
210   int NbPyramids(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
211
212   int NbPrisms(SMDSAbs_ElementOrder order = ORDER_ANY) throw(SALOME_Exception);
213   
214   int NbPolyhedrons() throw(SALOME_Exception);
215   
216   int NbSubMesh() throw(SALOME_Exception);
217   
218   int NbGroup() const { return _mapGroup.size(); }
219   
220   SMESH_Group* AddGroup (const SMDSAbs_ElementType theType,
221                          const char*               theName,
222                          int&                      theId,
223                          const TopoDS_Shape&       theShape=TopoDS_Shape());
224   
225   typedef boost::shared_ptr< SMDS_Iterator<SMESH_Group*> > GroupIteratorPtr;
226   GroupIteratorPtr GetGroups() const;
227   
228   std::list<int> GetGroupIds() const;
229   
230   SMESH_Group* GetGroup (const int theGroupID);
231
232   void RemoveGroup (const int theGroupID);
233
234
235   SMDSAbs_ElementType GetElementType( const int id, const bool iselem );
236
237   //
238   
239   ostream& Dump(ostream & save);
240   
241 private:
242   
243 protected:
244   int                        _id;           // id given by creator (unique within the creator instance)
245   int                        _studyId;
246   int                        _idDoc;        // id given by SMESHDS_Document
247   int                        _groupId;      // id generator for group objects
248   bool                       _isShapeToMesh;// set to true when a shape is given (only once)
249   std::list <SMESH_subMesh*> _subMeshesUsingHypothesisList;
250   SMESHDS_Document *         _myDocument;
251   SMESHDS_Mesh *             _myMeshDS;
252   std::map <int, SMESH_subMesh*> _mapSubMesh;
253   std::map <int, SMESH_Group*>   _mapGroup;
254   SMESH_Gen *                _gen;
255
256   bool                       _isAutoColor;
257   
258   TopTools_IndexedDataMapOfShapeListOfShape _mapAncestors;
259
260 protected:
261   SMESH_Mesh() {};
262   SMESH_Mesh(const SMESH_Mesh&) {};
263 };
264
265 #endif