pointFieldsFwd.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 InClass
28  Foam::pointFields
29 
30 Description
31  Forwards and collection of common point field types
32 
33 SourceFiles
34  pointFields.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef Foam_pointFieldsFwd_H
39 #define Foam_pointFieldsFwd_H
40 
41 #include "fieldTypes.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 // Geometric internal field
49 template<class Type, class GeoMesh> class DimensionedField;
50 
51 // Geometric boundary field
52 template<class Type, template<class> class PatchField, class GeoMesh>
53 class GeometricBoundaryField;
54 
55 // Geometric field (internal + boundary)
56 template<class Type, template<class> class PatchField, class GeoMesh>
57 class GeometricField;
58 
59 
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62 // Forward Declarations
63 class pointMesh;
64 template<class Type> class pointPatchField;
65 
66 
67 //- A point field for a given type
68 template<class Type>
70 
71 //- A point boundary field for a given Type
72 template<class Type>
73 using PointBoundaryField =
75 
76 //- A point internal field for a given type
77 template<class Type>
79 
80 
81 // Typedefs
82 
90 
91 
92 /*---------------------------------------------------------------------------*\
93  Namespace fieldTypes Declaration
94 \*---------------------------------------------------------------------------*/
95 
96 namespace fieldTypes
97 {
98  //- Standard point field types (scalar, vector, tensor, etc)
99  extern const wordList point;
100 
101 } // End namespace fieldTypes
102 
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 } // End namespace Foam
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 #endif
111 
112 // ************************************************************************* //
GeometricField< vector, pointPatchField, pointMesh > pointVectorField
GeometricField< tensor, pointPatchField, pointMesh > pointTensorField
GeometricField< scalar, pointPatchField, pointMesh > pointScalarField
const wordList point
Standard point field types (scalar, vector, tensor, etc)
GeometricField< sphericalTensor, pointPatchField, pointMesh > pointSphericalTensorField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: areaFieldsFwd.H:42
GeometricField< symmTensor, pointPatchField, pointMesh > pointSymmTensorField
Namespace for OpenFOAM.