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 GAMGInterface_H
00037 #define GAMGInterface_H
00038
00039 #include <OpenFOAM/lduInterface.H>
00040 #include <OpenFOAM/autoPtr.H>
00041
00042
00043
00044 namespace Foam
00045 {
00046
00047
00048
00049
00050
00051 class GAMGInterface
00052 :
00053 public lduInterface
00054 {
00055
00056 protected:
00057
00058
00059
00060
00061 labelField faceCells_;
00062
00063
00064 labelField faceRestrictAddressing_;
00065
00066
00067 private:
00068
00069
00070
00071
00072 GAMGInterface(const GAMGInterface&);
00073
00074
00075 void operator=(const GAMGInterface&);
00076
00077
00078 public:
00079
00080
00081 TypeName("GAMGInterface");
00082
00083
00084
00085
00086 declareRunTimeSelectionTable
00087 (
00088 autoPtr,
00089 GAMGInterface,
00090 lduInterface,
00091 (
00092 const lduInterface& fineInterface,
00093 const labelField& localRestrictAddressing,
00094 const labelField& neighbourRestrictAddressing
00095 ),
00096 (
00097 fineInterface,
00098 localRestrictAddressing,
00099 neighbourRestrictAddressing
00100 )
00101 );
00102
00103
00104
00105
00106
00107
00108 static autoPtr<GAMGInterface> New
00109 (
00110 const lduInterface& fineInterface,
00111 const labelField& localRestrictAddressing,
00112 const labelField& neighbourRestrictAddressing
00113 );
00114
00115
00116
00117
00118
00119
00120 GAMGInterface
00121 (
00122 const lduInterface&,
00123 const labelField&,
00124 const labelField&
00125 )
00126 {}
00127
00128
00129
00130
00131
00132
00133
00134 virtual label size() const
00135 {
00136 return faceCells_.size();
00137 }
00138
00139
00140 virtual const unallocLabelList& faceCells() const
00141 {
00142 return faceCells_;
00143 }
00144
00145
00146 virtual const labelList& faceRestrictAddressing() const
00147 {
00148 return faceRestrictAddressing_;
00149 }
00150
00151
00152 virtual labelList& faceRestrictAddressing()
00153 {
00154 return faceRestrictAddressing_;
00155 }
00156
00157
00158 template<class Type>
00159 tmp<Field<Type> > interfaceInternalField
00160 (
00161 const UList<Type>& internalData
00162 ) const;
00163
00164
00165
00166 virtual tmp<labelField> interfaceInternalField
00167 (
00168 const unallocLabelList& internalData
00169 ) const;
00170
00171
00172
00173
00174
00175
00176
00177 void combine(const GAMGInterface&);
00178
00179
00180 virtual tmp<scalarField> agglomerateCoeffs
00181 (
00182 const scalarField& fineCoeffs
00183 ) const;
00184 };
00185
00186
00187
00188
00189 }
00190
00191
00192
00193 #ifdef NoRepository
00194 # include <OpenFOAM/GAMGInterfaceTemplates.C>
00195 #endif
00196
00197
00198
00199 #endif
00200
00201