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
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #ifndef _LEVELGODUNOV_H_
00053 #define _LEVELGODUNOV_H_
00054
00055 #include "FArrayBox.H"
00056 #include "FluxBox.H"
00057 #include "DisjointBoxLayout.H"
00058 #include "LevelData.H"
00059 #include "PiecewiseLinearFillPatch.H"
00060 #include "ExtrapFillPatch.H"
00061 #include "LevelFluxRegister.H"
00062 #include "ProblemDomain.H"
00063
00064 #include "PatchGodunov.H"
00065
00067
00069 class LevelGodunov
00070 {
00071 public:
00073
00076 LevelGodunov();
00077
00079
00083 ~LevelGodunov();
00084
00086
00093 void define(const DisjointBoxLayout& a_thisDisjointBoxLayout,
00094 const DisjointBoxLayout& a_coarserDisjointBoxLayout,
00095 const ProblemDomain& a_domain,
00096 const int& a_refineCoarse,
00097 const Real& a_dx,
00098 const GodunovPhysics* const a_godunovFactory,
00099 const int& a_normalPredOrder,
00100 const bool& a_useFourthOrderSlopes,
00101 const bool& a_usePrimLimiting,
00102 const bool& a_useCharLimiting,
00103 const bool& a_useFlattening,
00104 const bool& a_useArtificialViscosity,
00105 const Real& a_artificialViscosity,
00106 const bool& a_hasCoarser,
00107 const bool& a_hasFiner);
00108
00110
00124 Real step(LevelData<FArrayBox>& a_U,
00125 LevelData<FArrayBox> a_flux[CH_SPACEDIM],
00126 LevelFluxRegister& a_finerFluxRegister,
00127 LevelFluxRegister& a_coarserFluxRegister,
00128 const LevelData<FArrayBox>& a_S,
00129 const LevelData<FArrayBox>& a_UCoarseOld,
00130 const Real& a_TCoarseOld,
00131 const LevelData<FArrayBox>& a_UCoarseNew,
00132 const Real& a_TCoarseNew,
00133 const Real& a_time,
00134 const Real& a_dt);
00135
00137
00139 void computeWHalf(LayoutData<FluxBox>& a_WHalf,
00140 LevelData<FArrayBox>& a_U,
00141 const LevelData<FArrayBox>& a_S,
00142 const LevelData<FArrayBox>& a_UCoarseOld,
00143 const Real& a_TCoarseOld,
00144 const LevelData<FArrayBox>& a_UCoarseNew,
00145 const Real& a_TCoarseNew,
00146 const Real& a_time,
00147 const Real& a_dt);
00148
00150
00152 Real computeUpdate(LevelData<FArrayBox>& a_dU,
00153 LevelFluxRegister& a_finerFluxRegister,
00154 LevelFluxRegister& a_coarserFluxRegister,
00155 const LevelData<FArrayBox>& a_U,
00156 const LayoutData<FluxBox>& a_WHalf,
00157 const Real& a_time,
00158 const Real& a_dt);
00159
00161
00163 Real getMaxWaveSpeed(const LevelData<FArrayBox>& a_U);
00164
00166
00170 GodunovPhysics* getGodunovPhysicsPtr();
00171
00172 protected:
00173
00174 DisjointBoxLayout m_grids;
00175
00176
00177 PatchGodunov m_patchGodunov;
00178
00179
00180 int m_numGhost;
00181
00182
00183 PiecewiseLinearFillPatch m_patcher;
00184
00185
00186 Real m_dx;
00187
00188
00189 ProblemDomain m_domain;
00190
00191
00192 int m_refineCoarse;
00193
00194
00195 int m_numCons;
00196
00197
00198 int m_numFluxes;
00199
00200
00201 bool m_hasCoarser;
00202 bool m_hasFiner;
00203
00204
00205 int m_normalPredOrder;
00206
00207
00208 bool m_useFourthOrderSlopes;
00209
00210
00211 bool m_usePrimLimiting;
00212 bool m_useCharLimiting;
00213
00214
00215 bool m_useFlattening;
00216
00217
00218 bool m_useArtificialViscosity;
00219 Real m_artificialViscosity;
00220
00221
00222 bool m_isDefined;
00223
00224
00225 private:
00226
00227 void operator=(const LevelGodunov& a_input)
00228 {
00229 MayDay::Error("invalid operator");
00230 }
00231
00232
00233 LevelGodunov(const LevelGodunov& a_input)
00234 {
00235 MayDay::Error("invalid operator");
00236 }
00237 };
00238
00239 #endif