00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _AMRLEVELPOLYTROPICGAS_H_
00012 #define _AMRLEVELPOLYTROPICGAS_H_
00013
00014 #include "FArrayBox.H"
00015 #include "LevelData.H"
00016 #include "AMRLevel.H"
00017 #include "CoarseAverage.H"
00018 #include "FineInterp.H"
00019 #include "LevelFluxRegister.H"
00020 #include "Box.H"
00021 #include "IntVectSet.H"
00022 #include "Vector.H"
00023 #include "DisjointBoxLayout.H"
00024
00025 #include "LevelGodunov.H"
00026 #include "PhysIBC.H"
00027
00028 #include "NamespaceHeader.H"
00029
00030
00031
00032
00033 class AMRLevelPolytropicGas: public AMRLevel
00034 {
00035 public:
00036
00037
00038
00039 AMRLevelPolytropicGas();
00040
00041
00042
00043
00044 virtual ~AMRLevelPolytropicGas();
00045
00046
00047
00048
00049 void defineParams(
00050 const Real& a_cfl,
00051
00052 const Real& a_domainLength,
00053
00054 const int& a_verbosity,
00055
00056 const Real& a_refineThresh,
00057
00058 const int& a_tagBufferSize,
00059
00060 const Real& a_initialDtMultiplier,
00061
00062 const GodunovPhysics* const a_godunovPhysics,
00063
00064 const int& a_normalPredOrder,
00065
00066 const bool& a_useFourthOrderSlopes,
00067
00068 const bool& a_usePrimLimiting,
00069
00070 const bool& a_useCharLimiting,
00071
00072 const bool& a_useFlattening,
00073
00074 const bool& a_useArtificialViscosity,
00075
00076 const Real& a_artificialViscosity,
00077
00078 const bool& a_useSourceTerm,
00079
00080 const Real& a_sourceTermScaling,
00081
00082 const bool& a_highOrderLimiter);
00083
00084
00085
00086
00087 virtual void define(AMRLevel* a_coarserLevelPtr,
00088 const Box& a_problemDomain,
00089 int a_level,
00090 int a_refRatio);
00091
00092
00093
00094
00095 virtual void define(AMRLevel* a_coarserLevelPtr,
00096 const ProblemDomain& a_problemDomain,
00097 int a_level,
00098 int a_refRatio);
00099
00100
00101
00102
00103 virtual Real advance();
00104
00105
00106
00107
00108 virtual void postTimeStep();
00109
00110
00111
00112
00113 virtual void tagCells(IntVectSet& a_tags);
00114
00115
00116
00117
00118 virtual void tagCellsInit(IntVectSet& a_tags);
00119
00120
00121
00122
00123 virtual void regrid(const Vector<Box>& a_newGrids);
00124
00125
00126
00127
00128 virtual void initialGrid(const Vector<Box>& a_newGrids);
00129
00130
00131
00132
00133 virtual void initialData();
00134
00135
00136
00137
00138 virtual void postInitialize();
00139
00140 #ifdef CH_USE_HDF5
00141
00142
00143
00144 virtual void writeCheckpointHeader(HDF5Handle& a_handle) const;
00145
00146
00147
00148
00149 virtual void writeCheckpointLevel(HDF5Handle& a_handle) const;
00150
00151
00152
00153
00154 virtual void readCheckpointHeader(HDF5Handle& a_handle);
00155
00156
00157
00158
00159 virtual void readCheckpointLevel(HDF5Handle& a_handle);
00160
00161
00162
00163
00164 virtual void writePlotHeader(HDF5Handle& a_handle) const;
00165
00166
00167
00168
00169 virtual void writePlotLevel(HDF5Handle& a_handle) const;
00170 #endif
00171
00172
00173
00174
00175 virtual Real computeDt();
00176
00177
00178
00179
00180 virtual Real computeInitialDt();
00181
00182
00183 const LevelData<FArrayBox>& getStateNew() const;
00184
00185
00186 const LevelData<FArrayBox>& getStateOld() const;
00187
00188
00189 bool allDefined() const;
00190
00191
00192 protected:
00193
00194 DisjointBoxLayout loadBalance(const Vector<Box>& a_grids);
00195
00196
00197 void levelSetup();
00198
00199
00200 AMRLevelPolytropicGas* getCoarserLevel() const;
00201
00202
00203 AMRLevelPolytropicGas* getFinerLevel() const;
00204
00205
00206 LevelData<FArrayBox> m_UOld,m_UNew;
00207
00208
00209 Real m_cfl;
00210
00211
00212 Real m_dx;
00213
00214
00215 FineInterp m_fineInterp;
00216
00217
00218 CoarseAverage m_coarseAverage;
00219
00220
00221 Real m_dtNew;
00222
00223
00224 int m_numStates;
00225
00226
00227 Vector<string> m_stateNames;
00228
00229
00230 int m_numGhost;
00231
00232
00233 Real m_domainLength;
00234
00235
00236 LevelGodunov m_levelGodunov;
00237
00238
00239 LevelFluxRegister m_fluxRegister;
00240
00241
00242 GodunovPhysics* m_gdnvPhysics;
00243
00244
00245 int m_normalPredOrder;
00246
00247
00248 bool m_useFourthOrderSlopes;
00249
00250
00251 bool m_usePrimLimiting;
00252 bool m_useCharLimiting;
00253
00254
00255 bool m_useFlattening;
00256
00257
00258 bool m_useArtificialViscosity;
00259 Real m_artificialViscosity;
00260
00261
00262 bool m_useSourceTerm;
00263 Real m_sourceTermScaling;
00264
00265
00266 bool m_highOrderLimiter;
00267
00268
00269 Real m_refineThresh;
00270
00271
00272 int m_tagBufferSize;
00273
00274
00275 bool m_hasCoarser;
00276 bool m_hasFiner;
00277
00278
00279 DisjointBoxLayout m_grids;
00280
00281
00282 bool m_paramsDefined;
00283
00284 private:
00285
00286
00287 void operator=(const AMRLevelPolytropicGas&);
00288 AMRLevelPolytropicGas(const AMRLevelPolytropicGas&);
00289 };
00290
00291 #include "NamespaceFooter.H"
00292
00293 #endif