initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / interpolation / surfaceInterpolation / limitedSchemes / linearUpwind / linearUpwindV.H
blob7f8c9de742dd6eff299dfb953614113e2bef8684
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::linearUpwindV
28 Description
29     linearUpwindV interpolation scheme class derived from upwind and returns
30     upwind weighting factors but also applies an explicit correction.
32 SourceFiles
33     linearUpwindV.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef linearUpwindV_H
38 #define linearUpwindV_H
40 #include "upwind.H"
41 #include "gaussGrad.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                            Class linearUpwindV Declaration
50 \*---------------------------------------------------------------------------*/
52 template<class Type>
53 class linearUpwindV
55     public upwind<Type>
57     // Private Data
59         tmp<fv::gradScheme<Type> > gradScheme_;
62     // Private Member Functions
64         //- Disallow default bitwise copy construct
65         linearUpwindV(const linearUpwindV&);
67         //- Disallow default bitwise assignment
68         void operator=(const linearUpwindV&);
71 public:
73     //- Runtime type information
74     TypeName("linearUpwindV");
77     // Constructors
79         //- Construct from faceFlux
80         linearUpwindV
81         (
82             const fvMesh& mesh,
83             const surfaceScalarField& faceFlux
84         )
85         :
86             upwind<Type>(mesh, faceFlux),
87             gradScheme_
88             (
89                 new fv::gaussGrad<Type>(mesh)
90             )
91         {}
93         //- Construct from Istream.
94         //  The name of the flux field is read from the Istream and looked-up
95         //  from the mesh objectRegistry
96         linearUpwindV
97         (
98             const fvMesh& mesh,
99             Istream& schemeData
100         )
101         :
102             upwind<Type>(mesh, schemeData),
103             gradScheme_
104             (
105                 fv::gradScheme<Type>::New
106                 (
107                     mesh,
108                     schemeData
109                 )
110             )
111         {}
113         //- Construct from faceFlux and Istream
114         linearUpwindV
115         (
116             const fvMesh& mesh,
117             const surfaceScalarField& faceFlux,
118             Istream& schemeData
119         )
120         :
121             upwind<Type>(mesh, faceFlux, schemeData),
122             gradScheme_
123             (
124                 fv::gradScheme<Type>::New
125                 (
126                     mesh,
127                     schemeData
128                 )
129             )
130         {}
133     // Member Functions
135         //- Return true if this scheme uses an explicit correction
136         virtual bool corrected() const
137         {
138             return true;
139         }
141         //- Return the explicit correction to the face-interpolate
142         virtual tmp<GeometricField<Type, fvsPatchField, surfaceMesh> >
143         correction
144         (
145             const GeometricField<Type, fvPatchField, volMesh>&
146         ) const;
151 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
153 } // End namespace Foam
155 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
157 #endif
159 // ************************************************************************* //