Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / applications / utilities / postProcessing / dataConversion / foamToFieldview9 / fieldviewTopology.H
blob9c267c66d4c6545c4139731339aec0808dadb355
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::fieldviewTopology
27 Description
29 SourceFiles
30     fieldviewTopology.C
32 \*---------------------------------------------------------------------------*/
34 #ifndef fieldviewTopology_H
35 #define fieldviewTopology_H
37 #include "labelList.H"
38 #include "faceList.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 // Forward declaration of classes
46 class polyMesh;
47 class cellShape;
49 /*---------------------------------------------------------------------------*\
50                            Class fieldviewTopology Declaration
51 \*---------------------------------------------------------------------------*/
53 class fieldviewTopology
55     // Private data
57         //- Hexes in fieldview format
58         labelList hexLabels_;
60         labelList prismLabels_;
62         labelList pyrLabels_;
64         labelList tetLabels_;
66         //- Number of non-hex/prism/pyr/tet labels
67         label nPoly_;
70         //
71         // Patches
72         //
74         //- Quad and tri patch faces in fv format
75         labelListList quadFaceLabels_;
77         //- Number of polyhedral faces per patch
78         labelList nPolyFaces_;
81     // Private Member Functions
83         static labelList calcFaceAddressing
84         (
85             const faceList& allFaces,   // faces given faceLabels
86             const cellShape& shape,
87             const labelList& faces,     // faceLabels for given cell
88             const label cellI
89         );
92         //- Disallow default bitwise copy construct
93         fieldviewTopology(const fieldviewTopology&);
95         //- Disallow default bitwise assignment
96         void operator=(const fieldviewTopology&);
99 public:
101     // Constructors
103         //- Construct from components
104         fieldviewTopology(const polyMesh& mesh, const bool setWallInfo);
107     // Member Functions
109         // Access
111             const labelList& hexLabels() const
112             {
113                 return hexLabels_;
114             }
116             const labelList& prismLabels() const
117             {
118                 return prismLabels_;
119             }
121             const labelList& pyrLabels() const
122             {
123                 return pyrLabels_;
124             }
126             const labelList& tetLabels() const
127             {
128                 return tetLabels_;
129             }
131             label nHex() const
132             {
133                 return hexLabels().size()/9;
134             }
136             label nPrism() const
137             {
138                 return prismLabels().size()/7;
139             }
141             label nPyr() const
142             {
143                 return pyrLabels().size()/6;
144             }
146             label nTet() const
147             {
148                 return tetLabels().size()/5;
149             }
151             label nPoly() const
152             {
153                 return nPoly_;
154             }
156             const labelListList& quadFaceLabels() const
157             {
158                 return quadFaceLabels_;
159             }
161             const labelList& nPolyFaces() const
162             {
163                 return nPolyFaces_;
164             }
168 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
170 } // End namespace Foam
172 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
174 #endif
176 // ************************************************************************* //