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 coupledFvPatchField_H
00036 #define coupledFvPatchField_H
00037
00038 #include <OpenFOAM/lduInterfaceField.H>
00039 #include <finiteVolume/fvPatchField.H>
00040 #include <finiteVolume/coupledFvPatch.H>
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049
00050
00051 template<class Type>
00052 class coupledFvPatchField
00053 :
00054 public lduInterfaceField,
00055 public fvPatchField<Type>
00056 {
00057
00058 public:
00059
00060
00061 TypeName(coupledFvPatch::typeName_());
00062
00063
00064
00065
00066
00067 coupledFvPatchField
00068 (
00069 const fvPatch&,
00070 const DimensionedField<Type, volMesh>&
00071 );
00072
00073
00074 coupledFvPatchField
00075 (
00076 const fvPatch&,
00077 const DimensionedField<Type, volMesh>&,
00078 const Field<Type>&
00079 );
00080
00081
00082 coupledFvPatchField
00083 (
00084 const fvPatch&,
00085 const DimensionedField<Type, volMesh>&,
00086 const dictionary&
00087 );
00088
00089
00090 coupledFvPatchField
00091 (
00092 const coupledFvPatchField<Type>&,
00093 const fvPatch&,
00094 const DimensionedField<Type, volMesh>&,
00095 const fvPatchFieldMapper&
00096 );
00097
00098
00099 coupledFvPatchField
00100 (
00101 const coupledFvPatchField<Type>&
00102 );
00103
00104
00105 virtual tmp<fvPatchField<Type> > clone() const = 0;
00106
00107
00108 coupledFvPatchField
00109 (
00110 const coupledFvPatchField<Type>&,
00111 const DimensionedField<Type, volMesh>&
00112 );
00113
00114
00115 virtual tmp<fvPatchField<Type> > clone
00116 (
00117 const DimensionedField<Type, volMesh>&
00118 ) const = 0;
00119
00120
00121
00122
00123
00124
00125
00126
00127 virtual bool coupled() const
00128 {
00129 return true;
00130 }
00131
00132
00133 virtual tmp<Field<Type> > patchNeighbourField() const = 0;
00134
00135
00136
00137
00138
00139 virtual tmp<Field<Type> > snGrad() const;
00140
00141
00142 virtual void initEvaluate
00143 (
00144 const Pstream::commsTypes commsType
00145 );
00146
00147
00148 virtual void evaluate
00149 (
00150 const Pstream::commsTypes commsType
00151 );
00152
00153
00154
00155 virtual tmp<Field<Type> > valueInternalCoeffs
00156 (
00157 const tmp<scalarField>&
00158 ) const;
00159
00160
00161
00162 virtual tmp<Field<Type> > valueBoundaryCoeffs
00163 (
00164 const tmp<scalarField>&
00165 ) const;
00166
00167
00168
00169 virtual tmp<Field<Type> > gradientInternalCoeffs() const;
00170
00171
00172
00173 virtual tmp<Field<Type> > gradientBoundaryCoeffs() const;
00174
00175
00176
00177
00178
00179 virtual void updateInterfaceMatrix
00180 (
00181 const scalarField& psiInternal,
00182 scalarField& result,
00183 const lduMatrix&,
00184 const scalarField& coeffs,
00185 const direction,
00186 const Pstream::commsTypes commsType
00187 ) const = 0;
00188
00189
00190 virtual void write(Ostream&) const;
00191 };
00192
00193
00194
00195
00196 }
00197
00198
00199
00200 #ifdef NoRepository
00201 # include <finiteVolume/coupledFvPatchField.C>
00202 #endif
00203
00204
00205
00206 #endif
00207
00208