ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / meshTools / indexedOctree / treeDataFace.H
blob2b8ab258318cadc6d6e7a80168f2bc0938f47893
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::treeDataFace
27 Description
28     Encapsulation of data needed to search for faces.
30 SourceFiles
31     treeDataFace.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef treeDataFace_H
36 #define treeDataFace_H
38 #include "face.H"
39 #include "indexedOctree.H"
40 #include "treeBoundBoxList.H"
41 #include "PackedBoolList.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 // Forward declaration of classes
49 class primitiveMesh;
50 //template<class Type> class indexedOctree;
51 class polyPatch;
53 /*---------------------------------------------------------------------------*\
54                         Class treeDataFace Declaration
55 \*---------------------------------------------------------------------------*/
57 class treeDataFace
59     // Static data
61         //- tolerance on linear dimensions
62         static scalar tolSqr;
66     // Private data
68         const primitiveMesh& mesh_;
70         //- Subset of faces to work on
71         const labelList faceLabels_;
73         //- Inverse of faceLabels. For every mesh whether face is in faceLabels.
74         PackedBoolList isTreeFace_;
76         //- Whether to precalculate and store face bounding box
77         const bool cacheBb_;
79         //- face bounding boxes (valid only if cacheBb_)
80         treeBoundBoxList bbs_;
83     // Private Member Functions
85         //- Calculate face bounding box
86         treeBoundBox calcBb(const label cellI) const;
88         //- Initialise all member data
89         void update();
91 public:
93     // Declare name of the class and its debug switch
94     ClassName("treeDataFace");
97     // Constructors
99         //- Construct from mesh and subset of faces.
100         treeDataFace
101         (
102             const bool cacheBb,
103             const primitiveMesh&,
104             const labelUList&
105         );
107         //- Construct from mesh and subset of faces, transferring contents
108         treeDataFace
109         (
110             const bool cacheBb,
111             const primitiveMesh&,
112             const Xfer<labelList>&
113         );
115         //- Construct from mesh. Uses all faces in mesh.
116         treeDataFace(const bool cacheBb, const primitiveMesh&);
118         //- Construct from mesh. Uses all faces in patch.
119         treeDataFace(const bool cacheBb, const polyPatch&);
122     // Member Functions
124         // Access
126             inline const labelList& faceLabels() const
127             {
128                 return faceLabels_;
129             }
131             inline const primitiveMesh& mesh() const
132             {
133                 return mesh_;
134             }
136             inline label size() const
137             {
138                 return faceLabels_.size();
139             }
141             //- Get representative point cloud for all shapes inside
142             //  (one point per shape)
143             pointField shapePoints() const;
146         // Search
148             //- Get type (inside,outside,mixed,unknown) of point w.r.t. surface.
149             //  Only makes sense for closed surfaces.
150             label getVolumeType
151             (
152                 const indexedOctree<treeDataFace>&,
153                 const point&
154             ) const;
156             //- Does (bb of) shape at index overlap bb
157             bool overlaps
158             (
159                 const label index,
160                 const treeBoundBox& sampleBb
161             ) const;
163             //- Calculates nearest (to sample) point in shape.
164             //  Returns actual point and distance (squared)
165             void findNearest
166             (
167                 const labelUList& indices,
168                 const point& sample,
170                 scalar& nearestDistSqr,
171                 label& nearestIndex,
172                 point& nearestPoint
173             ) const;
175             //- Calculates nearest (to line) point in shape.
176             //  Returns point and distance (squared)
177             void findNearest
178             (
179                 const labelUList& indices,
180                 const linePointRef& ln,
182                 treeBoundBox& tightest,
183                 label& minIndex,
184                 point& linePoint,
185                 point& nearestPoint
186             ) const
187             {
188                 notImplemented
189                 (
190                     "treeDataFace::findNearest"
191                     "(const labelUList&, const linePointRef&, ..)"
192                 );
193             }
195             //- Calculate intersection of shape with ray. Sets result
196             //  accordingly
197             bool intersects
198             (
199                 const label index,
200                 const point& start,
201                 const point& end,
202                 point& result
203             ) const;
208 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
210 } // End namespace Foam
212 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
215 #endif
217 // ************************************************************************* //