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 quadraticFitSnGrad_H
00037 #define quadraticFitSnGrad_H
00038
00039 #include <finiteVolume/snGradScheme.H>
00040 #include "quadraticFitSnGradData.H"
00041 #include <finiteVolume/extendedCellToFaceStencil.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 quadraticFitSnGrad
00059 :
00060 public snGradScheme<Type>
00061 {
00062
00063
00064 const scalar centralWeight_;
00065
00066
00067
00068
00069 void operator=(const quadraticFitSnGrad&);
00070
00071
00072 public:
00073
00074
00075 TypeName("quadraticFit");
00076
00077
00078
00079
00080
00081 quadraticFitSnGrad
00082 (
00083 const fvMesh& mesh,
00084 const scalar centralWeight
00085 )
00086 :
00087 snGradScheme<Type>(mesh),
00088 centralWeight_(centralWeight)
00089 {}
00090
00091
00092
00093 quadraticFitSnGrad(const fvMesh& mesh, Istream& is)
00094 :
00095 snGradScheme<Type>(mesh),
00096 centralWeight_(readScalar(is))
00097 {}
00098
00099
00100
00101
00102 virtual ~quadraticFitSnGrad() {}
00103
00104
00105
00106
00107
00108 virtual tmp<surfaceScalarField> deltaCoeffs
00109 (
00110 const GeometricField<Type, fvPatchField, volMesh>&
00111 ) const
00112 {
00113 return this->mesh().deltaCoeffs();
00114 }
00115
00116
00117 virtual bool corrected() const
00118 {
00119 return true;
00120 }
00121
00122
00123
00124 virtual tmp<GeometricField<Type, fvsPatchField, surfaceMesh> >
00125 correction(const GeometricField<Type, fvPatchField, volMesh>& vf) const
00126 {
00127 const fvMesh& mesh = this->mesh();
00128
00129 const quadraticFitSnGradData& qfd = quadraticFitSnGradData::New
00130 (
00131 mesh,
00132 centralWeight_
00133 );
00134
00135 const extendedCellToFaceStencil& stencil = qfd.stencil();
00136 const List<scalarList>& f = qfd.fit();
00137
00138 tmp<GeometricField<Type, fvsPatchField, surfaceMesh> > sft
00139 = stencil.weightedSum(vf, f);
00140
00141 sft().dimensions() /= dimLength;
00142
00143 return sft;
00144 }
00145 };
00146
00147
00148
00149
00150 }
00151
00152
00153
00154 }
00155
00156
00157
00158 #endif
00159
00160