00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011
00012
00013 #ifndef _EBISLAYOUT_H_
00014 #define _EBISLAYOUT_H_
00015
00016 #include "REAL.H"
00017 #include "IntVect.H"
00018 #include "IntVectSet.H"
00019 #include "VolIndex.H"
00020 #include "FaceIndex.H"
00021 #include "IntVectSet.H"
00022 #include "EBISBox.H"
00023 #include "DisjointBoxLayout.H"
00024 #include "LevelData.H"
00025 #include "EBGraph.H"
00026
00027 #include "NamespaceHeader.H"
00028
00029 class EBIndexSpace;
00030 class EBISLayoutImplem;
00031
00032
00033
00034
00035
00036
00037
00038
00039 class EBISLayout
00040 {
00041 public:
00042
00043
00044
00045
00046
00047
00048 const EBISBox& operator[](const DataIndex& a_index) const;
00049
00050
00051
00052
00053
00054
00055
00056
00057 void setMaxRefinementRatio(const int& a_maxRefine, const EBIndexSpace* const a_ebisPtr);
00058
00059
00060
00061
00062
00063
00064
00065
00066 void setMaxCoarseningRatio(const int& a_maxCoarsen, const EBIndexSpace* const a_ebisPtr);
00067
00068
00069
00070
00071
00072 int getGhost() const
00073 {
00074 return m_nghost;
00075 }
00076
00077
00078 EBISLayout();
00079
00080
00081
00082
00083
00084 const BoxLayout& getGrownLayout() const;
00085
00086
00087
00088
00089
00090 const DisjointBoxLayout& getDisjointLayout() const;
00091
00092
00093 ~EBISLayout();
00094
00095
00096
00097
00098
00099
00100
00101
00102 VolIndex coarsen(const VolIndex& a_vof,
00103 const int& a_ratio,
00104 const DataIndex& a_datInd) const;
00105
00106
00107
00108
00109
00110
00111
00112
00113 Vector<VolIndex> refine(const VolIndex& a_vof,
00114 const int& a_ratio,
00115 const DataIndex& a_datInd) const;
00116
00117
00118
00119
00120
00121
00122
00123
00124 Vector<FaceIndex> refine(const FaceIndex& a_face,
00125 const int& a_ratio,
00126 const DataIndex& a_datInd) const;
00127
00128
00129 int getMaxCoarseningRatio() const;
00130
00131
00132 int getMaxRefinementRatio() const;
00133
00134
00135 void define(const ProblemDomain& a_domain,
00136 const DisjointBoxLayout& a_grids,
00137 const int& a_nghost,
00138 const LevelData<EBGraph>& a_graph,
00139 const LevelData<EBData> & a_data,
00140 const Real& a_dx,
00141 bool a_hasMoments);
00142
00143 bool isDefined() const;
00144
00145
00146 const EBIndexSpace* getEBIS() const;
00147 void setEBIS(const EBIndexSpace* const a_ebisPtr);
00148
00149 int refCount() const { return m_implem.refCount();}
00150
00151
00152 const ProblemDomain& getDomain() const ;
00153 private:
00154
00155 RefCountedPtr<EBISLayoutImplem> m_implem;
00156 int m_nghost;
00157 };
00158
00159
00160
00161
00162
00163
00164
00165 class EBISLayoutImplem
00166 {
00167 public:
00168
00169
00170 const EBISBox& operator[](const DataIndex&) const;
00171
00172
00173 EBISLayoutImplem();
00174
00175
00176 ~EBISLayoutImplem();
00177
00178
00179 const BoxLayout& getGrownLayout() const
00180 {
00181 return m_blGhostDom;
00182 }
00183
00184 const DisjointBoxLayout& getDisjointLayout() const
00185 {
00186 return m_dblInputDom;
00187 }
00188
00189
00190
00191
00192
00193
00194
00195
00196 VolIndex coarsen(const VolIndex& a_vof,
00197 const int& a_ratio,
00198 const DataIndex& a_datInd) const;
00199
00200
00201
00202
00203
00204
00205
00206
00207 FaceIndex coarsen(const FaceIndex& a_face,
00208 const int& a_ratio,
00209 const DataIndex& a_datInd) const;
00210
00211
00212
00213
00214
00215
00216
00217
00218 Vector<VolIndex> refine(const VolIndex& a_vof,
00219 const int& a_ratio,
00220 const DataIndex& a_datInd) const;
00221
00222
00223
00224
00225
00226
00227
00228
00229 Vector<FaceIndex> refine(const FaceIndex& a_face,
00230 const int& a_ratio,
00231 const DataIndex& a_datInd) const;
00232
00233
00234
00235
00236
00237
00238
00239
00240 void setMaxRefinementRatio(const int& a_maxRefine, const EBIndexSpace* const a_ebisPtr);
00241
00242
00243
00244
00245
00246
00247
00248
00249 void setMaxCoarseningRatio(const int& a_maxCoarsen, const EBIndexSpace* const a_ebisPtr);
00250
00251
00252 int getMaxCoarseningRatio() const;
00253
00254
00255 int getMaxRefinementRatio() const;
00256
00257
00258 void define(const ProblemDomain& a_domain,
00259 const DisjointBoxLayout& a_grids,
00260 const int& a_nghost,
00261 const LevelData<EBGraph>& a_graph,
00262 const LevelData<EBData> & a_data,
00263 const Real& a_dx,
00264 bool a_hasMoments);
00265
00266
00267 static void setVerbose(bool a_verbose);
00268
00269 bool isDefined() const {return m_defined;}
00270
00271 const EBIndexSpace* getEBIS() const
00272 {
00273 return m_ebisPtr;
00274 }
00275 void setEBIS(const EBIndexSpace* const a_ebisPtr)
00276 {
00277 m_ebisPtr = a_ebisPtr;
00278 }
00279
00280 const ProblemDomain& getDomain() const
00281 {
00282 return m_domain;
00283 }
00284 private:
00285
00286 const EBIndexSpace* m_ebisPtr;
00287
00288 BoxLayout m_blGhostDom;
00289
00290
00291 DisjointBoxLayout m_dblInputDom;
00292
00293
00294 Vector<EBISLayout> m_fineLevels;
00295
00296
00297 Vector<EBISLayout> m_coarLevels;
00298
00299
00300 int m_nghost;
00301
00302
00303 int m_maxCoarseningRatio;
00304
00305
00306 int m_maxRefinementRatio;
00307
00308
00309 ProblemDomain m_domain;
00310
00311
00312 LayoutData<EBISBox> m_ebisBoxes;
00313
00314 bool m_defined;
00315
00316 private:
00317 static bool s_verbose;
00318 void operator=(const EBISLayoutImplem& ebiin)
00319 {;}
00320 EBISLayoutImplem(const EBISLayoutImplem& ebiin)
00321 {;}
00322
00323 };
00324
00325 #include "NamespaceFooter.H"
00326 #endif