00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _FOURTHORDERCFINTERP_H_
00012 #define _FOURTHORDERCFINTERP_H_
00013
00014 #include "FArrayBox.H"
00015 #include "DisjointBoxLayout.H"
00016 #include "LevelData.H"
00017 #include "ProblemDomain.H"
00018 #include "FourthOrderFineInterp.H"
00019
00020 #include "NamespaceHeader.H"
00021
00022
00023
00024
00025
00026 class FourthOrderCFInterp
00027 {
00028 public:
00029
00030
00031
00032
00033 FourthOrderCFInterp()
00034 {
00035 m_defined = false;
00036 }
00037
00038
00039 FourthOrderCFInterp(
00040 const DisjointBoxLayout& a_thisDisjointBoxLayout,
00041
00042 const DisjointBoxLayout& a_coarserDisjointBoxLayout,
00043
00044 const int& a_numStates,
00045
00046 const ProblemDomain& a_coarseDomain,
00047
00048 const int& a_refineCoarse,
00049
00050 const int& a_interpRadius)
00051 {
00052 define(a_thisDisjointBoxLayout, a_coarserDisjointBoxLayout,
00053 a_numStates, a_coarseDomain, a_refineCoarse, a_interpRadius);
00054 }
00055
00056
00057
00058
00059
00060
00061 ~FourthOrderCFInterp()
00062 {
00063 }
00064
00065
00066 void
00067 homogeneousCoarseFineInterp(
00068 LevelData<FArrayBox>& a_fineData,
00069
00070 int a_srcComp,
00071
00072 int a_dstComp,
00073
00074 int a_numComp);
00075
00076
00077
00078
00079 void define(
00080 const DisjointBoxLayout& a_thisDisjointBoxLayout,
00081
00082 const DisjointBoxLayout& a_coarserDisjointBoxLayout,
00083
00084 const int& a_numStates,
00085
00086 const ProblemDomain& a_coarseDomain,
00087
00088 const int& a_refineCoarse,
00089
00090 const int& a_interpRadius);
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 void coarseFineInterp(
00101 LevelData<FArrayBox>& a_fineData,
00102
00103 const LevelData<FArrayBox>& a_coarseData,
00104
00105 int a_srcComp,
00106
00107 int a_dstComp,
00108
00109 int a_numComp);
00110
00111
00112
00113 protected:
00114
00115
00116 bool m_defined;
00117
00118
00119 DisjointBoxLayout m_layout;
00120
00121
00122 DisjointBoxLayout m_layoutCoarsened;
00123
00124
00125 DisjointBoxLayout m_coarseLayout;
00126
00127
00128 int m_interpRadius;
00129
00130
00131 ProblemDomain m_coarseDomain;
00132
00133
00134 int m_refineCoarse;
00135
00136
00137 IntVect m_refineVect;
00138
00139
00140 int m_numStates;
00141
00142
00143 LevelData<FArrayBox> m_coarsenedFineData;
00144
00145
00146 LayoutData<IntVectSet> m_coarsenedGhosts;
00147
00148
00149
00150 FourthOrderFineInterp m_spaceInterpolator;
00151
00152
00153 void fillInterpSpaceFromCoarsened(
00154 LevelData<FArrayBox>& a_fineData,
00155
00156 int a_srcComp,
00157
00158 int a_dstComp,
00159
00160 int a_numComp);
00161
00162 private:
00163
00164
00165 void operator=(const FourthOrderCFInterp&);
00166 FourthOrderCFInterp(const FourthOrderCFInterp&);
00167 };
00168
00169 #include "NamespaceFooter.H"
00170 #endif