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
00030
00031
00032 namespace Foam
00033 {
00034
00035
00036
00037
00038 template<class Type, template<class> class PatchField, class GeoMesh>
00039 inline const typename GeometricField<Type, PatchField, GeoMesh>::Mesh&
00040 GeometricField<Type, PatchField, GeoMesh>::mesh() const
00041 {
00042 return mesh_;
00043 }
00044
00045
00046
00047 template<class Type, template<class> class PatchField, class GeoMesh>
00048 inline dimensionSet&
00049 GeometricField<Type, PatchField, GeoMesh>::dimensions()
00050 {
00051 return dimensions_;
00052 }
00053
00054
00055 template<class Type, template<class> class PatchField, class GeoMesh>
00056 inline const dimensionSet&
00057 GeometricField<Type, PatchField, GeoMesh>::dimensions() const
00058 {
00059 return dimensions_;
00060 }
00061
00062
00063 template<class Type, template<class> class PatchField, class GeoMesh>
00064 inline const Field<Type>&
00065 GeometricField<Type, PatchField, GeoMesh>::internalField() const
00066 {
00067 return *this;
00068 }
00069
00070
00071 template<class Type, template<class> class PatchField, class GeoMesh>
00072 inline const typename GeometricField<Type, PatchField, GeoMesh>::
00073 GeometricBoundaryField&
00074 GeometricField<Type, PatchField, GeoMesh>::boundaryField() const
00075 {
00076 return boundaryField_;
00077 }
00078
00079
00080
00081 template<class Type, template<class> class PatchField, class GeoMesh>
00082 inline label GeometricField<Type, PatchField, GeoMesh>::timeIndex() const
00083 {
00084 return timeIndex_;
00085 }
00086
00087
00088
00089
00090 }
00091
00092