ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / finiteVolume / fvMesh / wallDist / wallDistData.H
blob5689471ae40a3a737daab387f2b1a06553a81227
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::wallDistData
27 Description
28     Wall distance calculation. Like wallDist but also transports extra
29     data (template argument).
31     Used for e.g reflection vector calculation or vanDriest damping.
33     Templated on two parameters:
34         - TransferType: type of overall data transported
35           (e.g. wallPointData\<vector\>)
37 SourceFiles
38     wallDistData.C
40 \*---------------------------------------------------------------------------*/
42 #ifndef wallDistData_H
43 #define wallDistData_H
45 #include "cellDistFuncs.H"
46 #include "volFields.H"
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 namespace Foam
53 /*---------------------------------------------------------------------------*\
54                            Class wallDistData Declaration
55 \*---------------------------------------------------------------------------*/
57 template<class TransferType>
58 class wallDistData
60     public volScalarField,
61     public cellDistFuncs
64 private:
66     typedef typename TransferType::dataType Type;
69     // Private Member Data
71         //- Reference to field whose data to use (on walls) and update
72         //  (every cell and non-wall face)
73         GeometricField<Type, fvPatchField, volMesh>& field_;
75         //- Do accurate distance calculation for near-wall cells.
76         bool correctWalls_;
78         //- Number of unset cells and faces.
79         label nUnset_;
82     // Private Member Functions
84         //- Disallow default bitwise copy construct
85         wallDistData(const wallDistData&);
87         //- Disallow default bitwise assignment
88         void operator=(const wallDistData&);
91 public:
93     // Constructors
95         //- Construct from mesh and flag whether or not to correct wall.
96         //  Calculate for all cells. correctWalls : correct wall (face&point)
97         //  cells for correct distance, searching neighbours.
98         wallDistData
99         (
100             const fvMesh& mesh,
101             GeometricField<Type, fvPatchField, volMesh>&,
102             bool correctWalls = true
103         );
106     //- Destructor
107     virtual ~wallDistData();
110     // Member Functions
112         const volScalarField& y() const
113         {
114             return *this;
115         }
117         label nUnset() const
118         {
119             return nUnset_;
120         }
122         //- Access field
123         const GeometricField<Type, fvPatchField, volMesh>& data() const
124         {
125             return field_;
126         }
128         //- Correct for mesh geom/topo changes
129         virtual void correct();
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
135 } // End namespace Foam
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 #ifdef NoRepository
140 #   include "wallDistData.C"
141 #endif
143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
145 #endif
147 // ************************************************************************* //