Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / sampling / sampledSurface / thresholdCellFaces / thresholdCellFaces.H
blob41c6e05d42dc49b2f5becfb99090cc1a57df9a44
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
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::thresholdCellFaces
27 Description
28     Selects the mesh cell faces specified by a threshold value.
29     Non-triangulated by default.
31 SourceFiles
32     thresholdCellFaces.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef thresholdCellFaces_H
37 #define thresholdCellFaces_H
39 #include "MeshedSurface.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 class polyMesh;
48 /*---------------------------------------------------------------------------*\
49                        Class thresholdCellFaces Declaration
50 \*---------------------------------------------------------------------------*/
52 class thresholdCellFaces
54     public MeshedSurface<face>
56     //- Private typedefs for convenience
57         typedef MeshedSurface<face> MeshStorage;
59         //- Reference to mesh
60         const polyMesh& mesh_;
62         //- For every face the original cell in mesh
63         labelList meshCells_;
65     // Private Member Functions
67         void calculate
68         (
69             const scalarField&,
70             const scalar lowerThreshold,
71             const scalar upperThreshold,
72             const bool triangulate
73         );
75 public:
77     //- Runtime type information
78     TypeName("thresholdCellFaces");
81     // Constructors
83         //- Construct from mesh, field and threshold value
84         thresholdCellFaces
85         (
86             const polyMesh&,
87             const scalarField&,
88             const scalar lowerThreshold,
89             const scalar upperThreshold,
90             const bool triangulate = false
91         );
94     // Member Functions
96         //- For every face original cell in mesh
97         labelList& meshCells()
98         {
99             return meshCells_;
100         }
102         //- For every face original cell in mesh
103         const labelList& meshCells() const
104         {
105             return meshCells_;
106         }
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 } // End namespace Foam
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 #endif
122 // ************************************************************************* //