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 protected:
00178
00179
00180 Vector<Real>
00181 computeNorm(const LevelData<FArrayBox> & a_mfinput,
00182 int a_normType) const;
00183
00184
00185 void
00186 crseCorrect(
00187 LevelData<FArrayBox> & a_soln,
00188 const LevelData<FArrayBox> & a_crseCorr,
00189 int a_nref) ;
00190
00191
00192
00193 void smooth(LevelData<FArrayBox> & a_soln,
00194 const LevelData<FArrayBox> & rhs);
00195
00196
00197 void clearMemory();
00198
00199
00200 void setDefaultValues();
00201
00202
00203
00204
00205
00206
00207
00208
00209 void
00210 reflux(Vector<LevelData<FArrayBox> *>& a_phiLevel,
00211 LevelData<FArrayBox> & a_Lofphi);
00212
00213
00214
00215
00216 void
00217 initFRCoarse(Vector<LevelData<FArrayBox> *>& a_phiLevel);
00218
00219
00220
00221
00222 void
00223 incrementFRFine(Vector<LevelData<FArrayBox> *>& a_phiLevel);
00224
00225
00226 const AMRSolver* m_parent;
00227
00228
00229 LevelMG m_levelMG;
00230
00231
00232 MGInterp m_mginterp;
00233
00234
00235 LevelFluxRegister m_levfluxreg;
00236
00237
00238 bool m_isDefined;
00239
00240 DisjointBoxLayout m_coarsenedGrids;
00241
00242 LevelData<FArrayBox> m_resid;
00243
00244
00245 LevelData<FArrayBox> m_corr;
00246
00247
00248 LevelData<FArrayBox> m_dcorr;
00249
00250
00251 LevelData<FArrayBox> m_lofPhi;
00252
00253
00254 LevelData<FArrayBox> m_phiSave;
00255
00256 LevelData<FArrayBox> m_resC;
00257
00258
00259
00260 Copier m_residualCopier;
00261
00262
00263
00264 Copier m_fineExchangeCopier;
00265
00266
00267 int m_level;
00268
00269
00270 LevelOp* m_levelopPtr;
00271
00272
00273 CoarseAverage m_averageOp;
00274
00275 bool m_arrayViewVerbose;
00276 private:
00277 void setArrayViewVerbose(bool a_verbosity);
00278 AMRLevelMG& operator = (const AMRLevelMG&);
00279 AMRLevelMG(const AMRLevelMG&);
00280
00281 };
00282
00283 #endif