multivariateGaussConvectionScheme.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 | Copyright (C) 2011-2016 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::fv::multivariateGaussConvectionScheme
26 
27 Description
28  Basic second-order convection using face-gradients and Gauss' theorem.
29 
30 SourceFiles
31  multivariateGaussConvectionScheme.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef multivariateGaussConvectionScheme_H
36 #define multivariateGaussConvectionScheme_H
37 
38 #include "convectionScheme.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace fv
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class multivariateGaussConvectionScheme Declaration
52 \*---------------------------------------------------------------------------*/
53 
54 template<class Type>
56 :
57  public fv::convectionScheme<Type>
58 {
59  // Private data
60 
62 
63 
64 public:
65 
66  //- Runtime type information
67  TypeName("Gauss");
68 
69 
70  // Constructors
71 
72  //- Construct from flux and Istream
74  (
75  const fvMesh& mesh,
77  fieldTable& fields,
78  const surfaceScalarField& faceFlux,
79  Istream& is
80  )
81  :
82  convectionScheme<Type>(mesh, faceFlux),
83  tinterpScheme_
84  (
86  (
87  mesh, fields, faceFlux, is
88  )
89  )
90  {}
91 
92 
93  // Member Functions
94 
96  interpolationScheme() const
97  {
98  return tinterpScheme_;
99  }
100 
102  (
103  const surfaceScalarField&,
105  ) const;
106 
108  (
109  const surfaceScalarField&,
111  ) const;
112 
114  (
115  const surfaceScalarField&,
117  ) const;
118 
120  (
121  const surfaceScalarField&,
123  ) const;
124 };
125 
126 
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 
129 } // End namespace fv
130 
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 
133 } // End namespace Foam
134 
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 
137 #ifdef NoRepository
139 #endif
140 
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 
143 #endif
144 
145 // ************************************************************************* //
tmp< GeometricField< Type, fvPatchField, volMesh > > fvcDiv(const surfaceScalarField &, const GeometricField< Type, fvPatchField, volMesh > &) const
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
multivariateGaussConvectionScheme(const fvMesh &mesh, const typename multivariateSurfaceInterpolationScheme< Type >::fieldTable &fields, const surfaceScalarField &faceFlux, Istream &is)
Construct from flux and Istream.
Abstract base class for convection schemes.
multivariateSurfaceInterpolationScheme< scalar >::fieldTable fields
Definition: createFields.H:104
tmp< fvMatrix< Type > > fvmDiv(const surfaceScalarField &, const GeometricField< Type, fvPatchField, volMesh > &) const
labelList fv(nPoints)
Basic second-order convection using face-gradients and Gauss&#39; theorem.
TypeName("Gauss")
Runtime type information.
tmp< multivariateSurfaceInterpolationScheme< Type > > interpolationScheme() const
static tmp< convectionScheme< Type > > New(const fvMesh &mesh, const surfaceScalarField &faceFlux, Istream &schemeData)
Return a pointer to a new convectionScheme created on freestore.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
Abstract base class for multi-variate surface interpolation schemes.
const fvMesh & mesh() const
Return mesh reference.
tmp< GeometricField< Type, fvsPatchField, surfaceMesh > > flux(const surfaceScalarField &, const GeometricField< Type, fvPatchField, volMesh > &) const
A class for managing temporary objects.
Definition: PtrList.H:53
tmp< GeometricField< Type, fvsPatchField, surfaceMesh > > interpolate(const surfaceScalarField &, const GeometricField< Type, fvPatchField, volMesh > &) const
Namespace for OpenFOAM.