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
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 #ifndef GAMGSolver_H
00054 #define GAMGSolver_H
00055
00056 #include <OpenFOAM/GAMGAgglomeration.H>
00057 #include <OpenFOAM/lduMatrix.H>
00058 #include <OpenFOAM/labelField.H>
00059 #include <OpenFOAM/primitiveFields.H>
00060 #include <OpenFOAM/LUscalarMatrix.H>
00061 #include <OpenFOAM/Switch.H>
00062
00063
00064
00065 namespace Foam
00066 {
00067
00068
00069
00070
00071
00072 class GAMGSolver
00073 :
00074 public lduMatrix::solver
00075 {
00076
00077
00078 Switch cacheAgglomeration_;
00079
00080
00081 label nPreSweeps_;
00082
00083
00084 label nPostSweeps_;
00085
00086
00087 label nFinestSweeps_;
00088
00089
00090
00091
00092 bool scaleCorrection_;
00093
00094
00095 bool directSolveCoarsest_;
00096
00097
00098 const GAMGAgglomeration& agglomeration_;
00099
00100
00101 PtrList<lduMatrix> matrixLevels_;
00102
00103
00104
00105 PtrList<lduInterfaceFieldPtrsList> interfaceLevels_;
00106
00107
00108 PtrList<FieldField<Field, scalar> > interfaceLevelsBouCoeffs_;
00109
00110
00111 PtrList<FieldField<Field, scalar> > interfaceLevelsIntCoeffs_;
00112
00113
00114 autoPtr<LUscalarMatrix> coarsestLUMatrixPtr_;
00115
00116
00117
00118
00119
00120 virtual void readControls();
00121
00122
00123 const lduInterfaceFieldPtrsList& interfaceLevel
00124 (
00125 const label i
00126 ) const;
00127
00128
00129 const lduMatrix& matrixLevel(const label i) const;
00130
00131
00132 const FieldField<Field, scalar>& interfaceBouCoeffsLevel
00133 (
00134 const label i
00135 ) const;
00136
00137
00138 const FieldField<Field, scalar>& interfaceIntCoeffsLevel
00139 (
00140 const label i
00141 ) const;
00142
00143
00144 void agglomerateMatrix(const label fineLevelIndex);
00145
00146
00147
00148
00149
00150
00151 scalar scalingFactor
00152 (
00153 scalarField& field,
00154 const scalarField& source,
00155 const scalarField& Acf,
00156 const scalarField& D
00157 ) const;
00158
00159
00160 scalar scalingFactor
00161 (
00162 scalarField& Acf,
00163 const lduMatrix& A,
00164 scalarField& field,
00165 const FieldField<Field, scalar>& interfaceLevelBouCoeffs,
00166 const lduInterfaceFieldPtrsList& interfaceLevel,
00167 const scalarField& source,
00168 const direction cmpt
00169 ) const;
00170
00171
00172
00173 void initVcycle
00174 (
00175 PtrList<scalarField>& coarseCorrFields,
00176 PtrList<scalarField>& coarseSources,
00177 PtrList<lduMatrix::smoother>& smoothers
00178 ) const;
00179
00180
00181
00182 void Vcycle
00183 (
00184 const PtrList<lduMatrix::smoother>& smoothers,
00185 scalarField& psi,
00186 const scalarField& source,
00187 scalarField& Apsi,
00188 scalarField& finestCorrection,
00189 scalarField& finestResidual,
00190 PtrList<scalarField>& coarseCorrFields,
00191 PtrList<scalarField>& coarseSources,
00192 const direction cmpt=0
00193 ) const;
00194
00195
00196
00197 void solveCoarsestLevel
00198 (
00199 scalarField& coarsestCorrField,
00200 const scalarField& coarsestSource
00201 ) const;
00202
00203
00204 public:
00205
00206 friend class GAMGPreconditioner;
00207
00208
00209 TypeName("GAMG");
00210
00211
00212
00213
00214
00215 GAMGSolver
00216 (
00217 const word& fieldName,
00218 const lduMatrix& matrix,
00219 const FieldField<Field, scalar>& interfaceBouCoeffs,
00220 const FieldField<Field, scalar>& interfaceIntCoeffs,
00221 const lduInterfaceFieldPtrsList& interfaces,
00222 const dictionary& solverControls
00223 );
00224
00225
00226
00227
00228 virtual ~GAMGSolver();
00229
00230
00231
00232
00233
00234 virtual lduMatrix::solverPerformance solve
00235 (
00236 scalarField& psi,
00237 const scalarField& source,
00238 const direction cmpt=0
00239 ) const;
00240 };
00241
00242
00243
00244
00245 }
00246
00247
00248
00249 #endif
00250
00251