1 // SMESH SMDS : implementaion of Salome mesh data structure
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : SMDS_VolumeTool.hxx
26 // Created : Tue Jul 13 11:27:17 2004
27 // Author : Edward AGAPOV (eap)
30 #ifndef SMDS_VolumeTool_HeaderFile
31 #define SMDS_VolumeTool_HeaderFile
33 class SMDS_MeshElement;
35 class SMDS_PolyhedralVolumeOfNodes;
41 //#include <SALOME_WNT.hxx>
43 //#define SALOME_WNT_EXPORT
46 #if defined WNT && defined WIN32 && defined SMDS_EXPORTS
47 #define SMDS_WNT_EXPORT __declspec( dllexport )
49 #define SMDS_WNT_EXPORT
52 // =========================================================================
54 // Class providing topological and other information about SMDS_MeshVolume:
55 // allows iteration on faces or, to be precise, on nodes of volume sides;
56 // provides info on nodes connection etc.
58 // =========================================================================
60 class SMDS_WNT_EXPORT SMDS_VolumeTool
64 enum VolumeType { UNKNOWN = -1, TETRA = 0, PYRAM, PENTA, HEXA, QUAD_TETRA,
65 QUAD_PYRAM, QUAD_PENTA, QUAD_HEXA, POLYHEDA };
69 SMDS_VolumeTool (const SMDS_MeshElement* theVolume);
71 bool Set (const SMDS_MeshElement* theVolume);
73 // Return false if theVolume is not of type SMDSAbs_Volume
75 // -----------------------
77 // -----------------------
79 VolumeType GetVolumeType() const;
81 bool IsForward() const { return myVolForward; }
82 // Check volume orientation. can be changed by Inverse().
83 // See node order of forward volumes at the file bottom
86 // Change nodes order as if the volume changes its orientation:
87 // top and bottom faces are reversed.
88 // Result of IsForward() and methods returning nodes change
90 const SMDS_MeshNode** GetNodes() { return myVolumeNodes; }
91 // Return array of volume nodes
93 int NbNodes() { return myVolumeNbNodes; }
94 // Return array of volume nodes
96 double GetSize() const;
97 // Return element volume
99 bool GetBaryCenter (double & X, double & Y, double & Z) const;
102 // -----------------------
103 // info on node connection
104 // -----------------------
106 bool IsLinked (const SMDS_MeshNode* theNode1,
107 const SMDS_MeshNode* theNode2) const;
108 // Return true if theNode1 is linked with theNode2.
110 bool IsLinked (const int theNode1Index,
111 const int theNode2Index) const;
112 // Return true if the node with theNode1Index is linked
113 // with the node with theNode2Index
115 int GetNodeIndex(const SMDS_MeshNode* theNode) const;
116 // Return an index of theNode
118 int GetAllExistingEdges(std::vector<const SMDS_MeshElement*> & edges) const;
119 // Fill vector with boundary edges existing in the mesh
125 void SetExternalNormal ();
126 // Node order in faces will be so that faces normals are external.
128 int NbFaces() const { return myNbFaces; }
129 // Return number of faces of the volume. In the following
130 // methods 0 <= faceIndex < NbFaces()
132 int NbFaceNodes( int faceIndex );
133 // Return number of nodes in the array of face nodes
135 const int* GetFaceNodesIndices( int faceIndex );
136 // Return the array of face nodes indices
137 // To comfort link iteration, the array
138 // length == NbFaceNodes( faceIndex ) + 1 and
139 // the last node index == the first one.
141 const SMDS_MeshNode** GetFaceNodes( int faceIndex );
142 // Return the array of face nodes.
143 // To comfort link iteration, the array
144 // length == NbFaceNodes( faceIndex ) + 1 and
145 // the last node == the first one.
146 // WARNING: do not modify the array, some methods
147 // work basing on its contents
149 bool GetFaceNodes (int faceIndex,
150 std::set<const SMDS_MeshNode*>& theFaceNodes );
151 // Return a set of face nodes.
153 bool IsFaceExternal( int faceIndex );
154 // Check normal orientation of a face.
155 // SetExternalNormal() is taken into account.
157 bool IsFreeFace( int faceIndex );
158 // Check that all volumes built on the face nodes lays on one side
160 bool GetFaceNormal (int faceIndex, double & X, double & Y, double & Z);
161 // Return a normal to a face
163 double GetFaceArea( int faceIndex );
166 int GetOppFaceIndex( int faceIndex ) const;
167 // Return index of the opposite face if it exists, else -1.
169 int GetFaceIndex( const std::set<const SMDS_MeshNode*>& theFaceNodes );
170 // Return index of a face formed by theFaceNodes.
171 // Return -1 if a face not found
173 //int GetFaceIndex( const std::set<int>& theFaceNodesIndices );
174 // Return index of a face formed by theFaceNodesIndices
175 // Return -1 if a face not found
177 int GetAllExistingFaces(std::vector<const SMDS_MeshElement*> & faces);
178 // Fill vector with boundary faces existing in the mesh
180 // ------------------------
181 // static methods for faces
182 // ------------------------
184 static VolumeType GetType(int nbNodes);
185 // return VolumeType by nb of nodes in a volume
187 static int NbFaces( VolumeType type );
188 // return nb of faces by volume type
190 static const int* GetFaceNodesIndices(VolumeType type,
193 // Return the array of face nodes indices
194 // To comfort link iteration, the array
195 // length == NbFaceNodes( faceIndex ) + 1 and
196 // the last node index == the first one.
198 static int NbFaceNodes(VolumeType type,
200 // Return number of nodes in the array of face nodes
202 static int NbCornerNodes(VolumeType type);
203 // Useful to know nb of corner nodes of a quadratic volume
207 bool setFace( int faceIndex );
209 const SMDS_MeshElement* myVolume;
210 const SMDS_PolyhedralVolumeOfNodes* myPolyedre;
215 const SMDS_MeshNode** myVolumeNodes;
217 bool myExternalFaces;
221 int* myFaceNodeIndices;
222 const SMDS_MeshNode** myFaceNodes;
228 ///////////////////////////////////////////////////////////////////////////
230 // ORDER OF NODES OF FORWARD ELEMENT
232 ///////////////////////////////////////////////////////////////////////////
239 // N0 +---|---+ N1 TETRAHEDRON
255 // | / \ | PENTAHEDRON
265 // N4+----------+N7 |
266 // | | | | HEXAHEDRON
269 // | N1+------|---+N2