Chombo + EB + MF  3.2
EBPatchAdvect.H
Go to the documentation of this file.
1 #ifdef CH_LANG_CC
2 /*
3  * _______ __
4  * / ___/ / ___ __ _ / / ___
5  * / /__/ _ \/ _ \/ V \/ _ \/ _ \
6  * \___/_//_/\___/_/_/_/_.__/\___/
7  * Please refer to Copyright.txt, in Chombo's root directory.
8  */
9 #endif
10 
11 #ifndef _EBPATCHADVECT_H_
12 #define _EBPATCHADVECT_H_
13 
14 #include "EBPatchGodunov.H"
15 #include "EBPatchGodunovFactory.H"
16 #include "NamespaceHeader.H"
17 
18 #define TOL 1.e-12
19 
20 ///
21 /**
22  An EBPatchGodunov for passive advection with an
23  input velocity of a particular function value.
24 */
26 {
27 public:
28 
29  ///
30  EBPatchAdvect();
31 
32  ///
34 
35  ///
36  /**
37  Return number of components for primitive variables.
38  */
39  virtual int numPrimitives() const
40  {
41  return 1;
42  }
43 
44  ///
45  /**
46  Returns number of components for flux variables.
47  */
48  virtual int numFluxes() const
49  {
50  return 1;
51  }
52 
53  ///
54  /**
55  Returns number of components for conserved variables.
56  */
57  virtual int numConserved() const
58  {
59  return 1;
60  }
61 
62  ///
63  /**
64  */
65  virtual int numSlopes() const
66  {
67  return 1;
68  }
69 
70  ///
71  /**
72  */
73  void
74  normalPred(EBCellFAB& a_primLo,
75  EBCellFAB& a_primHi,
76  const EBCellFAB& a_primState,
77  const EBCellFAB& a_slopePrim,
78  const Real& a_scale,
79  const int& a_dir,
80  const Box& a_box);
81 
82  ///
83  /**
84  */
85  void
86  transversePred(EBCellFAB& a_primLo,
87  EBCellFAB& a_primHi,
88  const EBCellFAB& a_primState,
89  const EBCellFAB& a_slopePrim,
90  const Real& a_scale,
91  const int& a_dir,
92  const Box& a_box);
93 
94  ///
95  /**
96  */
97  void
99  const EBFluxFAB& a_fluxInterpolant,
100  const IntVectSet& a_irregIVS);
101 
102  ///
103  /**
104  */
105  void
106  extrapToCoveredFaces(BaseIVFAB<Real>& a_extendedPrim,
107  const EBFaceFAB& a_primFace,
108  const EBCellFAB& a_primState,
109  const Vector<VolIndex>& a_coveredFaces,
110  const int& a_faceDir,
111  const Side::LoHiSide& a_sd,
112  const Box& a_box);
113 
114  ///
115  /**
116  */
117  void
119  const EBFaceFAB& a_primFace,
120  const EBCellFAB& a_primState,
121  const int& a_faceDir,
122  const VolIndex& a_vof,
123  const RealVect& a_normal,
124  const Side::LoHiSide& a_sd,
125  const int& a_numPrim);
126 
127  ///
128  /**
129  */
130  void
132  const EBFaceFAB& a_primFace,
133  const EBCellFAB& a_primState,
134  const int& a_faceDir,
135  const VolIndex& a_vof,
136  const RealVect& a_normal,
137  const Side::LoHiSide& a_sd,
138  const int& a_numPrim);
139  ///
140  /**
141  default does -= u_idir d cons/ dx_idir.
142  assumes fluxes are really prims.
143  */
144  virtual void
145  updatePrim(EBCellFAB& a_primMinu,
146  EBCellFAB& a_primPlus,
147  const EBFaceFAB& a_flux,
148  const BaseIVFAB<Real>& a_coveredFluxMinu,
149  const BaseIVFAB<Real>& a_coveredFluxPlus,
150  const Vector<VolIndex>& a_coveredFaceMinu,
151  const Vector<VolIndex>& a_coveredFacePlus,
152  const int& a_dir,
153  const Box& a_box,
154  const Real& a_scale);
155 
156  void
157  upwindSlope(EBCellFAB& a_slopeUpWi,
158  const EBCellFAB& a_primState,
159  const int& a_dir,
160  const Box& a_box);
161 
162  void
163  pointGetSlopesUpwind(Real& a_dql,
164  Real& a_dqr,
165  Real& a_dqc,
166  bool& a_hasFacesLeft,
167  bool& a_hasFacesRigh,
168  const VolIndex& a_vof,
169  const EBCellFAB& a_primState,
170  const int& a_dir,
171  const int& a_ivar,
172  const bool& a_verbose);
173 
174  /// floors if m_isMaxMinSet
175  virtual void
177  const Box& a_box)
178  {
179  if (m_isMaxMinSet)
180  {
181  CH_assert(numPrimitives()==1);
182  // IntVectSet ivsIrreg = m_ebisBox.getIrregIVS(a_box);
183  IntVectSet ivsIrreg(a_box);
184  for (VoFIterator vofit(ivsIrreg, m_ebisBox.getEBGraph());vofit.ok(); ++vofit)
185  {
186  const VolIndex& vof = vofit();
187  a_primState(vof, 0) = Min(a_primState(vof, 0), m_maxVal);
188  a_primState(vof, 0) = Max(a_primState(vof, 0), m_minVal);
189  }
190  }
191  }
192 
193  /// floors if m_isMaxMinSet
194  virtual void
196  const IntVectSet& a_set)
197  {
198  if (m_isMaxMinSet)
199  {
200  CH_assert(numPrimitives()==1);
201  for (VoFIterator vofit(a_set, m_ebisBox.getEBGraph());vofit.ok(); ++vofit)
202  {
203  const VolIndex& vof = vofit();
204  a_primState(vof, 0) = Min(a_primState(vof, 0), m_maxVal);
205  a_primState(vof, 0) = Max(a_primState(vof, 0), m_minVal);
206  }
207  }
208  }
209 
210  /// floors if m_isMaxMinSet
211  virtual void
212  floorConserved(EBCellFAB& a_consState,
213  const Box& a_box)
214  {
215  if (m_isMaxMinSet)
216  {
217  MayDay::Error("EBPatchAdvect::floorConserved::EBCellFAB:: unexpected case");
218  }
219  }
220 
221  /// floors if m_isMaxMinSet
222  virtual void
224  const IntVectSet& a_set)
225  {
226  if (m_isMaxMinSet)
227  {
228  MayDay::Error("EBPatchAdvect::floorConserved::BaseIVFAB:: unexpected case");
229  }
230  }
231 
232  /// default noop
233  virtual void getCoveredValuesPrim(Vector<Real>& a_covValues)
234  {;}
235 
236  ///default noop
237  virtual void getCoveredValuesCons(Vector<Real>& a_covValues)
238  {;}
239 
240  ///default noop
241  virtual void setCoveredConsVals(EBCellFAB& a_consState)
242  {;}
243 
244  ///
245  /**
246  just a copy as default
247  */
248  virtual void
249  consToPrim(EBCellFAB& a_primState,
250  const EBCellFAB& a_conState,
251  const Box& a_box,
252  int a_logflag,
253  bool a_verbose=false);
254 
255  ///
256  /**
257  just a copy as default
258  */
259  virtual void
260  consToPrim(BaseIVFAB<Real>& a_primState,
261  const BaseIVFAB<Real>& a_conState,
262  const IntVectSet& a_ivs);
263 
264  ///
265  /**
266  just a copy
267  */
268  virtual void
269  consToPrim(BaseIVFAB<Real>& a_primState,
270  const EBCellFAB& a_conState,
271  const IntVectSet& a_ivs);
272 
273  ///
274  /**
275  just a copy
276  */
277  virtual void
278  primToCons(EBCellFAB& a_primState,
279  const EBCellFAB& a_conState,
280  const Box& a_box);
281 
282  ///
283  /**
284  just a copy
285  */
286  virtual void
287  primToCons(BaseIVFAB<Real>& a_primState,
288  const BaseIVFAB<Real>& a_conState,
289  const IntVectSet& a_ivs);
290 
291  ///
292  /**
293  sends back primitive state (NOT FLUX) using upwinding
294  */
295  virtual void
296  riemann(EBFaceFAB& a_primState,
297  const EBCellFAB& a_primLeft,
298  const EBCellFAB& a_primRight,
299  const int& a_dir,
300  const Box& a_box);
301 
302  ///
303  /**
304  sends back primitive state (NOT FLUX) using upwinding
305  */
306  virtual void
307  riemann(BaseIVFAB<Real>& a_coveredFlux,
308  const BaseIVFAB<Real>& a_extendedState,
309  const EBCellFAB& a_primState,
310  const Vector<VolIndex>& a_region,
311  const int& a_dir,
312  const Side::LoHiSide& a_sd,
313  const Box& a_box);
314 
315  ///
316  /**
317  This used to set the flux to zero. Now, in most (non-multifluid) cases,
318  it is not called at all. This now extrapolates to the eb which is the wrong
319  thing to do for advection with a fixed boundary (where the flux should just be zero)
320  */
321  virtual void
322  computeEBIrregFlux(BaseIVFAB<Real>& a_ebIrregFlux,
323  const EBCellFAB& a_primState,
324  const EBCellFAB a_slopePrim[SpaceDim],
325  const IntVectSet& a_irregIVS,
326  const EBCellFAB& a_source);
327 
328  ///
329  /**
330  */
331  void
332  extrapolatePrim(EBFluxFAB& a_flux,
333  EBCellFAB& a_primState,
334  EBCellFAB a_slopePrim[SpaceDim],
335  EBCellFAB a_slopeNLim[SpaceDim],
336  Vector<BaseIVFAB<Real> * >& a_coveredFluxMinu,
337  Vector<BaseIVFAB<Real> * >& a_coveredFluxPlus,
338  const Vector<IntVectSet >& a_coveredSetsMinu,
339  const Vector<IntVectSet >& a_coveredSetsPlus,
340  const Vector<Vector<VolIndex> >& a_coveredFaceMinu,
341  const Vector<Vector<VolIndex> >& a_coveredFacePlus,
342  const EBCellFAB& a_flattening,
343  const EBCellFAB& a_consState,
344  const EBCellFAB& a_source,
345  const Box& a_box,
346  const DataIndex& a_dit,
347  bool a_verbose);
348 
349  ///
350  /**
351  */
352  void
353  extrapolateBCG(EBFluxFAB& a_flux,
354  // EBCellFAB& a_primState,
355  EBCellFAB a_slopePrim[SpaceDim],
356  EBCellFAB a_slopeNLim[SpaceDim],
357  const EBCellFAB& a_flattening,
358  const EBCellFAB& a_consState,
359  const EBCellFAB& a_source,
360  const Box& a_box,
361  const DataIndex& a_dit,
362  bool a_verbose);
363 
364  void
365  extrapolateBCG(EBCellFAB a_primMinu[SpaceDim],
366  EBCellFAB a_primPlus[SpaceDim],
367  // EBCellFAB& a_primState,
368  EBCellFAB a_slopesPrim[SpaceDim],
369  EBCellFAB a_slopesSeco[SpaceDim],
370  const EBCellFAB& a_flattening,
371  const EBCellFAB& a_consState,
372  const EBCellFAB& a_source,
373  const Box& a_box,
374  const DataIndex& a_dit,
375  bool a_verbose);
376 
377  ///
378  virtual void
379  advectiveDerivative(EBCellFAB & a_udotDelRho,
380  const EBFluxFAB & a_faceRho,
381  const EBFluxFAB & a_faceVel,
382  const Vector<BaseIVFAB<Real>*> & a_coveredRhoMinu,
383  const Vector<BaseIVFAB<Real>*> & a_coveredRhoPlus,
384  const Vector<BaseIVFAB<Real>*> & a_coveredVelMinu,
385  const Vector<BaseIVFAB<Real>*> & a_coveredVelPlus,
386  const Vector<Vector<VolIndex> >& a_coveredFaceMinu,
387  const Vector<Vector<VolIndex> >& a_coveredFacePlus,
388  const Box & a_box);
389 
390  ///
391  void
392  advectiveDerivative(EBCellFAB & a_udotDelRho,
393  const EBFluxFAB & a_faceRho,
394  const EBFluxFAB & a_faceVel,
395  const Box & a_box);
396 
397  //Things you do not want to mess with unless you really know what you are doing
398  ///
399  /**
400  always false for now
401  */
402  virtual bool usesFlattening() const;
403 
404  ///
405  /**
406  always false for now
407  */
408  virtual bool usesArtificialViscosity() const;
409 
410 
411  // virtual void
412  // coveredExtrapSlopes(Real& a_dqc,
413  // const VolIndex& a_vof,
414  // const EBCellFAB& a_primState,
415  // const int& a_dir,
416  // const int& a_ivar);
417 
418  // virtual void
419  // coveredExtrapSlopesEBPA(Real& a_dqc,
420  // const VolIndex& a_vof,
421  // const EBCellFAB& a_primState,
422  // const Real& a_wc,
423  // const int& a_dir,
424  // const int& a_ivar);
425 
426  virtual void
427  slope(EBCellFAB& a_slopePrim,
428  EBCellFAB& a_slopeNLim,
429  const EBCellFAB& a_primState,
430  const EBCellFAB& a_flattening,
431  const int& a_dir,
432  const Box& a_box,
433  bool a_doAgg = false);
434 
435  virtual void
436  doSecondOrderSlopes(EBCellFAB& a_delta2W,
437  EBCellFAB& a_deltaWL,
438  EBCellFAB& a_deltaWR,
439  EBCellFAB& a_deltaWC,
440  const EBCellFAB& a_primState,
441  const int& a_dir,
442  const Box& a_box);
443 
444  ///
445  /**
446  Return true if you are using fourth-order slopes.
447  Return false if you are using second-order slopes.
448  */
449  virtual bool usesFourthOrderSlopes() const;
450 
451  ///
452  void
453  averageVelToCC(EBCellFAB& a_normalVel,
454  const EBFluxFAB& a_advectionVel,
455  const Vector<BaseIVFAB<Real> * >& a_coveredVeloLo,
456  const Vector<BaseIVFAB<Real> * >& a_coveredVeloHi,
457  const Vector<Vector<VolIndex> >& a_coveredFaceLo,
458  const Vector<Vector<VolIndex> >& a_coveredFaceHi,
459  const Box& a_box) const;
460 
461  virtual void setVelocities(const EBCellFAB& a_normalVel,
462  const EBFluxFAB& a_advectionVel);
463 
464  virtual void
465  setValidBox(const Box& a_validBox,
466  const EBISBox& a_ebisBox,
467  const IntVectSet& a_coarseFineIVS,
468  const Real& a_time,
469  const Real& a_dt);
470 
471  virtual void setTimeAndDt(const Real& a_time, const Real& a_dt)
472  {
473  m_time = a_time;
474  m_dt = a_dt;
475  }
476 
477  ///sets generic defaults
478  virtual Vector<string> stateNames();
479  ///sets generic defaults
480  virtual Vector<string> primNames();
481 
482  ///
483  void useLimiting(bool a_limiting);
484 
485  // Things that should not be called because they do not apply
486 
487  /// should not be called
488  Real
489  getMaxWaveSpeed(const EBCellFAB& a_consState,
490  const Box& a_box)
491  {
492  MayDay::Error("should not be called ");
493  return -1.0;
494  }
495  /// should not be called
496  void
498  const EBFaceFAB& a_prim,
499  const int& a_dir,
500  const Box& a_box)
501  {
502  MayDay::Error("should not be called ");
503  }
504 
505  ///
506  /**
507  should not be called
508  */
510  {
511  MayDay::Error("should not be called");
512  Interval retval;
513  return retval;
514  }
515 
516  ///
517  /**
518  only used as a comparison with ivar for flattening
519  at covered face extrapolation
520  don't want flattening-type stuff to pure advected vars
521  also used for tagging cells.
522  */
523  virtual int densityIndex() const
524  {
525  return 0;
526  }
527 
528 
529  ///
530  /**
531  only used as a comparison with ivar for flattening
532  at covered face extrapolation
533  don't want flattening-type stuff to pure advected vars
534  */
535  int pressureIndex() const
536  {
537  return -1;
538  }
539 
540  /// should not be called
541  int bulkModulusIndex() const
542  {
543  MayDay::Error("should not be called");
544  return -1;
545  }
546 
547  /// should not be called
549  {
550  MayDay::Error("should not be called");
551  return -1.0;
552  }
553 
554  void setMaxMin(const Real& a_maxVal,
555  const Real& a_minVal)
556  {
557  m_isMaxMinSet = true;
558  m_maxVal = a_maxVal;
559  m_minVal = a_minVal;
560  }
562  {
563  return m_primState;
564  }
565 
566 
567 
568 protected:
569 
572 
577 private:
578  //disallowed for all the usual reasons
579  void operator=(const EBPatchAdvect& a_input)
580  {
581  MayDay::Error("invalid operator");
582  }
583  EBPatchAdvect(const EBPatchAdvect& a_input)
584  {
585  MayDay::Error("invalid operator");
586  }
587 
588 };
589 
590 
591 ///
592 /**
593  */
595 {
596 public:
597  ///
598  /**
599  */
600  virtual ~EBPatchAdvectFactory();
601 
602  ///
603  /**
604  */
605  EBPatchGodunov* create() const;
606 
607  ///
608  /**
609  */
611  const bool& a_useLimiting,
612  const Real& a_maxVal =-1.e99,
613  const Real& a_minVal = 1.e99,
614  const bool& a_setMaxMin = false);
615 
616 protected:
622 
623 private:
624 
625  //disallowed for all the usual reasons
627  {
628  MayDay::Error("invalid operator");
629  }
630  void operator=(const EBPatchAdvectFactory& a_input)
631  {
632  MayDay::Error("invalid operator");
633  }
635  {
636  MayDay::Error("invalid operator");
637  }
638 };
639 
640 #include "NamespaceFooter.H"
641 #endif
virtual bool usesFourthOrderSlopes() const
virtual void updatePrim(EBCellFAB &a_primMinu, EBCellFAB &a_primPlus, const EBFaceFAB &a_flux, const BaseIVFAB< Real > &a_coveredFluxMinu, const BaseIVFAB< Real > &a_coveredFluxPlus, const Vector< VolIndex > &a_coveredFaceMinu, const Vector< VolIndex > &a_coveredFacePlus, const int &a_dir, const Box &a_box, const Real &a_scale)
const EBCellFAB * m_normalVelPtr
Definition: EBPatchAdvect.H:571
const EBFluxFAB * m_advectionVelPtr
Definition: EBPatchAdvect.H:570
EBISBox m_ebisBox
Definition: EBPatchGodunov.H:876
virtual void primToCons(EBCellFAB &a_primState, const EBCellFAB &a_conState, const Box &a_box)
Definition: EBPatchGodunovFactory.H:20
An irregular domain on an integer lattice.
Definition: IntVectSet.H:44
void pointExtrapToCovered2D(Vector< Real > &a_extrapVal, const EBFaceFAB &a_primFace, const EBCellFAB &a_primState, const int &a_faceDir, const VolIndex &a_vof, const RealVect &a_normal, const Side::LoHiSide &a_sd, const int &a_numPrim)
#define CH_assert(cond)
Definition: CHArray.H:37
EBPatchAdvectFactory()
Definition: EBPatchAdvect.H:626
virtual void doSecondOrderSlopes(EBCellFAB &a_delta2W, EBCellFAB &a_deltaWL, EBCellFAB &a_deltaWR, EBCellFAB &a_deltaWC, const EBCellFAB &a_primState, const int &a_dir, const Box &a_box)
virtual void floorPrimitives(EBCellFAB &a_primState, const Box &a_box)
floors if m_isMaxMinSet
Definition: EBPatchAdvect.H:176
const EBGraph & getEBGraph() const
virtual void setTimeAndDt(const Real &a_time, const Real &a_dt)
Definition: EBPatchAdvect.H:471
virtual int numPrimitives() const
Definition: EBPatchAdvect.H:39
virtual int numSlopes() const
Definition: EBPatchAdvect.H:65
EBPatchAdvect(const EBPatchAdvect &a_input)
Definition: EBPatchAdvect.H:583
virtual void consToPrim(EBCellFAB &a_primState, const EBCellFAB &a_conState, const Box &a_box, int a_logflag, bool a_verbose=false)
void extrapToCoveredFaces(BaseIVFAB< Real > &a_extendedPrim, const EBFaceFAB &a_primFace, const EBCellFAB &a_primState, const Vector< VolIndex > &a_coveredFaces, const int &a_faceDir, const Side::LoHiSide &a_sd, const Box &a_box)
void extrapolateBCG(EBFluxFAB &a_flux, EBCellFAB a_slopePrim[SpaceDim], EBCellFAB a_slopeNLim[SpaceDim], const EBCellFAB &a_flattening, const EBCellFAB &a_consState, const EBCellFAB &a_source, const Box &a_box, const DataIndex &a_dit, bool a_verbose)
bool m_useLimiting
Definition: EBPatchAdvect.H:618
bool ok() const
Definition: EBPatchAdvect.H:594
RefCountedPtr< EBPhysIBCFactory > m_bcFactoryPtr
Definition: EBPatchAdvect.H:617
virtual bool usesArtificialViscosity() const
Definition: EBISBox.H:46
bool m_isVelSet
Definition: EBPatchAdvect.H:573
virtual Vector< string > primNames()
sets generic defaults
Definition: EBPatchAdvect.H:25
virtual void slope(EBCellFAB &a_slopePrim, EBCellFAB &a_slopeNLim, const EBCellFAB &a_primState, const EBCellFAB &a_flattening, const int &a_dir, const Box &a_box, bool a_doAgg=false)
virtual int numFluxes() const
Definition: EBPatchAdvect.H:48
Definition: EBFaceFAB.H:28
virtual void setValidBox(const Box &a_validBox, const EBISBox &a_ebisBox, const IntVectSet &a_coarseFineIVS, const Real &a_time, const Real &a_dt)
virtual void getCoveredValuesCons(Vector< Real > &a_covValues)
default noop
Definition: EBPatchAdvect.H:237
const int SpaceDim
Definition: SPACE.H:38
void pointGetSlopesUpwind(Real &a_dql, Real &a_dqr, Real &a_dqc, bool &a_hasFacesLeft, bool &a_hasFacesRigh, const VolIndex &a_vof, const EBCellFAB &a_primState, const int &a_dir, const int &a_ivar, const bool &a_verbose)
virtual bool usesFlattening() const
virtual int densityIndex() const
Definition: EBPatchAdvect.H:523
Real getMaxWaveSpeed(const EBCellFAB &a_consState, const Box &a_box)
should not be called
Definition: EBPatchAdvect.H:489
virtual void setCoveredConsVals(EBCellFAB &a_consState)
default noop
Definition: EBPatchAdvect.H:241
Real m_minVal
Definition: EBPatchAdvect.H:576
Definition: EBPatchGodunov.H:31
virtual int numConserved() const
Definition: EBPatchAdvect.H:57
A EBFaceFAB-like container for edge-centered fluxes.
Definition: EBFluxFAB.H:25
Real artificialViscosityCoefficient() const
should not be called
Definition: EBPatchAdvect.H:548
void getFlux(EBFaceFAB &a_flux, const EBFaceFAB &a_prim, const int &a_dir, const Box &a_box)
should not be called
Definition: EBPatchAdvect.H:497
Real m_dt
Definition: EBPatchGodunov.H:878
Structure for passing component ranges in code.
Definition: Interval.H:23
virtual void computeEBIrregFlux(BaseIVFAB< Real > &a_ebIrregFlux, const EBCellFAB &a_primState, const EBCellFAB a_slopePrim[SpaceDim], const IntVectSet &a_irregIVS, const EBCellFAB &a_source)
Definition: EBCellFAB.H:29
virtual void setVelocities(const EBCellFAB &a_normalVel, const EBFluxFAB &a_advectionVel)
void transversePred(EBCellFAB &a_primLo, EBCellFAB &a_primHi, const EBCellFAB &a_primState, const EBCellFAB &a_slopePrim, const Real &a_scale, const int &a_dir, const Box &a_box)
double Real
Definition: REAL.H:33
virtual void riemann(EBFaceFAB &a_primState, const EBCellFAB &a_primLeft, const EBCellFAB &a_primRight, const int &a_dir, const Box &a_box)
virtual void getCoveredValuesPrim(Vector< Real > &a_covValues)
default noop
Definition: EBPatchAdvect.H:233
void useLimiting(bool a_limiting)
EBPatchAdvectFactory(const EBPatchAdvectFactory &a_input)
Definition: EBPatchAdvect.H:634
LoHiSide
Definition: LoHiSide.H:27
void extrapolatePrim(EBFluxFAB &a_flux, EBCellFAB &a_primState, EBCellFAB a_slopePrim[SpaceDim], EBCellFAB a_slopeNLim[SpaceDim], Vector< BaseIVFAB< Real > * > &a_coveredFluxMinu, Vector< BaseIVFAB< Real > * > &a_coveredFluxPlus, const Vector< IntVectSet > &a_coveredSetsMinu, const Vector< IntVectSet > &a_coveredSetsPlus, const Vector< Vector< VolIndex > > &a_coveredFaceMinu, const Vector< Vector< VolIndex > > &a_coveredFacePlus, const EBCellFAB &a_flattening, const EBCellFAB &a_consState, const EBCellFAB &a_source, const Box &a_box, const DataIndex &a_dit, bool a_verbose)
void operator=(const EBPatchAdvectFactory &a_input)
Definition: EBPatchAdvect.H:630
static void Error(const char *const a_msg=m_nullString, int m_exitCode=CH_DEFAULT_ERROR_CODE)
Print out message to cerr and exit with the specified exit code.
void averageVelToCC(EBCellFAB &a_normalVel, const EBFluxFAB &a_advectionVel, const Vector< BaseIVFAB< Real > * > &a_coveredVeloLo, const Vector< BaseIVFAB< Real > * > &a_coveredVeloHi, const Vector< Vector< VolIndex > > &a_coveredFaceLo, const Vector< Vector< VolIndex > > &a_coveredFaceHi, const Box &a_box) const
virtual Vector< string > stateNames()
sets generic defaults
bool m_isMaxMinSet
Definition: EBPatchAdvect.H:574
A Rectangular Domain on an Integer Lattice.
Definition: Box.H:469
A Real vector in SpaceDim-dimensional space.
Definition: RealVect.H:41
virtual void floorConserved(BaseIVFAB< Real > &a_consState, const IntVectSet &a_set)
floors if m_isMaxMinSet
Definition: EBPatchAdvect.H:223
Real m_maxVal
Definition: EBPatchAdvect.H:575
Definition: DataIndex.H:114
Definition: BaseIFFAB.H:34
Iterator for all vofs within an IntVectSet and an Ebgraph.
Definition: VoFIterator.H:27
int pressureIndex() const
Definition: EBPatchAdvect.H:535
void upwindSlope(EBCellFAB &a_slopeUpWi, const EBCellFAB &a_primState, const int &a_dir, const Box &a_box)
T Min(const T &a_a, const T &a_b)
Definition: Misc.H:26
void normalPred(EBCellFAB &a_primLo, EBCellFAB &a_primHi, const EBCellFAB &a_primState, const EBCellFAB &a_slopePrim, const Real &a_scale, const int &a_dir, const Box &a_box)
Real m_minVal
Definition: EBPatchAdvect.H:621
void operator=(const EBPatchAdvect &a_input)
Definition: EBPatchAdvect.H:579
Volume of Fluid Index.
Definition: VolIndex.H:31
T Max(const T &a_a, const T &a_b)
Definition: Misc.H:39
virtual void floorConserved(EBCellFAB &a_consState, const Box &a_box)
floors if m_isMaxMinSet
Definition: EBPatchAdvect.H:212
bool m_setMaxMin
Definition: EBPatchAdvect.H:619
void pointExtrapToCovered3D(Vector< Real > &a_extrapVal, const EBFaceFAB &a_primFace, const EBCellFAB &a_primState, const int &a_faceDir, const VolIndex &a_vof, const RealVect &a_normal, const Side::LoHiSide &a_sd, const int &a_numPrim)
void interpolateFluxToCentroids(BaseIFFAB< Real > a_centroidFlux[SpaceDim], const EBFluxFAB &a_fluxInterpolant, const IntVectSet &a_irregIVS)
EBCellFAB m_primState
Definition: EBPatchGodunov.H:914
Real m_maxVal
Definition: EBPatchAdvect.H:620
virtual void floorPrimitives(BaseIVFAB< Real > &a_primState, const IntVectSet &a_set)
floors if m_isMaxMinSet
Definition: EBPatchAdvect.H:195
virtual void advectiveDerivative(EBCellFAB &a_udotDelRho, const EBFluxFAB &a_faceRho, const EBFluxFAB &a_faceVel, const Vector< BaseIVFAB< Real > *> &a_coveredRhoMinu, const Vector< BaseIVFAB< Real > *> &a_coveredRhoPlus, const Vector< BaseIVFAB< Real > *> &a_coveredVelMinu, const Vector< BaseIVFAB< Real > *> &a_coveredVelPlus, const Vector< Vector< VolIndex > > &a_coveredFaceMinu, const Vector< Vector< VolIndex > > &a_coveredFacePlus, const Box &a_box)
Interval velocityInterval() const
Definition: EBPatchAdvect.H:509
void setMaxMin(const Real &a_maxVal, const Real &a_minVal)
Definition: EBPatchAdvect.H:554
int bulkModulusIndex() const
should not be called
Definition: EBPatchAdvect.H:541
Real m_time
Definition: EBPatchGodunov.H:877
EBCellFAB & getPrimState()
Definition: EBPatchAdvect.H:561