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