initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / turbulenceModels / LES / LESfilters / laplaceFilter / laplaceFilter.H
blob76176c4e2fe578c38635df479a5eec2207df2b0d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::laplaceFilter
28 Description
29     Laplace filter for LES
31     @verbatim
32     Kernel                 as filter          as Test filter with ratio 2
33     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34     Box filter:            g = delta2/24  ->  g = delta2/6
35     Spherical box filter:  g = delta2/64  ->  g = delta2/16
36     Gaussian filter:       g = delta2/24  ->  g = delta2/6
37     @endverbatim
39 SourceFiles
40     laplaceFilter.C
42 \*---------------------------------------------------------------------------*/
44 #ifndef laplaceFilter_H
45 #define laplaceFilter_H
47 #include "LESfilter.H"
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 namespace Foam
54 /*---------------------------------------------------------------------------*\
55                            Class laplaceFilter Declaration
56 \*---------------------------------------------------------------------------*/
58 class laplaceFilter
60     public LESfilter
62     // Private data
64         scalar widthCoeff_;
65         volScalarField coeff_;
68     // Private Member Functions
70         //- Disallow default bitwise copy construct and assignment
71         laplaceFilter(const laplaceFilter&);
72         void operator=(const laplaceFilter&);
75 public:
77     //- Runtime type information
78     TypeName("laplace");
81     // Constructors
83         //- Construct from components
84         laplaceFilter(const fvMesh& mesh, scalar widthCoeff);
86         //- Construct from IOdictionary
87         laplaceFilter(const fvMesh& mesh, const dictionary&);
90     //- Destructor
91     virtual ~laplaceFilter()
92     {}
95     // Member Functions
97         //- Read the LESfilter dictionary
98         virtual void read(const dictionary&);
101     // Member Operators
103         virtual tmp<volScalarField> operator()(const tmp<volScalarField>&) const;
105         virtual tmp<volVectorField> operator()(const tmp<volVectorField>&) const;
107         virtual tmp<volSymmTensorField> operator()
108         (
109             const tmp<volSymmTensorField>&
110         ) const;
112         virtual tmp<volTensorField> operator()(const tmp<volTensorField>&) const;
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 } // End namespace Foam
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 #endif
124 // ************************************************************************* //