fvcFlux.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-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26InNamespace
27 Foam::fvc
28
29Description
30 Calculate the face-flux of the given field.
31
32SourceFiles
33 fvcFlux.C
34
35\*---------------------------------------------------------------------------*/
36
37
38#ifndef fvcFlux_H
39#define fvcFlux_H
40
41#include "volFieldsFwd.H"
42#include "surfaceFieldsFwd.H"
43
44// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45
46namespace Foam
47{
48
49/*---------------------------------------------------------------------------*\
50 Namespace fvc functions Declaration
51\*---------------------------------------------------------------------------*/
52
53namespace fvc
54{
55 //- Return the face-flux field obtained from the given volVectorField
56 tmp<surfaceScalarField> flux(const volVectorField& vvf);
57
58 //- Return the face-flux field obtained from the given tmp volVectorField
59 tmp<surfaceScalarField> flux(const tmp<volVectorField>& tvvf);
60
61 template<class Type>
62 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
63 (
64 const surfaceScalarField&,
65 const tmp<GeometricField<Type, fvPatchField, volMesh>>&
66 );
67
68 template<class Type>
69 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
70 (
71 const surfaceScalarField&,
72 const GeometricField<Type, fvPatchField, volMesh>&,
73 const word& name
74 );
75
76 template<class Type>
77 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
78 (
79 const tmp<surfaceScalarField>&,
80 const GeometricField<Type, fvPatchField, volMesh>&,
81 const word& name
82 );
83
84 template<class Type>
85 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
86 (
87 const surfaceScalarField&,
88 const tmp<GeometricField<Type, fvPatchField, volMesh>>&,
89 const word& name
90 );
91
92 template<class Type>
93 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
94 (
95 const tmp<surfaceScalarField>&,
96 const tmp<GeometricField<Type, fvPatchField, volMesh>>&,
97 const word& name
98 );
99
100
101 template<class Type>
102 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
103 (
104 const surfaceScalarField&,
105 const GeometricField<Type, fvPatchField, volMesh>&
106 );
107
108 template<class Type>
109 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
110 (
111 const tmp<surfaceScalarField>&,
112 const GeometricField<Type, fvPatchField, volMesh>&
113 );
114
115 template<class Type>
116 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
117 (
118 const surfaceScalarField&,
119 const tmp<GeometricField<Type, fvPatchField, volMesh>>&
120 );
121
122 template<class Type>
123 tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> flux
124 (
125 const tmp<surfaceScalarField>&,
126 const tmp<GeometricField<Type, fvPatchField, volMesh>>&
127 );
128}
129
130
131// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132
133} // End namespace Foam
134
135// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136
137#ifdef NoRepository
138 #include "fvcFluxTemplates.C"
139#endif
140
141// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142
143#endif
144
145// ************************************************************************* //
tmp< surfaceScalarField > flux(const volVectorField &vvf)
Return the face-flux field obtained from the given volVectorField.
Definition: fvcFlux.C:34
Namespace for OpenFOAM.
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:83
GeometricField< scalar, fvsPatchField, surfaceMesh > surfaceScalarField
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for INVALID.
Definition: exprTraits.C:59