Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / finiteVolume / finiteVolume / gradSchemes / gaussGrad / gaussGrad.H
blob7983cb1f9e5dfa2db15a9b22089aa4bf014fcb53
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::fv::gaussGrad
27 Description
28     Basic second-order gradient scheme using face-interpolation
29     and Gauss' theorem.
31 SourceFiles
32     gaussGrad.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef gaussGrad_H
37 #define gaussGrad_H
39 #include "gradScheme.H"
40 #include "surfaceInterpolationScheme.H"
41 #include "linear.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 namespace fv
53 /*---------------------------------------------------------------------------*\
54                        Class gaussGrad Declaration
55 \*---------------------------------------------------------------------------*/
57 template<class Type>
58 class gaussGrad
60     public fv::gradScheme<Type>
62     // Private data
64         tmp<surfaceInterpolationScheme<Type> > tinterpScheme_;
67     // Private Member Functions
69         //- Disallow default bitwise copy construct
70         gaussGrad(const gaussGrad&);
72         //- Disallow default bitwise assignment
73         void operator=(const gaussGrad&);
76 public:
78     //- Runtime type information
79     TypeName("Gauss");
82     // Constructors
84         //- Construct from mesh
85         gaussGrad(const fvMesh& mesh)
86         :
87             gradScheme<Type>(mesh),
88             tinterpScheme_(new linear<Type>(mesh))
89         {}
91         //- Construct from mesh and Istream
92         gaussGrad(const fvMesh& mesh, Istream& is)
93         :
94             gradScheme<Type>(mesh),
95             tinterpScheme_(NULL)
96         {
97             if (is.eof())
98             {
99                 tinterpScheme_ =
100                     tmp<surfaceInterpolationScheme<Type> >
101                     (
102                         new linear<Type>(mesh)
103                     );
104             }
105             else
106             {
107                 tinterpScheme_ =
108                     tmp<surfaceInterpolationScheme<Type> >
109                     (
110                         surfaceInterpolationScheme<Type>::New(mesh, is)
111                     );
112             }
113         }
116     // Member Functions
118         //- Return the gradient of the given field
119         //  calculated using Gauss' theorem on the given surface field
120         static
121         tmp
122         <
123             GeometricField
124             <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>
125         > gradf
126         (
127             const GeometricField<Type, fvsPatchField, surfaceMesh>&,
128             const word& name
129         );
131         //- Return the gradient of the given field to the gradScheme::grad
132         //  for optional caching
133         virtual tmp
134         <
135             GeometricField
136             <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>
137         > calcGrad
138         (
139             const GeometricField<Type, fvPatchField, volMesh>& vsf,
140             const word& name
141         ) const;
143         //- Correct the boundary values of the gradient using the patchField
144         // snGrad functions
145         static void correctBoundaryConditions
146         (
147             const GeometricField<Type, fvPatchField, volMesh>&,
148             GeometricField
149             <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>&
150         );
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
156 } // End namespace fv
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 } // End namespace Foam
162 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
164 #ifdef NoRepository
165 #   include "gaussGrad.C"
166 #endif
168 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
170 #endif
172 // ************************************************************************* //