QUICKV.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26Class
27 Foam::QUICKVLimiter
28
29Description
30 Class with limiter function which returns the limiter for the
31 quadratic-upwind differencing scheme.
32
33 Note that the weighting factors are not bounded between upwind and
34 central-differencing, some downwind contribution is possible although
35 the interpolate is limited to be between the upwind and downwind cell
36 values.
37
38 Used in conjunction with the template class LimitedScheme.
39
40SourceFiles
41 QUICKV.C
42
43\*---------------------------------------------------------------------------*/
44
45#ifndef QUICKV_H
46#define QUICKV_H
47
48#include "vector.H"
49
50// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51
52namespace Foam
53{
54
55/*---------------------------------------------------------------------------*\
56 Class QUICKVLimiter Declaration
57\*---------------------------------------------------------------------------*/
58
59template<class LimiterFunc>
60class QUICKVLimiter
61:
62 public LimiterFunc
63{
64
65public:
68 {}
70 scalar limiter
71 (
72 const scalar cdWeight,
73 const scalar faceFlux,
74 const typename LimiterFunc::phiType& phiP,
75 const typename LimiterFunc::phiType& phiN,
76 const typename LimiterFunc::gradPhiType& gradcP,
77 const typename LimiterFunc::gradPhiType& gradcN,
78 const vector& d
79 ) const
80 {
81 vector gradfV = phiN - phiP;
82
83 scalar phiCD = gradfV & (cdWeight*phiP + (1 - cdWeight)*phiN);
84
85 scalar phiU, phif;
86
87 if (faceFlux > 0)
88 {
89 phiU = gradfV & phiP;
90 phif = 0.5*(phiCD + phiU + (1 - cdWeight)*(gradfV & (d & gradcP)));
91 }
92 else
93 {
94 phiU = gradfV & phiN;
95 phif = 0.5*(phiCD + phiU - cdWeight*(gradfV & (d & gradcN)));
96 }
97
98 // Calculate the effective limiter for the QUICK interpolation
99 scalar QLimiter = (phif - phiU)/stabilise(phiCD - phiU, SMALL);
100
101 // Limit the limiter between upwind and downwind
102 return max(min(QLimiter, 2), 0);
103 }
104};
105
106
107// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108
109} // End namespace Foam
110
111// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112
113#endif
114
115// ************************************************************************* //
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:64
Class with limiter function which returns the limiter for the quadratic-upwind differencing scheme.
Definition: QUICKV.H:62
QUICKVLimiter(Istream &)
Definition: QUICKV.H:66
scalar limiter(const scalar cdWeight, const scalar faceFlux, const typename LimiterFunc::phiType &phiP, const typename LimiterFunc::phiType &phiN, const typename LimiterFunc::gradPhiType &gradcP, const typename LimiterFunc::gradPhiType &gradcN, const vector &d) const
Definition: QUICKV.H:70
Namespace for OpenFOAM.
label max(const labelHashSet &set, label maxValue=labelMin)
Find the max value in labelHashSet, optionally limited by second argument.
Definition: hashSets.C:47
label min(const labelHashSet &set, label minValue=labelMax)
Find the min value in labelHashSet, optionally limited by second argument.
Definition: hashSets.C:33
dimensionedScalar stabilise(const dimensionedScalar &x, const dimensionedScalar &y)