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