BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / mesh / autoMesh / autoHexMesh / shellSurfaces / shellSurfaces.H
blob96a55b5500ab0b668e77560a4ef79fad7969936f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::shellSurfaces
27 Description
28     Encapsulates queries for volume refinement ('refine all cells within
29     shell').
31 SourceFiles
32     shellSurfaces.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef shellSurfaces_H
37 #define shellSurfaces_H
39 #include "searchableSurface.H"
40 #include "Tuple2.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 class searchableSurfaces;
49 /*---------------------------------------------------------------------------*\
50                            Class shellSurfaces Declaration
51 \*---------------------------------------------------------------------------*/
53 class shellSurfaces
55 public:
57     // Public data types
59         //- Volume refinement controls
60         enum refineMode
61         {
62             INSIDE,         // Refine all inside shell
63             OUTSIDE,        // ,,         outside
64             DISTANCE        // Refine based on distance to shell
65         };
68 private:
70     // Private data
72         //- Reference to all geometry.
73         const searchableSurfaces& allGeometry_;
75         //- Indices of surfaces that are shells
76         labelList shells_;
78         //- Per shell whether to refine inside or outside
79         List<refineMode> modes_;
81         //- Per shell the list of ranges
82         List<scalarField> distances_;
84         //- Per shell per distance the refinement level
85         labelListList levels_;
88     // Private data
90         //- refineMode names
91         static const NamedEnum<refineMode, 3> refineModeNames_;
94     // Private Member Functions
96         //- Helper function for initialisation.
97         void setAndCheckLevels
98         (
99             const label shellI,
100             const List<Tuple2<scalar, label> >&
101         );
103         void orient();
105         void findHigherLevel
106         (
107             const pointField& pt,
108             const label shellI,
109             labelList& maxLevel
110         ) const;
112 public:
114     // Constructors
116         //- Construct from components
117         shellSurfaces
118         (
119             const searchableSurfaces& allGeometry,
120             const labelList& shells,
121             const List<refineMode>& modes,
122             const List<scalarField>& distances,
123             const labelListList& levels
124         );
126         //- Construct from geometry and dictionaries
127         shellSurfaces
128         (
129             const searchableSurfaces& allGeometry,
130             const PtrList<dictionary>& shellDicts
131         );
133         //- Construct from geometry and dictionary
134         shellSurfaces
135         (
136             const searchableSurfaces& allGeometry,
137             const dictionary& shellsDict
138         );
141     // Member Functions
143         // Access
145             //const List<scalarField>& distances() const
146             //{
147             //    return distances_;
148             //}
149             //
150             ////- Per shell per distance the refinement level
151             //const labelListList& levels() const
152             //{
153             //    return levels_;
154             //}
157         // Query
159             //- Highest shell level
160             label maxLevel() const;
162             //- Find shell level higher than ptLevel
163             void findHigherLevel
164             (
165                 const pointField& pt,
166                 const labelList& ptLevel,
167                 labelList& maxLevel
168             ) const;
173 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
175 } // End namespace Foam
177 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
179 #endif
181 // ************************************************************************* //