Version: 9.16.0
SMESH_Mesh.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, 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, or (at your option) any later version.
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// File : SMESH_Mesh.hxx
24// Author : Paul RASCLE, EDF
25// Module : SMESH
26//
27#ifndef _SMESH_MESH_HXX_
28#define _SMESH_MESH_HXX_
29
30#include "SMESH_SMESH.hxx"
31
34#include "SMESH_Controls.hxx"
35#include "SMESH_Hypothesis.hxx"
36#include "SMESH_subMesh.hxx"
37#include "SMDS_Iterator.hxx"
38
39#include "Utils_SALOME_Exception.hxx"
40
41#include <TopoDS_Shape.hxx>
42#include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
43#include <TopTools_ListOfShape.hxx>
44
45#include "MEDCouplingMemArray.hxx"
46
47#include <map>
48#include <list>
49#include <vector>
50#include <ostream>
51
52#ifndef WIN32
53#include <boost/filesystem.hpp>
54#endif
55#include <boost/thread.hpp>
56
57#ifdef WIN32
58#pragma warning(disable:4251) // Warning DLL Interface ...
59#pragma warning(disable:4290) // Warning Exception ...
60#endif
61
62class SMESHDS_Command;
66class SMESHDS_Mesh;
67class SMESH_Gen;
68class SMESH_Group;
70class SMESH_subMesh;
71class TopoDS_Solid;
72
74
75typedef std::set<int> TSetOfInt;
76typedef std::list<int> TListOfInt;
77typedef std::list<TListOfInt> TListOfListOfInt;
78
80{
81 public:
82 SMESH_Mesh(int theLocalId,
83 SMESH_Gen* theGen,
84 bool theIsEmbeddedMode,
85 SMESHDS_Document* theDocument);
86
87 virtual ~SMESH_Mesh();
88
92 void ShapeToMesh(const TopoDS_Shape & aShape);
96 TopoDS_Shape GetShapeToMesh() const;
100 bool HasShapeToMesh() const { return _isShapeToMesh; }
101
102 void UndefShapeToMesh() { _isShapeToMesh = false; }
103
107 double GetShapeDiagonalSize() const;
111 static double GetShapeDiagonalSize(const TopoDS_Shape & aShape);
116 static const TopoDS_Solid& PseudoShape();
117
121 void Load();
125 void Clear();
129 void ClearSubMesh(const int theShapeId);
130
134 int UNVToMesh(const char* theFileName);
135
136 int MEDToMesh(const char* theFileName, const char* theMeshName);
137
138 std::string STLToMesh(const char* theFileName);
139
140 int CGNSToMesh(const char* theFileName, const int theMeshIndex, std::string& theMeshName);
141
142 SMESH_ComputeErrorPtr GMFToMesh(const char* theFileName,
143 bool theMakeRequiredGroups = true );
144
146 AddHypothesis(const TopoDS_Shape & aSubShape, int anHypId, std::string* error=0);
147
149 RemoveHypothesis(const TopoDS_Shape & aSubShape, int anHypId);
150
151 const std::list <const SMESHDS_Hypothesis * >&
152 GetHypothesisList(const TopoDS_Shape & aSubShape) const;
153
154 const SMESH_Hypothesis * GetHypothesis(const TopoDS_Shape & aSubShape,
155 const SMESH_HypoFilter& aFilter,
156 const bool andAncestors,
157 TopoDS_Shape* assignedTo=0) const;
158
159 int GetHypotheses(const TopoDS_Shape & aSubShape,
160 const SMESH_HypoFilter& aFilter,
161 std::list< const SMESHDS_Hypothesis * >& aHypList,
162 const bool andAncestors,
163 std::list< TopoDS_Shape > * assignedTo=0) const;
164
165 const SMESH_Hypothesis * GetHypothesis(const SMESH_subMesh * aSubMesh,
166 const SMESH_HypoFilter& aFilter,
167 const bool andAncestors,
168 TopoDS_Shape* assignedTo=0) const;
169
170 int GetHypotheses(const SMESH_subMesh * aSubMesh,
171 const SMESH_HypoFilter& aFilter,
172 std::list< const SMESHDS_Hypothesis * >& aHypList,
173 const bool andAncestors,
174 std::list< TopoDS_Shape > * assignedTo=0) const;
175
176 SMESH_Hypothesis * GetHypothesis(const int aHypID) const;
177
178 SMESH_Hypothesis::Hypothesis_Status CheckHypothesesOnSubMeshes(
179 SMESH_subMesh* subMesh,
180 const SMESH_Hypothesis* anHyp,
181 const SMESH_subMesh::algo_event event) const;
182
183 const std::list<SMESHDS_Command*> & GetLog();
184
185 void ClearLog();
186
187 int GetId() const { return _id; }
188
189 bool MeshExists( int meshId ) const;
190
191 SMESH_Mesh* FindMesh( int meshId ) const;
192
193 SMESHDS_Mesh * GetMeshDS() { return _meshDS; }
194
195 const SMESHDS_Mesh * GetMeshDS() const { return _meshDS; }
196
197 SMESH_Gen *GetGen() { return _gen; }
198
199 SMESH_subMesh *GetSubMesh(const TopoDS_Shape & aSubShape);
200
201 SMESH_subMesh *GetSubMeshContaining(const TopoDS_Shape & aSubShape) const;
202
203 SMESH_subMesh *GetSubMeshContaining(const int aShapeID) const;
207 std::list<SMESH_subMesh*> GetGroupSubMeshesContaining(const TopoDS_Shape & shape) const;
211 void NotifySubMeshesHypothesisModification(const SMESH_Hypothesis* theChangedHyp);
212
213 // const std::list < SMESH_subMesh * >&
214 // GetSubMeshUsingHypothesis(SMESHDS_Hypothesis * anHyp) throw(SALOME_Exception);
218 bool IsUsedHypothesis(SMESHDS_Hypothesis * anHyp,
219 const SMESH_subMesh * aSubMesh);
223 bool IsNotConformAllowed() const;
224
225 bool IsMainShape(const TopoDS_Shape& theShape) const;
226
227 TopoDS_Shape GetShapeByEntry(const std::string& entry) const;
228
233 const TopTools_ListOfShape& GetAncestors(const TopoDS_Shape& theSubShape) const;
234
235 void SetAutoColor(bool theAutoColor);
236
237 bool GetAutoColor();
238
243 void SetIsModified(bool isModified);
244
245 bool GetIsModified() const { return _isModified; }
246
252 bool HasModificationsToDiscard() const;
253
257 bool IsComputedOK();
258
262 typedef TopTools_IndexedDataMapOfShapeListOfShape TAncestorMap;
263 const TAncestorMap& GetAncestorMap() const { return _mapAncestors; }
264
269 bool HasDuplicatedGroupNamesMED();
270
275 struct TooLargeForExport : public std::runtime_error
276 {
277 TooLargeForExport(const char* format):runtime_error(format) {}
278 };
279
280 MEDCoupling::MCAuto<MEDCoupling::DataArrayByte>
281 ExportMEDCoupling(const char* theMeshName = NULL,
282 bool theAutoGroups = true,
283 const SMESHDS_Mesh* theMeshPart = 0,
284 bool theAutoDimension = false,
285 bool theAddODOnVertices = false,
286 double theZTolerance = -1.,
287 bool theSaveNumbers = true);
288
289 void ExportMED(const char * theFile,
290 const char* theMeshName = NULL,
291 bool theAutoGroups = true,
292 int theVersion = -1,
293 const SMESHDS_Mesh* theMeshPart = 0,
294 bool theAutoDimension = false,
295 bool theAddODOnVertices = false,
296 double theZTolerance = -1.,
297 bool theSaveNumbers = true);
298
299 void ExportDAT(const char * file,
300 const SMESHDS_Mesh* meshPart = 0,
301 const bool renumber = true);
302 void ExportUNV(const char * file,
303 const SMESHDS_Mesh* meshPart = 0,
304 const bool renumber = true);
305 void ExportSTL(const char * file,
306 const bool isascii,
307 const char * name = 0,
308 const SMESHDS_Mesh* meshPart = 0);
309 void ExportCGNS(const char * file,
310 const SMESHDS_Mesh* mesh,
311 const char * meshName = 0,
312 const bool groupElemsByType = false);
313 void ExportStructuredCGNS(const char * file,
314 const SMESHDS_Mesh* mesh,
315 const char * meshName = 0);
316 void ExportGMF(const char * file,
317 const SMESHDS_Mesh* mesh,
318 bool withRequiredGroups = true );
319
320 double GetComputeProgress() const;
321
322 smIdType NbNodes() const;
323 smIdType Nb0DElements() const;
324 smIdType NbBalls() const;
325
326 smIdType NbEdges(SMDSAbs_ElementOrder order = ORDER_ANY) const;
327
328 smIdType NbFaces(SMDSAbs_ElementOrder order = ORDER_ANY) const;
329 smIdType NbTriangles(SMDSAbs_ElementOrder order = ORDER_ANY) const;
330 smIdType NbQuadrangles(SMDSAbs_ElementOrder order = ORDER_ANY) const;
331 smIdType NbBiQuadQuadrangles() const;
332 smIdType NbBiQuadTriangles() const;
333 smIdType NbPolygons(SMDSAbs_ElementOrder order = ORDER_ANY) const;
334
335 smIdType NbVolumes(SMDSAbs_ElementOrder order = ORDER_ANY) const;
336 smIdType NbTetras(SMDSAbs_ElementOrder order = ORDER_ANY) const;
337 smIdType NbHexas(SMDSAbs_ElementOrder order = ORDER_ANY) const;
338 smIdType NbTriQuadraticHexas() const;
339 smIdType NbPyramids(SMDSAbs_ElementOrder order = ORDER_ANY) const;
340 smIdType NbPrisms(SMDSAbs_ElementOrder order = ORDER_ANY) const;
341 smIdType NbQuadPrisms() const;
342 smIdType NbBiQuadPrisms() const;
343 smIdType NbHexagonalPrisms() const;
344 smIdType NbPolyhedrons() const;
345
346 smIdType NbSubMesh() const;
347
348 size_t NbGroup() const { return _mapGroup.size(); }
349
350 int NbMeshes() const; // nb meshes in the Study
351
353 const char* theName,
354 const int theId = -1,
355 const TopoDS_Shape& theShape = TopoDS_Shape(),
356 const SMESH_PredicatePtr& thePredicate = SMESH_PredicatePtr());
357
359
360 typedef boost::shared_ptr< SMDS_Iterator<SMESH_Group*> > GroupIteratorPtr;
361 GroupIteratorPtr GetGroups() const;
362
363 std::list<int> GetGroupIds() const;
364
365 SMESH_Group* GetGroup (const int theGroupID) const;
366
367 bool RemoveGroup (const int theGroupID);
368
369 SMESH_Group* ConvertToStandalone ( int theGroupID );
370
371 struct TCallUp // callback from SMESH to SMESH_I level
372 {
373 virtual void RemoveGroup( const int theGroupID )=0;
374 virtual void HypothesisModified( int hypID, bool updateIcons )=0;
375 virtual void Load()=0;
376 virtual bool IsLoaded()=0;
377 virtual TopoDS_Shape GetShapeByEntry(const std::string& entry)=0;
378 virtual ~TCallUp() {}
379 };
380 void SetCallUp( TCallUp * upCaller );
381
382 bool SynchronizeGroups();
383
384
385 SMDSAbs_ElementType GetElementType( const smIdType id, const bool iselem );
386
387 void ClearMeshOrder();
388 void SetMeshOrder(const TListOfListOfInt& theOrder );
389 const TListOfListOfInt& GetMeshOrder() const;
390
391 // sort submeshes according to stored mesh order
392 bool SortByMeshOrder(std::vector<SMESH_subMesh*>& theListToSort) const;
393
394 // return true if given order of sub-meshes is OK
395 bool IsOrderOK( const SMESH_subMesh* smBefore,
396 const SMESH_subMesh* smAfter ) const;
397
398 std::ostream& Dump(std::ostream & save);
399
400 // Parallel computation functions
401
402 virtual void Lock(){};
403 virtual void Unlock(){};
404
405 virtual void wait(){};
406
407 virtual bool IsParallel(){throw SALOME_Exception("Calling SMESH_Mesh::IsParallel");return false;};
408 virtual int GetParallelElement(){throw SALOME_Exception("Calling SMESH_Mesh::GetParallelElement");return 0;};
409
410 virtual bool ComputeSubMeshes(
411 SMESH_Gen* gen,
412 SMESH_Mesh & aMesh,
413 const TopoDS_Shape & aShape,
415 TSetOfInt* aShapesId /*=0*/,
416 TopTools_IndexedMapOfShape* allowedSubShapes,
417 SMESH_subMesh::compute_event &computeEvent,
418 const bool includeSelf,
419 const bool complexShapeFirst,
420 const bool aShapeOnly){(void) gen;(void) aMesh;(void) aShape;(void) aDim;(void) aShapesId;(void) allowedSubShapes;(void) computeEvent;(void) includeSelf;(void) complexShapeFirst;(void) aShapeOnly;throw SALOME_Exception("Calling SMESH_Mesh::ComputeSubMeshes");return false;};
421
422private:
423
424 void exportMEDCommmon(DriverMED_W_SMESHDS_Mesh& myWriter,
425 const char* theMeshName,
426 bool theAutoGroups,
427 const SMESHDS_Mesh* meshPart,
428 bool theAutoDimension,
429 bool theAddODOnVertices,
430 double theZTolerance,
431 bool theSaveNumbers);
432
433 private:
434 void fillAncestorsMap(const TopoDS_Shape& theShape);
435 void getAncestorsSubMeshes(const TopoDS_Shape& theSubShape,
436 std::vector< SMESH_subMesh* >& theSubMeshes) const;
437
438protected:
439 int _id; // id given by creator (unique within the creator instance)
440 int _groupId; // id generator for group objects
441 int _nbSubShapes; // initial nb of subshapes in the shape to mesh
442 bool _isShapeToMesh;// set to true when a shape is given (only once)
446 std::map <int, SMESH_Group*> _mapGroup;
447
448 class SubMeshHolder;
450
453
455
456 TopTools_IndexedDataMapOfShapeListOfShape _mapAncestors;
457
458 mutable std::vector<SMESH_subMesh*> _ancestorSubMeshes; // to speed up GetHypothes[ei]s()
459
461
462 // Struct calling methods at CORBA API implementation level, used to
463 // 1) make an upper level (SMESH_I) be consistent with a lower one (SMESH)
464 // when group removal is invoked by hyp modification (issue 0020918)
465 // 2) to forget not loaded mesh data at hyp modification
467
468protected:
469 SMESH_Mesh();
471};
472#endif
SMDSAbs_ElementOrder
Definition: SMDSAbs_ElementType.hxx:70
@ ORDER_ANY
Definition: SMDSAbs_ElementType.hxx:71
SMDSAbs_ElementType
Type (node, edge, face or volume) of elements.
Definition: SMDSAbs_ElementType.hxx:34
boost::shared_ptr< SMESH_ComputeError > SMESH_ComputeErrorPtr
Definition: SMESH_ComputeError.hxx:38
SMESH::Controls::PredicatePtr SMESH_PredicatePtr
Definition: SMESH_Controls.hxx:81
std::set< int > TSetOfInt
Definition: SMESH_Gen.hxx:65
MeshDimension
Definition: SMESH_Hypothesis.hxx:40
std::list< int > TListOfInt
Definition: SMESH_Mesh.hxx:76
std::list< TListOfInt > TListOfListOfInt
Definition: SMESH_Mesh.hxx:77
std::set< int > TSetOfInt
Definition: SMESH_Mesh.hxx:75
#define SMESH_EXPORT
Definition: SMESH_SMESH.hxx:37
Write a mesh to a MED file.
Definition: DriverMED_W_SMESHDS_Mesh.h:49
Definition: SMESHDS_Command.hxx:38
Definition: SMESHDS_Document.hxx:38
Definition: SMESHDS_GroupBase.hxx:42
Definition: SMESHDS_Hypothesis.hxx:37
Definition: SMESHDS_Mesh.hxx:98
Definition: SMESH_Gen.hxx:68
Definition: SMESH_Group.hxx:43
Definition: SMESH_HypoFilter.hxx:57
Definition: SMESH_Hypothesis.hxx:48
Hypothesis_Status
Definition: SMESH_Hypothesis.hxx:51
Definition: SMESH_Mesh.cxx:99
Definition: SMESH_Mesh.hxx:80
bool GetIsModified() const
Definition: SMESH_Mesh.hxx:245
std::map< int, SMESH_Group * > _mapGroup
Definition: SMESH_Mesh.hxx:446
virtual void Unlock()
Definition: SMESH_Mesh.hxx:403
bool _isModified
modified since last total re-compute, issue 0020693
Definition: SMESH_Mesh.hxx:452
bool HasShapeToMesh() const
Return true if there is a geometry to be meshed, not PseudoShape()
Definition: SMESH_Mesh.hxx:100
virtual bool ComputeSubMeshes(SMESH_Gen *gen, SMESH_Mesh &aMesh, const TopoDS_Shape &aShape, const ::MeshDimension aDim, TSetOfInt *aShapesId, TopTools_IndexedMapOfShape *allowedSubShapes, SMESH_subMesh::compute_event &computeEvent, const bool includeSelf, const bool complexShapeFirst, const bool aShapeOnly)
Definition: SMESH_Mesh.hxx:410
const TAncestorMap & GetAncestorMap() const
Definition: SMESH_Mesh.hxx:263
double _shapeDiagonal
diagonal size of bounding box of shape to mesh
Definition: SMESH_Mesh.hxx:454
SubMeshHolder * _subMeshHolder
Definition: SMESH_Mesh.hxx:449
std::ostream & Dump(std::ostream &save)
std::vector< SMESH_subMesh * > _ancestorSubMeshes
Definition: SMESH_Mesh.hxx:458
const SMESHDS_Mesh * GetMeshDS() const
Definition: SMESH_Mesh.hxx:195
TopTools_IndexedDataMapOfShapeListOfShape _mapAncestors
Definition: SMESH_Mesh.hxx:456
SMESHDS_Mesh * _meshDS
Definition: SMESH_Mesh.hxx:444
void UndefShapeToMesh()
Definition: SMESH_Mesh.hxx:102
boost::shared_ptr< SMDS_Iterator< SMESH_Group * > > GroupIteratorPtr
Definition: SMESH_Mesh.hxx:360
SMESH_Mesh(const SMESH_Mesh &)
Definition: SMESH_Mesh.hxx:470
bool _isShapeToMesh
Definition: SMESH_Mesh.hxx:442
SMESH_Gen * _gen
Definition: SMESH_Mesh.hxx:445
virtual int GetParallelElement()
Definition: SMESH_Mesh.hxx:408
int GetId() const
Definition: SMESH_Mesh.hxx:187
int _groupId
Definition: SMESH_Mesh.hxx:440
int _nbSubShapes
Definition: SMESH_Mesh.hxx:441
size_t NbGroup() const
Definition: SMESH_Mesh.hxx:348
SMESHDS_Document * _document
Definition: SMESH_Mesh.hxx:443
bool _isAutoColor
Definition: SMESH_Mesh.hxx:451
TopTools_IndexedDataMapOfShapeListOfShape TAncestorMap
Return data map of descendant to ancestor shapes.
Definition: SMESH_Mesh.hxx:262
SMESH_Gen * GetGen()
Definition: SMESH_Mesh.hxx:197
int _id
Definition: SMESH_Mesh.hxx:439
virtual void Lock()
Definition: SMESH_Mesh.hxx:402
virtual void wait()
Definition: SMESH_Mesh.hxx:405
TCallUp * _callUp
Definition: SMESH_Mesh.hxx:466
TListOfListOfInt _subMeshOrder
Definition: SMESH_Mesh.hxx:460
virtual bool IsParallel()
Definition: SMESH_Mesh.hxx:407
SMESHDS_Mesh * GetMeshDS()
Definition: SMESH_Mesh.hxx:193
Definition: SMESH_subMesh.hxx:61
compute_event
Definition: SMESH_subMesh.hxx:116
algo_event
Definition: SMESH_subMesh.hxx:108
SMESH::SMESH_Group_var AddGroup(SMESH::SMESH_Mesh_ptr theMesh, SMESH::ElementType theType, const QString &theGroupName)
Definition: SMESHGUI_GroupUtils.cxx:38
Definition: SMESH_Mesh.hxx:372
virtual TopoDS_Shape GetShapeByEntry(const std::string &entry)=0
virtual void Load()=0
virtual void RemoveGroup(const int theGroupID)=0
virtual void HypothesisModified(int hypID, bool updateIcons)=0
virtual ~TCallUp()
Definition: SMESH_Mesh.hxx:378
virtual bool IsLoaded()=0
Exception thrown by Export*() in case if a mesh is too large for export due to limitation of a format...
Definition: SMESH_Mesh.hxx:276
TooLargeForExport(const char *format)
Definition: SMESH_Mesh.hxx:277