snGradScheme.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-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 \*---------------------------------------------------------------------------*/
25 
26 #include "fv.H"
27 #include "snGradScheme.H"
28 #include "volFields.H"
29 #include "surfaceFields.H"
30 #include "HashTable.H"
31 
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 
39 namespace fv
40 {
41 
42 // * * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * //
43 
44 template<class Type>
46 (
47  const fvMesh& mesh,
48  Istream& schemeData
49 )
50 {
51  if (fv::debug)
52  {
53  InfoInFunction << "Constructing snGradScheme<Type>" << endl;
54  }
55 
56  if (schemeData.eof())
57  {
59  (
60  schemeData
61  ) << "Discretisation scheme not specified"
62  << endl << endl
63  << "Valid schemes are :" << endl
64  << MeshConstructorTablePtr_->sortedToc()
65  << exit(FatalIOError);
66  }
67 
68  const word schemeName(schemeData);
69 
70  typename MeshConstructorTable::iterator constructorIter =
71  MeshConstructorTablePtr_->find(schemeName);
72 
73  if (constructorIter == MeshConstructorTablePtr_->end())
74  {
76  (
77  schemeData
78  ) << "Unknown discretisation scheme "
79  << schemeName << nl << nl
80  << "Valid schemes are :" << endl
81  << MeshConstructorTablePtr_->sortedToc()
82  << exit(FatalIOError);
83  }
84 
85  return constructorIter()(mesh, schemeData);
86 }
87 
88 
89 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
90 
91 template<class Type>
93 {}
94 
95 
96 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
97 
98 template<class Type>
101 (
102  const VolField<Type>& vf,
103  const tmp<surfaceScalarField>& tdeltaCoeffs,
104  const word& snGradName
105 )
106 {
107  const fvMesh& mesh = vf.mesh();
108 
109  // construct SurfaceField<Type>
111  (
113  (
114  snGradName + "("+vf.name()+')',
115  mesh,
116  vf.dimensions()*tdeltaCoeffs().dimensions()
117  )
118  );
119  SurfaceField<Type>& ssf = tsf.ref();
120 
121  // set reference to difference factors array
122  const scalarField& deltaCoeffs = tdeltaCoeffs();
123 
124  // owner/neighbour addressing
125  const labelUList& owner = mesh.owner();
126  const labelUList& neighbour = mesh.neighbour();
127 
128  forAll(owner, facei)
129  {
130  ssf[facei] =
131  deltaCoeffs[facei]*(vf[neighbour[facei]] - vf[owner[facei]]);
132  }
133 
134  typename SurfaceField<Type>::
135  Boundary& ssfbf = ssf.boundaryFieldRef();
136 
138  {
139  const fvPatchField<Type>& pvf = vf.boundaryField()[patchi];
140 
141  if (pvf.coupled())
142  {
143  ssfbf[patchi] = pvf.snGrad(tdeltaCoeffs().boundaryField()[patchi]);
144  }
145  else
146  {
147  ssfbf[patchi] = pvf.snGrad();
148  }
149  }
150 
151  return tsf;
152 }
153 
154 
155 template<class Type>
158 (
159  const VolField<Type>& vf,
160  const word& sndGradName
161 )
162 {
163  return snGrad(vf, vf.mesh().nonOrthDeltaCoeffs(), sndGradName);
164 }
165 
166 
167 template<class Type>
170 (
171  const VolField<Type>& vf
172 ) const
173 {
175  (
176  snGrad(vf, deltaCoeffs(vf))
177  );
178 
179  if (corrected())
180  {
181  tsf.ref() += correction(vf);
182  }
183 
184  return tsf;
185 }
186 
187 
188 template<class Type>
191 (
192  const tmp<VolField<Type>>& tvf
193 ) const
194 {
196  (
197  snGrad(tvf())
198  );
199 
200  tsf.clear();
201  return tsf;
202 }
203 
204 
205 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
206 
207 } // End namespace fv
208 
209 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
210 
211 } // End namespace Foam
212 
213 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
const dimensionSet & dimensions() const
Return dimensions.
const Mesh & mesh() const
Return mesh.
Generic GeometricField class.
const Boundary & boundaryField() const
Return const-reference to the boundary field.
Boundary & boundaryFieldRef()
Return a reference to the boundary field.
const word & name() const
Return name.
Definition: IOobject.H:310
bool eof() const
Return true if end of input seen.
Definition: IOstream.H:336
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:60
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:101
const labelUList & owner() const
Internal face owner.
Definition: fvMesh.H:451
const labelUList & neighbour() const
Internal face neighbour.
Definition: fvMesh.H:457
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:87
virtual bool coupled() const
Return true if this patch field is coupled.
Definition: fvPatchField.H:327
virtual tmp< Field< Type > > snGrad() const
Return patch-normal gradient.
Definition: fvPatchField.C:164
virtual ~snGradScheme()
Destructor.
Definition: snGradScheme.C:92
static tmp< SurfaceField< Type > > sndGrad(const VolField< Type > &, const word &snGradName="sndGrad")
Return the sndGrad of the given cell field.
Definition: snGradScheme.C:158
static tmp< SurfaceField< Type > > snGrad(const VolField< Type > &, const tmp< surfaceScalarField > &, const word &snGradName="snGrad")
Return the snGrad of the given cell field with the given deltaCoeffs.
Definition: snGradScheme.C:101
static tmp< snGradScheme< Type > > New(const fvMesh &mesh, Istream &schemeData)
Return new tmp interpolation scheme.
Definition: snGradScheme.C:46
A class for managing temporary objects.
Definition: tmp.H:55
void clear() const
If object pointer points to valid object:
Definition: tmpI.H:237
T & ref() const
Return non-const reference or generate a fatal error.
Definition: tmpI.H:181
A class for handling words, derived from string.
Definition: word.H:62
#define FatalIOErrorInFunction(ios)
Report an error message using Foam::FatalIOError.
Definition: error.H:318
label patchi
#define InfoInFunction
Report an information message using Foam::Info.
tmp< SurfaceField< Type > > snGrad(const VolField< Type > &vf, const word &name)
Definition: fvcSnGrad.C:45
Namespace for OpenFOAM.
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
tmp< fvMatrix< Type > > correction(const fvMatrix< Type > &)
Return the correction form of the given matrix.
IOerror FatalIOError
static const char nl
Definition: Ostream.H:260
labelList fv(nPoints)
Foam::surfaceFields.