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
00033
00034
00035
00036 #ifndef linear_H
00037 #define linear_H
00038
00039 #include "surfaceInterpolationScheme.H"
00040 #include "volFields.H"
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049
00050
00051 template<class Type>
00052 class linear
00053 :
00054 public surfaceInterpolationScheme<Type>
00055 {
00056
00057
00058
00059 void operator=(const linear&);
00060
00061
00062 public:
00063
00064
00065 TypeName("linear");
00066
00067
00068
00069
00070
00071 linear(const fvMesh& mesh)
00072 :
00073 surfaceInterpolationScheme<Type>(mesh)
00074 {}
00075
00076
00077 linear(const fvMesh& mesh, Istream&)
00078 :
00079 surfaceInterpolationScheme<Type>(mesh)
00080 {}
00081
00082
00083 linear
00084 (
00085 const fvMesh& mesh,
00086 const surfaceScalarField&,
00087 Istream&
00088 )
00089 :
00090 surfaceInterpolationScheme<Type>(mesh)
00091 {}
00092
00093
00094
00095
00096
00097 tmp<surfaceScalarField> weights
00098 (
00099 const GeometricField<Type, fvPatchField, volMesh>&
00100 ) const
00101 {
00102 return this->mesh().surfaceInterpolation::weights();
00103 }
00104 };
00105
00106
00107 template<class Type>
00108 tmp<GeometricField<Type, fvPatchField, surfaceMesh> >
00109 linearInterpolate(const GeometricField<Type, fvPatchField, volMesh>& vf)
00110 {
00111 return surfaceInterpolationScheme<Type>::interpolate
00112 (
00113 vf,
00114 vf.mesh().surfaceInterpolation::weights()
00115 );
00116 }
00117
00118
00119 template<class Type>
00120 tmp<GeometricField<Type, fvPatchField, surfaceMesh> >
00121 linearInterpolate(const tmp<GeometricField<Type, fvPatchField, volMesh> >& tvf)
00122 {
00123 tmp<GeometricField<Type, fvPatchField, surfaceMesh> > tinterp =
00124 linearInterpolate(tvf());
00125 tvf.clear();
00126 return tinterp;
00127 }
00128
00129
00130
00131
00132 }
00133
00134
00135
00136 #endif
00137
00138