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
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 #ifndef LimitedScheme_H
00047 #define LimitedScheme_H
00048
00049 #include <finiteVolume/limitedSurfaceInterpolationScheme.H>
00050 #include "LimitFuncs.H"
00051 #include "NVDTVD.H"
00052 #include "NVDVTVDV.H"
00053
00054
00055
00056 namespace Foam
00057 {
00058
00059
00060
00061
00062
00063 template<class Type, class Limiter, template<class> class LimitFunc>
00064 class LimitedScheme
00065 :
00066 public limitedSurfaceInterpolationScheme<Type>,
00067 public Limiter
00068 {
00069
00070
00071
00072 LimitedScheme(const LimitedScheme&);
00073
00074
00075 void operator=(const LimitedScheme&);
00076
00077
00078 public:
00079
00080
00081 TypeName("LimitedScheme");
00082
00083 typedef Limiter LimiterType;
00084
00085
00086
00087
00088 LimitedScheme
00089 (
00090 const fvMesh& mesh,
00091 const surfaceScalarField& faceFlux,
00092 const Limiter& weight
00093 )
00094 :
00095 limitedSurfaceInterpolationScheme<Type>(mesh, faceFlux),
00096 Limiter(weight)
00097 {}
00098
00099
00100
00101
00102 LimitedScheme
00103 (
00104 const fvMesh& mesh,
00105 Istream& is
00106 )
00107 :
00108 limitedSurfaceInterpolationScheme<Type>(mesh, is),
00109 Limiter(is)
00110 {}
00111
00112
00113 LimitedScheme
00114 (
00115 const fvMesh& mesh,
00116 const surfaceScalarField& faceFlux,
00117 Istream& is
00118 )
00119 :
00120 limitedSurfaceInterpolationScheme<Type>(mesh, faceFlux),
00121 Limiter(is)
00122 {}
00123
00124
00125
00126
00127
00128 virtual tmp<surfaceScalarField> limiter
00129 (
00130 const GeometricField<Type, fvPatchField, volMesh>&
00131 ) const;
00132 };
00133
00134
00135
00136
00137 }
00138
00139
00140
00141
00142
00143 #define makeLimitedSurfaceInterpolationTypeScheme(SS, LIMITER, NVDTVD, LIMFUNC, TYPE) \
00144 \
00145 typedef LimitedScheme<TYPE, LIMITER<NVDTVD>, limitFuncs::LIMFUNC> \
00146 LimitedScheme##TYPE##LIMITER##NVDTVD##LIMFUNC##_; \
00147 defineTemplateTypeNameAndDebugWithName \
00148 (LimitedScheme##TYPE##LIMITER##NVDTVD##LIMFUNC##_, #SS, 0); \
00149 \
00150 surfaceInterpolationScheme<TYPE>::addMeshConstructorToTable \
00151 <LimitedScheme<TYPE, LIMITER<NVDTVD>, limitFuncs::LIMFUNC> > \
00152 add##SS##LIMFUNC##TYPE##MeshConstructorToTable_; \
00153 \
00154 surfaceInterpolationScheme<TYPE>::addMeshFluxConstructorToTable \
00155 <LimitedScheme<TYPE, LIMITER<NVDTVD>, limitFuncs::LIMFUNC> > \
00156 add##SS##LIMFUNC##TYPE##MeshFluxConstructorToTable_; \
00157 \
00158 limitedSurfaceInterpolationScheme<TYPE>::addMeshConstructorToTable \
00159 <LimitedScheme<TYPE, LIMITER<NVDTVD>, limitFuncs::LIMFUNC> > \
00160 add##SS##LIMFUNC##TYPE##MeshConstructorToLimitedTable_; \
00161 \
00162 limitedSurfaceInterpolationScheme<TYPE>::addMeshFluxConstructorToTable \
00163 <LimitedScheme<TYPE, LIMITER<NVDTVD>, limitFuncs::LIMFUNC> > \
00164 add##SS##LIMFUNC##TYPE##MeshFluxConstructorToLimitedTable_;
00165
00166
00167 #define makeLimitedSurfaceInterpolationScheme(SS, LIMITER) \
00168 \
00169 makeLimitedSurfaceInterpolationTypeScheme(SS,LIMITER,NVDTVD,magSqr,scalar) \
00170 makeLimitedSurfaceInterpolationTypeScheme(SS,LIMITER,NVDTVD,magSqr,vector) \
00171 makeLimitedSurfaceInterpolationTypeScheme(SS,LIMITER,NVDTVD,magSqr,sphericalTensor) \
00172 makeLimitedSurfaceInterpolationTypeScheme(SS,LIMITER,NVDTVD,magSqr,symmTensor)\
00173 makeLimitedSurfaceInterpolationTypeScheme(SS,LIMITER,NVDTVD,magSqr,tensor)
00174
00175
00176 #define makeLimitedVSurfaceInterpolationScheme(SS, LIMITER) \
00177 makeLimitedSurfaceInterpolationTypeScheme(SS,LIMITER,NVDVTVDV,null,vector)
00178
00179
00180 #define makeLLimitedSurfaceInterpolationTypeScheme(SS, LLIMITER, LIMITER, NVDTVD, LIMFUNC, TYPE) \
00181 \
00182 typedef LimitedScheme<TYPE, LLIMITER<LIMITER<NVDTVD> >, limitFuncs::LIMFUNC> \
00183 LimitedScheme##TYPE##LLIMITER##LIMITER##NVDTVD##LIMFUNC##_; \
00184 defineTemplateTypeNameAndDebugWithName \
00185 (LimitedScheme##TYPE##LLIMITER##LIMITER##NVDTVD##LIMFUNC##_, #SS, 0); \
00186 \
00187 surfaceInterpolationScheme<TYPE>::addMeshConstructorToTable \
00188 <LimitedScheme<TYPE, LLIMITER<LIMITER<NVDTVD> >, limitFuncs::LIMFUNC> > \
00189 add##SS##LIMFUNC##TYPE##MeshConstructorToTable_; \
00190 \
00191 surfaceInterpolationScheme<TYPE>::addMeshFluxConstructorToTable \
00192 <LimitedScheme<TYPE, LLIMITER<LIMITER<NVDTVD> >, limitFuncs::LIMFUNC> > \
00193 add##SS##LIMFUNC##TYPE##MeshFluxConstructorToTable_; \
00194 \
00195 limitedSurfaceInterpolationScheme<TYPE>::addMeshConstructorToTable \
00196 <LimitedScheme<TYPE, LLIMITER<LIMITER<NVDTVD> >, limitFuncs::LIMFUNC> > \
00197 add##SS##LIMFUNC##TYPE##MeshConstructorToLimitedTable_; \
00198 \
00199 limitedSurfaceInterpolationScheme<TYPE>::addMeshFluxConstructorToTable \
00200 <LimitedScheme<TYPE, LLIMITER<LIMITER<NVDTVD> >, limitFuncs::LIMFUNC> > \
00201 add##SS##LIMFUNC##TYPE##MeshFluxConstructorToLimitedTable_;
00202
00203
00204
00205
00206 #ifdef NoRepository
00207 # include "LimitedScheme.C"
00208 #endif
00209
00210
00211
00212 #endif
00213
00214