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 #ifndef _AMRLevelMG_H_
00030 #define _AMRLevelMG_H_
00031
00032 #include <stdlib.h>
00033 #include <iostream>
00034 #include <assert.h>
00035 #include <math.h>
00036 #include "REAL.H"
00037 #include "IntVect.H"
00038 #include "Box.H"
00039 #include "FArrayBox.H"
00040 #include "DisjointBoxLayout.H"
00041 #include "LevelData.H"
00042 #include "LevelFluxRegister.H"
00043 #include "BaseFab.H"
00044 #include "LevelMG.H"
00045 #include "MGInterp.H"
00046 #include "Copier.H"
00047
00048
00049 class AMRSolver;
00050
00052
00058 class AMRLevelMG
00059 {
00060 public:
00061 friend class AMRSolver;
00062
00064 AMRLevelMG();
00065
00067 ~AMRLevelMG();
00068
00070
00073 AMRLevelMG(const AMRSolver* const a_parent,
00074 int a_level,
00075 const LevelOp* const a_opin,
00076 int ncomp=1);
00077
00079
00084 void define(const AMRSolver* const a_parent,
00085 int a_level,
00086 const LevelOp* const a_opin,
00087 int ncomp=1);
00088
00090
00093 void setnumSmoothUp(int a_numSmoothUp);
00094
00096
00099 void setnumSmoothDown(int a_numSmoothDown);
00100
00102
00108 void applyAMROperator(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00109 LevelData<FArrayBox> & Lofphi);
00110
00111
00113
00118 void applyAMROperatorHphys(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00119 LevelData<FArrayBox>& LofPhi);
00120
00122
00126 void computeAMRResidual(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00127 const Vector<LevelData<FArrayBox> *>& a_rhsLevel);
00128
00129
00131
00135 void computeAMRResidualHphys(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00136 const Vector<LevelData<FArrayBox> *>& a_rhsLevel);
00137
00138
00140
00144 void computeAMRResidual(LevelData<FArrayBox>& a_resid,
00145 Vector<LevelData<FArrayBox>* >& a_phiLevel,
00146 const Vector<LevelData<FArrayBox>* >& a_rhsLevel);
00147
00148
00150
00154 void upSweep(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00155 const Vector<LevelData<FArrayBox> *>& a_rhsLevel);
00156
00158
00161 void downSweep(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00162 const Vector<LevelData<FArrayBox> *>& a_rhsLevel);
00163
00165
00168 Vector<Real> computeResidualNorm(int normType) const;
00169
00170
00171 LevelOp* levelOpPtr() const;
00172
00173
00175 bool isDefined() const;
00176
00177
00178
00179 Vector<Real>
00180 computeNorm(const LevelData<FArrayBox> & a_mfinput,
00181 int a_normType) const;
00182
00183 protected:
00184
00185
00186 void smooth(LevelData<FArrayBox> & a_soln,
00187 const LevelData<FArrayBox> & rhs);
00188
00189
00190 void clearMemory();
00191
00192
00193 void setDefaultValues();
00194
00195
00196
00197
00198
00199
00200
00201
00202 void
00203 reflux(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00204 LevelData<FArrayBox> & a_Lofphi);
00205
00206
00207
00208
00209 void
00210 initFRCoarse(Vector<LevelData<FArrayBox> *>& a_phiLevel);
00211
00212
00213
00214
00215 void
00216 incrementFRFine(Vector<LevelData<FArrayBox> *>& a_phiLevel);
00217
00218
00219 const AMRSolver* m_parent;
00220
00221
00222 LevelMG m_levelMG;
00223
00224
00225 MGInterp m_mginterp;
00226
00227
00228 LevelFluxRegister m_levfluxreg;
00229
00230
00231 bool m_isDefined;
00232
00233 DisjointBoxLayout m_coarsenedGrids;
00234
00235 LevelData<FArrayBox> m_resid;
00236
00237
00238 LevelData<FArrayBox> m_corr;
00239
00240
00241 LevelData<FArrayBox> m_dcorr;
00242
00243
00244 LevelData<FArrayBox> m_lofPhi;
00245
00246
00247 LevelData<FArrayBox> m_phiSave;
00248
00249 LevelData<FArrayBox> m_resC;
00250
00251
00252
00253 Copier m_residualCopier;
00254
00255
00256
00257 Copier m_fineExchangeCopier;
00258
00259
00260 int m_level;
00261
00262
00263 LevelOp* m_levelopPtr;
00264
00265
00266 CoarseAverage m_averageOp;
00267
00268 bool m_arrayViewVerbose;
00269 private:
00270 void setArrayViewVerbose(bool a_verbosity);
00271 AMRLevelMG& operator = (const AMRLevelMG&);
00272 AMRLevelMG(const AMRLevelMG&);
00273
00274 };
00275
00276 #endif