Fix tutorials: typo in tutorials/viscoelastic/viscoelasticFluidFoam/S-MDCPP/constant...
[OpenFOAM-1.6-ext.git] / src / finiteVolume / interpolation / surfaceInterpolation / limitedSchemes / Phi / Phi.H
blobda9c9ece48e1dd1de0bb537deb1178506630f5fa
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
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::PhiLimiter
28 Description
29     Class with limiter function which returns the limiter for the
30     Phi differencing scheme.
32     Used in conjunction with the template class PhiScheme.
34 SourceFiles
35     Phi.C
37 \*---------------------------------------------------------------------------*/
39 #ifndef Phi_H
40 #define Phi_H
42 #include "vector.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class PhiLimiter Declaration
51 \*---------------------------------------------------------------------------*/
53 class PhiLimiter
55     scalar k_;
57 public:
59     PhiLimiter(Istream& is)
60     :
61         k_(readScalar(is))
62     {
63         if (k_ < 0 || k_ > 1)
64         {
65             FatalIOErrorIn("PhiLimiter(Istream& is)", is)
66                 << "coefficient = " << k_
67                 << " should be >= 0 and <= 1"
68                 << exit(FatalIOError);
69         }
70     }
72     scalar limiter
73     (
74         const scalar cdWeight,
75         const scalar faceFlux,
76         const vector& PhiP,
77         const vector& PhiN,
78         const vector& Sf,
79         const scalar&
80     ) const
81     {
82         scalar phiP = Sf&PhiP;
83         scalar phiN = Sf&PhiN;
85         scalar phiU;
87         if (faceFlux > 0)
88         {
89             phiU = phiP;
90         }
91         else
92         {
93             phiU = phiN;
94         }
96         scalar phiCD = cdWeight*phiP + (1 - cdWeight)*phiN;
98         // Calculate the effective limiter for the Phi interpolation
99         //scalar PLimiter =
100         //    (1.0 - k_) + k_*(faceFlux - phiU)/stabilise(phiCD - phiU, SMALL);
102         scalar PLimiter = 
103             ((faceFlux - phiU)/stabilise(phiCD - phiU, SMALL) + k_);
105         // Limit the limiter between upwind and central
106         return max(min(PLimiter, 1), 0);
107     }
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 } // End namespace Foam
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 #endif
119 // ************************************************************************* //