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