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 slicedSurfaceFieldsFwd_H
00030 #define slicedSurfaceFieldsFwd_H
00031
00032 #include <OpenFOAM/fieldTypes.H>
00033
00034
00035
00036 namespace Foam
00037 {
00038
00039
00040
00041 class surfaceMesh;
00042
00043 template<class Type>
00044 class fvsPatchField;
00045
00046 template<class Type>
00047 class slicedFvsPatchField;
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, fvsPatchField, slicedFvsPatchField, surfaceMesh>
00060 slicedSurfaceScalarField;
00061
00062 typedef
00063 SlicedGeometricField<vector, fvsPatchField, slicedFvsPatchField, surfaceMesh>
00064 slicedSurfaceVectorField;
00065
00066 typedef
00067 SlicedGeometricField<sphericalTensor, fvsPatchField, slicedFvsPatchField, surfaceMesh>
00068 slicedSurfaceSphericalTensorField;
00069
00070 typedef
00071 SlicedGeometricField<symmTensor, fvsPatchField, slicedFvsPatchField, surfaceMesh>
00072 slicedSurfaceSymmTensorField;
00073
00074 typedef
00075 SlicedGeometricField<tensor, fvsPatchField, slicedFvsPatchField, surfaceMesh>
00076 slicedSurfaceTensorField;
00077
00078
00079
00080 }
00081
00082
00083
00084 #endif
00085
00086