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 -------------------------------------------------------------------------------
11 License
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 
27 Description
28  Forwards and collection of common volume field types
29 
30 SourceFiles
31  volFields.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef Foam_volFieldsFwd_H
36 #define Foam_volFieldsFwd_H
37 
38 #include "fieldTypes.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 // Geometric internal field
46 template<class Type, class GeoMesh> class DimensionedField;
47 
48 // Geometric boundary field
49 template<class Type, template<class> class PatchField, class GeoMesh>
50 class GeometricBoundaryField;
51 
52 // Geometric field (internal + boundary)
53 template<class Type, template<class> class PatchField, class GeoMesh>
54 class GeometricField;
55 
56 
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
58 
59 // Forward Declarations
60 class volMesh;
61 template<class Type> class fvPatchField;
62 
63 
64 //- A volume field for a given type
65 template<class Type>
67 
68 //- A volume boundary field for a given Type
69 template<class Type>
71 
72 //- A volume internal field for a given Type
73 template<class Type>
75 
76 
77 // Typedefs
78 
85 
86 
87 /*---------------------------------------------------------------------------*\
88  Namespace fieldTypes Declaration
89 \*---------------------------------------------------------------------------*/
90 
91 namespace fieldTypes
92 {
93  //- Standard dimensioned field types (scalar, vector, tensor, etc)
94  extern const wordList internal;
95 
96  //- Standard volume field types (scalar, vector, tensor, etc)
97  extern const wordList volume;
98 
99 } // End namespace fieldTypes
100 
101 
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 
104 } // End namespace Foam
105 
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 
108 #endif
109 
110 // ************************************************************************* //
GeometricField< symmTensor, fvPatchField, volMesh > volSymmTensorField
Definition: volFieldsFwd.H:85
GeometricField< tensor, fvPatchField, volMesh > volTensorField
Definition: volFieldsFwd.H:86
Generic GeometricField class.
Definition: areaFieldsFwd.H:50
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:82
GeometricField< sphericalTensor, fvPatchField, volMesh > volSphericalTensorField
Definition: volFieldsFwd.H:84
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:81
const wordList volume
Standard volume field types (scalar, vector, tensor, etc)
Generic GeometricBoundaryField class.
Definition: areaFieldsFwd.H:46
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: areaFieldsFwd.H:42
Namespace for OpenFOAM.