Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / finiteVolume / interpolation / surfaceInterpolation / limitedSchemes / vanLeer / vanLeer.H
blob3f376d4075126750198f58855882f649e9f1804f
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::vanLeerLimiter
27 Description
28     Class with limiter function which returns the limiter for the
29     vanLeer differencing scheme based on r obtained from the LimiterFunc
30     class.
32     Used in conjunction with the template class LimitedScheme.
34 SourceFiles
35     vanLeer.C
37 \*---------------------------------------------------------------------------*/
39 #ifndef vanLeer_H
40 #define vanLeer_H
42 #include "vector.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class vanLeerLimiter Declaration
51 \*---------------------------------------------------------------------------*/
53 template<class LimiterFunc>
54 class vanLeerLimiter
56     public LimiterFunc
59 public:
61     vanLeerLimiter(Istream&)
62     {}
64     scalar limiter
65     (
66         const scalar,
67         const scalar faceFlux,
68         const typename LimiterFunc::phiType& phiP,
69         const typename LimiterFunc::phiType& phiN,
70         const typename LimiterFunc::gradPhiType& gradcP,
71         const typename LimiterFunc::gradPhiType& gradcN,
72         const vector& d
73     ) const
74     {
75         scalar r = LimiterFunc::r
76         (
77             faceFlux, phiP, phiN, gradcP, gradcN, d
78         );
80         return (r + mag(r))/(1 + mag(r));
81     }
85 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
87 } // End namespace Foam
89 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91 #endif
93 // ************************************************************************* //