Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef slicedVolFieldsFwd_H
00030 #define slicedVolFieldsFwd_H
00031
00032 #include <OpenFOAM/fieldTypes.H>
00033
00034
00035
00036 namespace Foam
00037 {
00038
00039
00040
00041 class volMesh;
00042
00043 template<class Type>
00044 class fvPatchField;
00045
00046 template<class Type>
00047 class slicedFvPatchField;
00048
00049 template
00050 <
00051 class Type,
00052 template<class> class PatchField,
00053 template<class> class SlicedPatchField,
00054 class GeoMesh
00055 >
00056 class SlicedGeometricField;
00057
00058 typedef
00059 SlicedGeometricField<scalar, fvPatchField, slicedFvPatchField, volMesh>
00060 slicedVolScalarField;
00061
00062 typedef
00063 SlicedGeometricField<vector, fvPatchField, slicedFvPatchField, volMesh>
00064 slicedVolVectorField;
00065
00066 typedef
00067 SlicedGeometricField<sphericalTensor, fvPatchField, slicedFvPatchField, volMesh>
00068 slicedVolSphericalTensorField;
00069
00070 typedef
00071 SlicedGeometricField<symmTensor, fvPatchField, slicedFvPatchField, volMesh>
00072 slicedVolSymmTensorField;
00073
00074 typedef
00075 SlicedGeometricField<tensor, fvPatchField, slicedFvPatchField, volMesh>
00076 slicedVolTensorField;
00077
00078
00079
00080 }
00081
00082
00083
00084 #endif
00085
00086