faceMDLimitedGrad.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-2016 OpenFOAM Foundation
9  Copyright (C) 2018-2021 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 Class
28  Foam::fv::faceMDLimitedGrad
29 
30 Group
31  grpFvGradSchemes
32 
33 Description
34  faceMDLimitedGrad gradient scheme applied to a runTime selected
35  base gradient scheme.
36 
37  The scalar limiter based on limiting the extrapolated face values
38  between the face-neighbour cell values and is applied to the gradient
39  in each face direction separately.
40 
41 SourceFiles
42  faceMDLimitedGrad.C
43 
44 \*---------------------------------------------------------------------------*/
45 
46 #ifndef faceMDLimitedGrad_H
47 #define faceMDLimitedGrad_H
48 
49 #include "gradScheme.H"
50 
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 
53 namespace Foam
54 {
55 
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57 
58 namespace fv
59 {
60 
61 /*---------------------------------------------------------------------------*\
62  Class faceMDLimitedGrad Declaration
63 \*---------------------------------------------------------------------------*/
64 
65 template<class Type>
67 :
68  public fv::gradScheme<Type>
69 {
70  // Private Data
71 
72  //- Gradient scheme
73  tmp<fv::gradScheme<Type>> basicGradScheme_;
74 
75  //- Limiter coefficient
76  const scalar k_;
77 
78 
79  // Private Member Functions
80 
81  inline void limitFace
82  (
83  scalar& limiter,
84  const scalar maxDelta,
85  const scalar minDelta,
86  const scalar extrapolate
87  ) const;
88 
89 
90  //- No copy construct
91  faceMDLimitedGrad(const faceMDLimitedGrad&) = delete;
92 
93  //- No copy assignment
94  void operator=(const faceMDLimitedGrad&) = delete;
95 
96 
97 public:
98 
99  //- RunTime type information
100  TypeName("faceMDLimited");
101 
102 
103  // Constructors
104 
105  //- Construct from mesh and schemeData
106  faceMDLimitedGrad(const fvMesh& mesh, Istream& schemeData)
107  :
109  basicGradScheme_(fv::gradScheme<Type>::New(mesh, schemeData)),
110  k_(readScalar(schemeData))
111  {
112  if (k_ < 0 || k_ > 1)
113  {
114  FatalIOErrorInFunction(schemeData)
115  << "coefficient = " << k_
116  << " should be >= 0 and <= 1"
117  << exit(FatalIOError);
118  }
119  }
120 
121 
122  // Member Functions
123 
124  //- Return the gradient of the given field to the gradScheme::grad
125  //- for optional caching
126  virtual tmp
127  <
130  > calcGrad
131  (
133  const word& name
134  ) const;
135 };
136 
137 
138 // * * * * * * * * Template Member Function Specialisations * * * * * * * * //
139 
140 template<>
141 tmp<volVectorField> faceMDLimitedGrad<scalar>::calcGrad
142 (
143  const volScalarField& vsf,
144  const word& name
145 ) const;
146 
147 
148 template<>
149 tmp<volTensorField> faceMDLimitedGrad<vector>::calcGrad
150 (
151  const volVectorField& vsf,
152  const word& name
153 ) const;
154 
155 
156 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
157 
158 } // End namespace fv
159 
160 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 
162 } // End namespace Foam
163 
164 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
165 
166 #endif
167 
168 // ************************************************************************* //
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:125
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
TypeName("faceMDLimited")
RunTime type information.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
typeOfRank< typename pTraits< arg1 >::cmptType, direction(pTraits< arg1 >::rank)+direction(pTraits< arg2 >::rank) >::type type
Definition: products.H:118
Generic GeometricField class.
Definition: areaFieldsFwd.H:50
tmp< areaScalarField > limiter(const areaScalarField &phi)
Definition: faNVDscheme.C:31
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:82
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:81
Mesh data needed to do the Finite Volume discretisation.
Definition: volMesh.H:45
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for expressions::valueTypeCode::INVALID.
Definition: exprTraits.C:127
A class for handling words, derived from Foam::string.
Definition: word.H:63
labelList fv(nPoints)
Abstract base class for gradient schemes.
Definition: gradScheme.H:59
#define FatalIOErrorInFunction(ios)
Report an error message using Foam::FatalIOError.
Definition: error.H:627
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
virtual tmp< GeometricField< typename outerProduct< vector, Type >::type, fvPatchField, volMesh > > calcGrad(const GeometricField< Type, fvPatchField, volMesh > &vsf, const word &name) const
Return the gradient of the given field to the gradScheme::grad for optional caching.
faceMDLimitedGrad gradient scheme applied to a runTime selected base gradient scheme.
A class for managing temporary objects.
Definition: HashPtrTable.H:50
const fvMesh & mesh() const
Return const reference to mesh.
Definition: gradScheme.H:138
Namespace for OpenFOAM.
IOerror FatalIOError
Error stream (stdout output on all processes), with additional &#39;FOAM FATAL IO ERROR&#39; header text and ...