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 #ifndef NODEMASKLEVELOP_H
00033 #define NODEMASKLEVELOP_H
00034
00035 #include <iostream>
00036 #include <math.h>
00037 #include <assert.h>
00038 #include <stdlib.h>
00039 #include "REAL.H"
00040 #include "ProblemDomain.H"
00041 #include "DisjointBoxLayout.H"
00042 #include "LevelData.H"
00043 #include "NodeFArrayBox.H"
00044 #include "IntVectSet.H"
00045
00047
00048 class NodeMaskLevelOp
00054 {
00055
00056 public:
00057
00059
00061
00063 NodeMaskLevelOp() {};
00064
00066
00068
00069 virtual NodeMaskLevelOp* new_levelop() const = 0;
00070
00072
00074 virtual ~NodeMaskLevelOp(){};
00075
00077
00090 virtual void define(
00091 const DisjointBoxLayout& a_grids,
00092 const DisjointBoxLayout* a_gridsCoarsePtr,
00093 Real a_dx,
00094 int a_refToCoarse,
00095 const ProblemDomain& a_domain,
00096 bool a_homogeneousOnly = false,
00097 int a_ncomp = 1
00098 ) = 0;
00099
00100 virtual void define(
00101 const DisjointBoxLayout& a_grids,
00102 const DisjointBoxLayout* a_gridsCoarsePtr,
00103 Real a_dx,
00104 int a_refToCoarse,
00105 const Box& a_domain,
00106 bool a_homogeneousOnly = false,
00107 int a_ncomp = 1
00108 ) = 0;
00109
00110
00112
00120 virtual void define(
00121 const NodeMaskLevelOp* a_opfine,
00122 int a_refToFine
00123 ) = 0;
00124
00125
00127
00129
00132 virtual bool isDefined() const = 0;
00133
00135
00137
00146 virtual void CFInterp(LevelData<NodeFArrayBox>& a_phi,
00147 const LevelData<NodeFArrayBox>& a_phiCoarse,
00148 bool a_inhomogeneous
00149 ) = 0;
00150
00152
00158 virtual void homogeneousCFInterp(
00159 LevelData<NodeFArrayBox>& a_phi
00160 ) = 0;
00161
00163
00172 virtual void smooth(
00173 LevelData<NodeFArrayBox>& a_phi,
00174 const LevelData<NodeFArrayBox>& a_rhs
00175 ) = 0;
00176
00178
00192 virtual void residualI(LevelData<NodeFArrayBox>& a_resid,
00193 LevelData<NodeFArrayBox>& a_phi,
00194 const LevelData<NodeFArrayBox>* a_phiCoarsePtr,
00195 const LevelData<NodeFArrayBox>& a_rhs) = 0;
00196
00198
00210 virtual void residualH(LevelData<NodeFArrayBox>& a_resid,
00211 LevelData<NodeFArrayBox>& a_phi,
00212 const LevelData<NodeFArrayBox>& a_rhs) = 0;
00213
00215
00229 virtual void residualIcfHphys(LevelData<NodeFArrayBox>& a_resid,
00230 LevelData<NodeFArrayBox>& a_phi,
00231 const LevelData<NodeFArrayBox>* a_phiCoarsePtr,
00232 const LevelData<NodeFArrayBox>& a_rhs) = 0;
00233
00235
00247 virtual void residualHcfIphys(LevelData<NodeFArrayBox>& a_resid,
00248 LevelData<NodeFArrayBox>& a_phi,
00249 const LevelData<NodeFArrayBox>& a_rhs) = 0;
00250
00252
00263 virtual void applyOpI(
00264 LevelData<NodeFArrayBox>& a_LofPhi,
00265 LevelData<NodeFArrayBox>& a_phi,
00266 const LevelData<NodeFArrayBox>* a_phiCoarsePtr
00267 ) = 0;
00268
00270
00280 virtual void applyOpH(
00281 LevelData<NodeFArrayBox>& a_LofPhi,
00282 LevelData<NodeFArrayBox>& a_phi
00283 ) = 0;
00284
00286
00297 virtual void applyOpIcfHphys(
00298 LevelData<NodeFArrayBox>& a_LofPhi,
00299 LevelData<NodeFArrayBox>& a_phi,
00300 const LevelData<NodeFArrayBox>* a_phiCoarsePtr
00301 ) = 0;
00302
00304
00314 virtual void applyOpHcfIphys(LevelData<NodeFArrayBox>& a_LofPhi,
00315 LevelData<NodeFArrayBox>& a_phi
00316 ) = 0;
00317
00319
00326 virtual void levelPreconditioner(
00327 LevelData<NodeFArrayBox>& a_phihat,
00328 const LevelData<NodeFArrayBox>& a_rhshat
00329 ) = 0;
00330
00331
00333
00339 virtual void bottomSmoother(
00340 LevelData<NodeFArrayBox>& a_phi,
00341 const LevelData<NodeFArrayBox>& a_rhs) = 0;
00342
00343
00344
00345
00346 ProblemDomain m_domain;
00347
00348
00349 LayoutData< Vector<IntVectSet> > m_IVSVext;
00350 };
00351
00352 #endif