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
00036 #ifndef gaussGrad_H
00037 #define gaussGrad_H
00038
00039 #include <finiteVolume/gradScheme.H>
00040 #include <finiteVolume/surfaceInterpolationScheme.H>
00041 #include <finiteVolume/linear.H>
00042
00043
00044
00045 namespace Foam
00046 {
00047
00048
00049
00050 namespace fv
00051 {
00052
00053
00054
00055
00056
00057 template<class Type>
00058 class gaussGrad
00059 :
00060 public fv::gradScheme<Type>
00061 {
00062
00063
00064 tmp<surfaceInterpolationScheme<Type> > tinterpScheme_;
00065
00066
00067
00068
00069
00070 gaussGrad(const gaussGrad&);
00071
00072
00073 void operator=(const gaussGrad&);
00074
00075
00076 public:
00077
00078
00079 TypeName("Gauss");
00080
00081
00082
00083
00084
00085 gaussGrad(const fvMesh& mesh)
00086 :
00087 gradScheme<Type>(mesh),
00088 tinterpScheme_(new linear<Type>(mesh))
00089 {}
00090
00091
00092 gaussGrad(const fvMesh& mesh, Istream& is)
00093 :
00094 gradScheme<Type>(mesh),
00095 tinterpScheme_(NULL)
00096 {
00097 if (is.eof())
00098 {
00099 tinterpScheme_ =
00100 tmp<surfaceInterpolationScheme<Type> >
00101 (
00102 new linear<Type>(mesh)
00103 );
00104 }
00105 else
00106 {
00107 tinterpScheme_ =
00108 tmp<surfaceInterpolationScheme<Type> >
00109 (
00110 surfaceInterpolationScheme<Type>::New(mesh, is)
00111 );
00112 }
00113 }
00114
00115
00116
00117
00118
00119
00120 static
00121 tmp
00122 <
00123 GeometricField
00124 <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>
00125 > grad
00126 (
00127 const GeometricField<Type, fvsPatchField, surfaceMesh>&
00128 );
00129
00130
00131
00132
00133 tmp
00134 <
00135 GeometricField
00136 <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>
00137 > grad
00138 (
00139 const GeometricField<Type, fvPatchField, volMesh>&
00140 ) const;
00141
00142
00143
00144
00145 static void correctBoundaryConditions
00146 (
00147 const GeometricField<Type, fvPatchField, volMesh>&,
00148 GeometricField
00149 <typename outerProduct<vector, Type>::type, fvPatchField, volMesh>&
00150 );
00151 };
00152
00153
00154
00155
00156 }
00157
00158
00159
00160 }
00161
00162
00163
00164 #ifdef NoRepository
00165 # include <finiteVolume/gaussGrad.C>
00166 #endif
00167
00168
00169
00170 #endif
00171
00172