00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011
00012
00013
00014 #ifndef _NODEQCFI_H_
00015 #define _NODEQCFI_H_
00016
00017 #include <cmath>
00018 #include <cstdlib>
00019 #include "BaseFab.H"
00020 #include "NodeFArrayBox.H"
00021 #include "NodeCFIVS.H"
00022 #include "LevelData.H"
00023 #include "NodeQuadCFInterp2.H"
00024 #include "NodeBCFunc.H"
00025 #include "NamespaceHeader.H"
00026
00027
00028 class NodeQCFI
00029
00030
00031
00032 {
00033 public:
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 NodeQCFI();
00044
00045
00046
00047
00048
00049 NodeQCFI(const DisjointBoxLayout& a_grids,
00050 Real a_dx,
00051 const ProblemDomain& a_domain,
00052 const LayoutData<NodeCFIVS>* const a_loCFIVS,
00053 const LayoutData<NodeCFIVS>* const a_hiCFIVS,
00054 int a_refToCoarse,
00055 NodeBCFunc a_bc,
00056 int a_interpolationDegree = 2,
00057 int a_ncomp = 1,
00058 bool a_verbose = false);
00059
00060
00061
00062
00063
00064 NodeQCFI(const DisjointBoxLayout& a_grids,
00065 Real a_dx,
00066 const Box& a_domain,
00067 const LayoutData<NodeCFIVS>* const a_loCFIVS,
00068 const LayoutData<NodeCFIVS>* const a_hiCFIVS,
00069 int a_refToCoarse,
00070 NodeBCFunc a_bc,
00071 int a_interpolationDegree = 2,
00072 int a_ncomp = 1,
00073 bool a_verbose = false);
00074
00075
00076
00077
00078 ~NodeQCFI();
00079
00080
00081
00082
00083
00084
00085 void define(
00086 const DisjointBoxLayout& a_grids,
00087
00088 Real a_dx,
00089
00090 const ProblemDomain& a_domain,
00091
00092 const LayoutData<NodeCFIVS>* const a_loCFIVS,
00093
00094 const LayoutData<NodeCFIVS>* const a_hiCFIVS,
00095
00096 int a_refToCoarse,
00097 NodeBCFunc a_bc,
00098
00099 int a_interpolationDegree = 2,
00100
00101 int a_ncomp = 1,
00102
00103 bool a_verbose = false);
00104
00105
00106
00107
00108
00109
00110 void define(
00111 const DisjointBoxLayout& a_grids,
00112
00113 Real a_dx,
00114
00115 const Box& a_domain,
00116
00117 const LayoutData<NodeCFIVS>* const a_loCFIVS,
00118
00119 const LayoutData<NodeCFIVS>* const a_hiCFIVS,
00120
00121 int a_refToCoarse,
00122 NodeBCFunc a_bc,
00123
00124 int a_interpolationDegree = 2,
00125
00126 int a_ncomp = 1,
00127
00128 bool a_verbose = false);
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141 bool isDefined() const;
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153 void setVerbose( bool a_verbose );
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167 void coarseFineInterp(
00168 LevelData<NodeFArrayBox>& a_phiFine,
00169
00170 const LevelData<NodeFArrayBox>& a_phiCoarse,
00171
00172 bool a_inhomogeneous);
00173
00174
00175
00176 protected:
00177
00178 NodeBCFunc m_bc;
00179
00180
00181 DisjointBoxLayout m_grids;
00182
00183
00184
00185 int m_ncomp;
00186
00187
00188
00189 int m_refToCoarse;
00190
00191
00192
00193
00194 int m_coarsenings;
00195
00196
00197
00198 bool m_isDefined;
00199
00200
00201
00202 Real m_dx;
00203
00204
00205
00206 Real m_dxPenultimate;
00207
00208
00209
00210 ProblemDomain m_domainPenultimate;
00211
00212
00213
00214
00215 Vector< LevelData<NodeFArrayBox>* > m_inter;
00216
00217
00218
00219
00220
00221 Vector< NodeQuadCFInterp2* > m_qcfi2;
00222
00223
00224
00225
00226 Vector< LayoutData<NodeCFIVS>* > m_loCFIVScoarser;
00227
00228
00229
00230
00231 Vector< LayoutData<NodeCFIVS>* > m_hiCFIVScoarser;
00232
00233
00234
00235 bool m_verbose ;
00236
00237 private:
00238
00239
00240 void clearMemory();
00241
00242 void setDefaultValues();
00243 };
00244
00245 #include "NamespaceFooter.H"
00246 #endif