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 NODECGSMOOTHER_H
00033 #define NODECGSMOOTHER_H
00034
00035 #include <iostream>
00036 #include <math.h>
00037 #include <assert.h>
00038 #include <stdlib.h>
00039 #include "REAL.H"
00040 #include "IntVect.H"
00041 #include "Box.H"
00042 #include "DisjointBoxLayout.H"
00043 #include "LevelData.H"
00044 #include "NodeFArrayBox.H"
00045 #include "ProblemDomain.H"
00046 #include "NodeBaseBottomSmoother.H"
00047
00049
00052 class NodeCGSmoother : public NodeBaseBottomSmoother
00053 {
00054
00055 public:
00056
00058
00060
00062 NodeCGSmoother();
00063
00065
00067 virtual ~NodeCGSmoother();
00068
00070
00072 virtual NodeBaseBottomSmoother* new_bottomSmoother() const;
00073
00075
00077
00079 void setMaxIter(int a_max_iter);
00080
00082
00084 void setSolverTol(Real a_solverTol);
00085
00087
00089 void setVerbose(bool a_verbose);
00090
00092
00102 virtual void doBottomSmooth(LevelData<NodeFArrayBox>& a_phi,
00103 const LevelData<NodeFArrayBox>& a_rhs,
00104 NodeLevelOp* a_levelopPtr);
00105
00106 protected:
00107
00108
00109 int m_maxIter;
00110
00111
00112 Real m_solverTol;
00113
00114
00115 Real m_small;
00116
00117
00118 Real m_converge_small;
00119
00120
00121 bool m_verbose;
00122 };
00123
00124 #endif
00125
00126
00127
00128