multivariateGaussConvectionScheme.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 
27 #include "gaussConvectionScheme.H"
28 #include "fvMatrices.H"
29 
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
34 
35 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 
37 namespace fv
38 {
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 template<class Type>
43 tmp<SurfaceField<Type>>
45 (
46  const surfaceScalarField& faceFlux,
47  const VolField<Type>& vf
48 ) const
49 {
51  (
52  this->mesh(),
53  faceFlux,
54  tinterpScheme_()(vf)
55  ).interpolate(faceFlux, vf);
56 }
57 
58 
59 template<class Type>
62 (
63  const surfaceScalarField& faceFlux,
64  const VolField<Type>& vf
65 ) const
66 {
68  (
69  this->mesh(),
70  faceFlux,
71  tinterpScheme_()(vf)
72  ).flux(faceFlux, vf);
73 }
74 
75 
76 template<class Type>
79 (
80  const surfaceScalarField& faceFlux,
81  const VolField<Type>& vf
82 ) const
83 {
85  (
86  this->mesh(),
87  faceFlux,
88  tinterpScheme_()(vf)
89  ).fvmDiv(faceFlux, vf);
90 }
91 
92 
93 template<class Type>
96 (
97  const surfaceScalarField& faceFlux,
98  const VolField<Type>& vf
99 ) const
100 {
102  (
103  this->mesh(),
104  faceFlux,
105  tinterpScheme_()(vf)
106  ).fvcDiv(faceFlux, vf);
107 }
108 
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 } // End namespace fv
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 } // End namespace Foam
117 
118 // ************************************************************************* //
Generic GeometricField class.
Basic second-order convection using face-gradients and Gauss' theorem.
tmp< fvMatrix< Type > > fvmDiv(const surfaceScalarField &, const VolField< Type > &) const
tmp< SurfaceField< Type > > interpolate(const surfaceScalarField &, const VolField< Type > &) const
tmp< VolField< Type > > fvcDiv(const surfaceScalarField &, const VolField< Type > &) const
tmp< SurfaceField< Type > > flux(const surfaceScalarField &, const VolField< Type > &) const
tmp< fvMatrix< Type > > fvmDiv(const surfaceScalarField &, const VolField< Type > &) const
tmp< SurfaceField< Type > > interpolate(const surfaceScalarField &, const VolField< Type > &) const
tmp< VolField< Type > > fvcDiv(const surfaceScalarField &, const VolField< Type > &) const
tmp< SurfaceField< Type > > flux(const surfaceScalarField &, const VolField< Type > &) const
A class for managing temporary objects.
Definition: tmp.H:55
A special matrix type and solver, designed for finite volume solutions of scalar equations.
Namespace for OpenFOAM.
labelList fv(nPoints)