PureUpwindFitScheme.H
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-2022 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 Class
25  Foam::PureUpwindFitScheme
26 
27 Description
28  Upwind biased fit surface interpolation scheme that applies an explicit
29  correction to upwind.
30 
31 \*---------------------------------------------------------------------------*/
32 
33 #ifndef PureUpwindFitScheme_H
34 #define PureUpwindFitScheme_H
35 
36 #include "UpwindFitData.H"
37 #include "upwind.H"
38 #include "Switch.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class PureUpwindFitScheme Declaration
47 \*---------------------------------------------------------------------------*/
48 
49 template<class Type, class Polynomial, class Stencil>
51 :
52  public upwind<Type>
53 {
54  // Private Data
55 
56  //- Factor the fit is allowed to deviate from linear.
57  // This limits the amount of high-order correction and increases
58  // stability on bad meshes
59  const scalar linearLimitFactor_;
60 
61  //- Weights for central stencil
62  const scalar centralWeight_;
63 
64 
65 public:
66 
67  //- Runtime type information
68  TypeName("PureUpwindFitScheme");
69 
70 
71  // Constructors
72 
73  //- Construct from mesh and Istream
74  // The name of the flux field is read from the Istream and looked-up
75  // from the mesh objectRegistry
77  :
78  upwind<Type>
79  (
80  mesh,
81  mesh.lookupObject<surfaceScalarField>(word(is))
82  ),
83  linearLimitFactor_(readScalar(is)),
84  centralWeight_(1000)
85  {}
86 
87 
88  //- Construct from mesh, faceFlux and Istream
90  (
91  const fvMesh& mesh,
92  const surfaceScalarField& faceFlux,
93  Istream& is
94  )
95  :
96  upwind<Type>(mesh, faceFlux),
97  linearLimitFactor_(readScalar(is)),
98  centralWeight_(1000)
99  {}
100 
101  //- Disallow default bitwise copy construction
102  PureUpwindFitScheme(const PureUpwindFitScheme&) = delete;
103 
104 
105  // Member Functions
106 
107  //- Return true if this scheme uses an explicit correction
108  virtual bool corrected() const
109  {
110  return true;
111  }
112 
113  //- Return the explicit correction to the face-interpolate
115  correction
116  (
117  const VolField<Type>& vf
118  ) const
119  {
120  const fvMesh& mesh = this->mesh();
121 
122  // Use the owner/neighbour splitting constructor
124 
125  const UpwindFitData<Polynomial>& ufd =
127  (
128  mesh,
129  stencil,
130  false, // offset to upwind
131  linearLimitFactor_,
132  centralWeight_
133  );
134 
135  const List<scalarList>& fo = ufd.owncoeffs();
136  const List<scalarList>& fn = ufd.neicoeffs();
137 
138  return stencil.weightedSum(this->faceFlux_, vf, fo, fn);
139  }
140 
141 
142  // Member Operators
143 
144  //- Disallow default bitwise assignment
145  void operator=(const PureUpwindFitScheme&) = delete;
146 };
147 
148 
149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
150 
151 } // End namespace Foam
152 
153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
154 
155 // Add the patch constructor functions to the hash tables
156 
157 #define makePureUpwindFitSurfaceInterpolationTypeScheme\
158 ( \
159  SS, \
160  POLYNOMIAL, \
161  STENCIL, \
162  TYPE \
163 ) \
164  \
165 typedef PureUpwindFitScheme<TYPE, POLYNOMIAL, STENCIL> \
166  PureUpwindFitScheme##TYPE##POLYNOMIAL##STENCIL##_; \
167 defineTemplateTypeNameAndDebugWithName \
168  (PureUpwindFitScheme##TYPE##POLYNOMIAL##STENCIL##_, #SS, 0); \
169  \
170 surfaceInterpolationScheme<TYPE>::addMeshConstructorToTable \
171 <PureUpwindFitScheme<TYPE, POLYNOMIAL, STENCIL>> \
172  add##SS##STENCIL##TYPE##MeshConstructorToTable_; \
173  \
174 surfaceInterpolationScheme<TYPE>::addMeshFluxConstructorToTable \
175 <PureUpwindFitScheme<TYPE, POLYNOMIAL, STENCIL>> \
176  add##SS##STENCIL##TYPE##MeshFluxConstructorToTable_;
177 
178 #define makePureUpwindFitSurfaceInterpolationScheme(SS, POLYNOMIAL, STENCIL) \
179  \
180 makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,scalar) \
181 makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,vector) \
182 makePureUpwindFitSurfaceInterpolationTypeScheme \
183 ( \
184  SS, \
185  POLYNOMIAL, \
186  STENCIL, \
187  sphericalTensor \
188 ) \
189 makePureUpwindFitSurfaceInterpolationTypeScheme \
190 ( \
191  SS, \
192  POLYNOMIAL, \
193  STENCIL, \
194  symmTensor \
195 ) \
196 makePureUpwindFitSurfaceInterpolationTypeScheme(SS,POLYNOMIAL,STENCIL,tensor)
197 
198 
199 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
200 
201 #endif
202 
203 // ************************************************************************* //
static Type & New(const Mesh &mesh)
Generic GeometricField class.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:60
Upwind biased fit surface interpolation scheme that applies an explicit correction to upwind.
virtual bool corrected() const
Return true if this scheme uses an explicit correction.
TypeName("PureUpwindFitScheme")
Runtime type information.
void operator=(const PureUpwindFitScheme &)=delete
Disallow default bitwise assignment.
PureUpwindFitScheme(const fvMesh &mesh, Istream &is)
Construct from mesh and Istream.
virtual tmp< SurfaceField< Type > > correction(const VolField< Type > &vf) const
Return the explicit correction to the face-interpolate.
Data for the quadratic fit correction interpolation scheme to be used with upwind biased stencil.
Definition: UpwindFitData.H:62
const List< scalarList > & neicoeffs() const
Return reference to neighbour fit coefficients.
const List< scalarList > & owncoeffs() const
Return reference to owner fit coefficients.
Creates upwind stencil by shifting a centred stencil to upwind and downwind faces and optionally remo...
tmp< SurfaceField< Type > > weightedSum(const surfaceScalarField &phi, const VolField< Type > &fld, const List< List< scalar >> &ownWeights, const List< List< scalar >> &neiWeights) const
Sum vol field contributions to create face values.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:101
const fvMesh & mesh() const
Return mesh reference.
A class for managing temporary objects.
Definition: tmp.H:55
Upwind interpolation scheme class.
Definition: upwind.H:54
A class for handling words, derived from string.
Definition: word.H:62
autoPtr< CompressibleMomentumTransportModel > New(const volScalarField &rho, const volVectorField &U, const surfaceScalarField &phi, const viscosity &viscosity)
Namespace for OpenFOAM.
bool readScalar(const char *buf, doubleScalar &s)
Read whole of buf as a scalar. Return true if successful.
Definition: doubleScalar.H:75