cellLimitedGrads.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "cellLimitedGrad.H"
27 #include "minmodGradientLimiter.H"
29 #include "cubicGradientLimiter.H"
30 
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 
33 #define makeNamedFvLimitedGradTypeScheme(SS, Type, Limiter, Name) \
34  typedef Foam::fv::SS<Foam::Type, Foam::fv::gradientLimiters::Limiter> \
35  SS##Type##Limiter##_; \
36  \
37  defineTemplateTypeNameAndDebugWithName \
38  ( \
39  SS##Type##Limiter##_, \
40  Name, \
41  0 \
42  ); \
43  \
44  namespace Foam \
45  { \
46  namespace fv \
47  { \
48  gradScheme<Type>::addIstreamConstructorToTable \
49  < \
50  SS<Type, gradientLimiters::Limiter> \
51  > add##SS##Type##Limiter##IstreamConstructorToTable_; \
52  } \
53  }
54 
55 #define makeFvLimitedGradTypeScheme(SS, Type, Limiter) \
56  makeNamedFvLimitedGradTypeScheme(SS##Grad, Type, Limiter, #SS"<"#Limiter">")
57 
58 #define makeFvLimitedGradScheme(SS, Limiter) \
59  \
60  makeFvLimitedGradTypeScheme(SS, scalar, Limiter) \
61  makeFvLimitedGradTypeScheme(SS, vector, Limiter)
62 
63 
64 // Default limiter in minmod specified without the limiter name
65 // for backward compatibility
66 makeNamedFvLimitedGradTypeScheme(cellLimitedGrad, scalar, minmod, "cellLimited")
67 makeNamedFvLimitedGradTypeScheme(cellLimitedGrad, vector, minmod, "cellLimited")
68 
69 makeFvLimitedGradScheme(cellLimited, Venkatakrishnan)
70 makeFvLimitedGradScheme(cellLimited, cubic)
71 
72 // ************************************************************************* //
#define makeFvLimitedGradScheme(SS, Limiter)
#define makeNamedFvLimitedGradTypeScheme(SS, Type, Limiter, Name)