00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011
00012
00013 #ifndef _EBISBOX_H_
00014 #define _EBISBOX_H_
00015
00016 #include "REAL.H"
00017 #include "IntVect.H"
00018 #include "IntVectSet.H"
00019 #include "VolIndex.H"
00020 #include "Interval.H"
00021 #include "FaceIndex.H"
00022 #include "Tuple.H"
00023 #include "IntVectSet.H"
00024 #include "RealVect.H"
00025 #include "BaseFab.H"
00026 #include "RefCountedPtr.H"
00027 #include "SPMD.H"
00028 #include "EBGraph.H"
00029 #include "EBData.H"
00030 #include "NamespaceHeader.H"
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 class EBISBox
00047 {
00048 public:
00049
00050
00051
00052
00053
00054 EBISBox();
00055
00056
00057 ~EBISBox();
00058
00059
00060
00061
00062
00063
00064 IntVectSet getMultiCells(const Box& a_subbox) const;
00065
00066
00067
00068
00069
00070
00071 IntVectSet getIrregIVS(const Box& a_subbox) const;
00072
00073
00074
00075
00076
00077 IntVectSet boundaryIVS(const Box& a_subbox) const;
00078
00079
00080
00081
00082
00083 int numVoFs(const IntVect& a_iv) const;
00084
00085
00086
00087
00088
00089 Vector<VolIndex> getVoFs(const IntVect& a_iv) const;
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103 Vector<VolIndex> getVoFs(const VolIndex& a_vof,
00104 const int& a_dir,
00105 const Side::LoHiSide& a_sd,
00106 const int& a_steps) const;
00107
00108
00109
00110
00111
00112 bool isAllRegular() const;
00113
00114
00115
00116
00117
00118 bool isAllCovered() const;
00119
00120
00121
00122
00123
00124 bool isRegular(const IntVect& a_iv) const;
00125
00126
00127
00128
00129
00130 bool isIrregular(const IntVect& a_iv) const;
00131
00132
00133
00134
00135
00136 bool isCovered(const IntVect& a_iv) const;
00137
00138
00139
00140
00141
00142 bool isMultiValued(const IntVect& a_iv) const;
00143
00144
00145
00146
00147
00148
00149 bool isCovered(const Box& a_box) const;
00150
00151
00152
00153
00154
00155
00156 bool isRegular(const Box& a_box) const;
00157
00158
00159
00160
00161
00162
00163 Vector<FaceIndex> getFaces(const VolIndex& a_vof,
00164 const int& a_idir,
00165 const Side::LoHiSide& a_sd) const;
00166
00167
00168 Vector<FaceIndex> getAllFaces(const IntVect& a_iv,
00169 const int& a_idir,
00170 const Side::LoHiSide& a_sd) const;
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182 RealVect centroid(const FaceIndex& facein) const;
00183
00184
00185
00186
00187
00188
00189 int numFaces(const VolIndex& a_vof,
00190 const int& a_idir,
00191 const Side::LoHiSide& a_sd) const;
00192
00193
00194
00195
00196
00197 Real volFrac(const VolIndex& a_vof) const;
00198
00199
00200
00201
00202
00203
00204 Real areaFracScaling(const VolIndex& a_vof) const;
00205
00206
00207
00208
00209
00210 bool isConnected(const VolIndex& a_vof1,
00211 const VolIndex& a_vof2) const;
00212
00213
00214
00215
00216
00217
00218
00219 Real areaFrac(const FaceIndex& a_face1) const;
00220
00221
00222
00223
00224
00225
00226 Real sumArea(const VolIndex& a_vof,
00227 const int& a_idir,
00228 const Side::LoHiSide& a_sd) const;
00229
00230
00231
00232
00233
00234
00235
00236
00237 RealVect centroid(const VolIndex& a_vof) const;
00238
00239
00240
00241
00242
00243
00244
00245 Vector<VolIndex> refine(const VolIndex& a_coarVoF) const;
00246
00247
00248
00249
00250
00251
00252
00253 VolIndex coarsen(const VolIndex& a_fineVoF) const;
00254
00255
00256
00257
00258 RealVect bndryCentroid(const VolIndex& a_vof) const;
00259 RealVect bndryCentroid(const VolIndex& a_vof, int face) const;
00260
00261
00262
00263
00264 Real bndryArea(const VolIndex& a_vof) const;
00265 Real bndryArea(const VolIndex& a_vof, int face) const;
00266
00267
00268 int numFacePhase(const VolIndex& a_vof) const ;
00269
00270
00271 int facePhase(const VolIndex& a_vof, int face) const ;
00272
00273
00274 const VolIndex& faceIndex(const VolIndex& a_vof, int face) const ;
00275
00276
00277
00278
00279
00280
00281 RealVect normal(const VolIndex& a_vof) const;
00282 RealVect normal(const VolIndex& a_vof, int face) const;
00283
00284
00285 const Box& getRegion() const;
00286
00287
00288 const ProblemDomain& getDomain() const;
00289
00290
00291 void setDomain(const ProblemDomain& a_domain);
00292
00293
00294
00295
00296
00297
00298
00299 Vector<FaceIndex> refine(const FaceIndex& a_coarFace,const EBISBox& a_fineEBISBox) const;
00300
00301
00302
00303
00304
00305
00306
00307
00308 FaceIndex coarsen(const FaceIndex& a_fineFace) const;
00309
00310
00311
00312
00313
00314 void setToAllRegular();
00315
00316
00317
00318
00319
00320 void setToAllCovered();
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334 const EBGraph& getEBGraph() const;
00335
00336
00337
00338
00339 const EBData& getEBData() const;
00340
00341
00342 void
00343 define(const EBGraph& a_graph,
00344 const EBData& a_data,
00345 const DataIndex & a_dit);
00346
00347
00348 EBISBox& operator=(const EBISBox& ebiin);
00349
00350
00351 EBISBox(const EBISBox& ebiin);
00352
00353
00354 bool operator==(const EBISBox& ebiin);
00355
00356
00357
00358
00359
00360
00361 IndMomSpaceDim getVolumeMoments(const VolIndex& a_vof) const
00362 {
00363 return m_data.getVolumeMoments(a_vof);
00364 }
00365
00366
00367
00368
00369
00370
00371 IndMomSpaceDim getEBMoments(const VolIndex& a_vof) const
00372 {
00373 return m_data.getEBMoments(a_vof);
00374 }
00375
00376
00377
00378
00379
00380
00381 IndMomSDMinOne getFaceMoments(const FaceIndex& a_face) const
00382 {
00383 return m_data.getFaceMoments(a_face);
00384 }
00385
00386
00387 IndMomSDMinOne getAreaMoments(const FaceIndex& a_face) const
00388 {
00389 return getFaceMoments(a_face);
00390 }
00391
00392
00393
00394
00395
00396 IndMomSpaceDim getEBNormalPartialDerivs(const VolIndex& a_vof, int a_normalComponent) const
00397 {
00398 return m_data.getEBNormalPartialDerivs(a_vof, a_normalComponent);
00399 }
00400
00401 DataIndex dataIndex() const
00402 {
00403 return m_dit;
00404 }
00405 private:
00406
00407
00408 EBGraph m_graph;
00409
00410
00411 EBData m_data;
00412
00413 DataIndex m_dit;
00414
00415 };
00416
00417
00418
00419
00420 inline bool
00421 EBISBox::isRegular(const IntVect& a_iv) const
00422 {
00423 return m_graph.isRegular(a_iv);
00424 }
00425
00426 inline bool
00427 EBISBox::isIrregular(const IntVect& a_iv) const
00428 {
00429 return m_graph.isIrregular(a_iv);
00430 }
00431
00432 inline bool
00433 EBISBox::isAllCovered() const
00434 {
00435 return m_graph.isAllCovered();
00436 }
00437
00438 inline bool
00439 EBISBox::isAllRegular() const
00440 {
00441 return m_graph.isAllRegular();
00442 }
00443
00444 inline bool
00445 EBISBox::isCovered(const IntVect& a_iv) const
00446 {
00447 return m_graph.isCovered(a_iv);
00448 }
00449
00450 inline bool
00451 EBISBox::isMultiValued(const IntVect& a_iv) const
00452 {
00453 return m_graph.isMultiValued(a_iv);
00454 }
00455
00456
00457 inline bool
00458 EBISBox::isCovered(const Box& a_box) const
00459 {
00460 return m_graph.isCovered(a_box);
00461 }
00462
00463 inline bool
00464 EBISBox::isRegular(const Box& a_box) const
00465 {
00466 return m_graph.isRegular(a_box);
00467 }
00468
00469 inline Vector<VolIndex>
00470 EBISBox::getVoFs(const IntVect& a_iv) const
00471 {
00472 return m_graph.getVoFs(a_iv);
00473 }
00474
00475
00476 inline Vector<FaceIndex>
00477 EBISBox::getAllFaces(const IntVect& a_iv,
00478 const int& a_idir,
00479 const Side::LoHiSide& a_sd) const
00480 {
00481 return m_graph.getAllFaces(a_iv, a_idir, a_sd);
00482 }
00483
00484 inline Vector<FaceIndex>
00485 EBISBox::getFaces(const VolIndex& a_vof,
00486 const int& a_idir,
00487 const Side::LoHiSide& a_sd) const
00488 {
00489 return m_graph.getFaces(a_vof, a_idir, a_sd);
00490 }
00491
00492 inline int
00493 EBISBox::numVoFs(const IntVect& a_iv) const
00494 {
00495 return m_graph.numVoFs(a_iv);
00496 }
00497 #include "NamespaceFooter.H"
00498 #endif