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 gaussConvectionScheme_H
00036 #define gaussConvectionScheme_H
00037
00038 #include <finiteVolume/convectionScheme.H>
00039
00040
00041
00042 namespace Foam
00043 {
00044
00045
00046
00047 namespace fv
00048 {
00049
00050
00051
00052
00053
00054 template<class Type>
00055 class gaussConvectionScheme
00056 :
00057 public fv::convectionScheme<Type>
00058 {
00059
00060
00061 tmp<surfaceInterpolationScheme<Type> > tinterpScheme_;
00062
00063
00064
00065
00066
00067 gaussConvectionScheme(const gaussConvectionScheme&);
00068
00069
00070 void operator=(const gaussConvectionScheme&);
00071
00072
00073 public:
00074
00075
00076 TypeName("Gauss");
00077
00078
00079
00080
00081
00082 gaussConvectionScheme
00083 (
00084 const fvMesh& mesh,
00085 const surfaceScalarField& faceFlux,
00086 const tmp<surfaceInterpolationScheme<Type> >& scheme
00087 )
00088 :
00089 convectionScheme<Type>(mesh, faceFlux),
00090 tinterpScheme_(scheme)
00091 {}
00092
00093
00094 gaussConvectionScheme
00095 (
00096 const fvMesh& mesh,
00097 const surfaceScalarField& faceFlux,
00098 Istream& is
00099 )
00100 :
00101 convectionScheme<Type>(mesh, faceFlux),
00102 tinterpScheme_
00103 (
00104 surfaceInterpolationScheme<Type>::New(mesh, faceFlux, is)
00105 )
00106 {}
00107
00108
00109
00110
00111 tmp<GeometricField<Type, fvsPatchField, surfaceMesh> > interpolate
00112 (
00113 const surfaceScalarField&,
00114 const GeometricField<Type, fvPatchField, volMesh>&
00115 ) const;
00116
00117 tmp<GeometricField<Type, fvsPatchField, surfaceMesh> > flux
00118 (
00119 const surfaceScalarField&,
00120 const GeometricField<Type, fvPatchField, volMesh>&
00121 ) const;
00122
00123 tmp<fvMatrix<Type> > fvmDiv
00124 (
00125 const surfaceScalarField&,
00126 GeometricField<Type, fvPatchField, volMesh>&
00127 ) const;
00128
00129 tmp<GeometricField<Type, fvPatchField, volMesh> > fvcDiv
00130 (
00131 const surfaceScalarField&,
00132 const GeometricField<Type, fvPatchField, volMesh>&
00133 ) const;
00134 };
00135
00136
00137
00138
00139 }
00140
00141
00142
00143 }
00144
00145
00146
00147 #ifdef NoRepository
00148 # include <finiteVolume/gaussConvectionScheme.C>
00149 #endif
00150
00151
00152
00153 #endif
00154
00155