volFieldsFwd.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 OpenFOAM Foundation
9 Copyright (C) 2018-2022 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Namespace
28 Foam::fieldTypes
29
30Description
31 Collection of common field types
32
33SourceFiles
34 volFields.C
35
36\*---------------------------------------------------------------------------*/
37
38#ifndef Foam_volFieldsFwd_H
39#define Foam_volFieldsFwd_H
40
41#include "fieldTypes.H"
42
43// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44
45namespace Foam
46{
47
48// Geometric internal field
49template<class Type, class GeoMesh> class DimensionedField;
50
51// Geometric boundary field
52template<class Type, template<class> class PatchField, class GeoMesh>
53class GeometricBoundaryField;
54
55// Geometric field (internal + boundary)
56template<class Type, template<class> class PatchField, class GeoMesh>
57class GeometricField;
58
59
60// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61
62// Forward Declarations
63class volMesh;
64template<class Type> class fvPatchField;
65
66
67//- A volume field for a given type
68template<class Type>
70
71//- A volume boundary field for a given Type
72template<class Type>
74
75//- A volume internal field for a given Type
76template<class Type>
78
79
80// Typedefs
81
88
89
90/*---------------------------------------------------------------------------*\
91 Namespace fieldTypes Declaration
92\*---------------------------------------------------------------------------*/
93
94namespace fieldTypes
95{
96 //- Standard dimensioned field types (scalar, vector, tensor, etc)
97 extern const wordList internal;
98
99 //- Standard volume field types (scalar, vector, tensor, etc)
100 extern const wordList volume;
101
102} // End namespace fieldTypes
103
104
105// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106
107} // End namespace Foam
108
109// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110
111#endif
112
113// ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Generic GeometricBoundaryField class.
Generic GeometricField class.
Header files for all the primitive types that Fields are instantiated for.
const wordList volume
Standard volume field types (scalar, vector, tensor, etc)
const wordList internal
Standard dimensioned field types (scalar, vector, tensor, etc)
Namespace for OpenFOAM.
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:83
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:82
GeometricField< tensor, fvPatchField, volMesh > volTensorField
Definition: volFieldsFwd.H:87
GeometricField< sphericalTensor, fvPatchField, volMesh > volSphericalTensorField
Definition: volFieldsFwd.H:85
GeometricField< symmTensor, fvPatchField, volMesh > volSymmTensorField
Definition: volFieldsFwd.H:86