Chombo + EB
3.2
|
Class to manage box-shifting used to enforce periodic BC's. More...
#include <ProblemDomain.H>
Public Member Functions | |
ShiftIterator () | |
Basic constructor. More... | |
ShiftIterator (const bool *a_isPeriodic) | |
Defining Constructor. More... | |
ShiftIterator (const bool *a_isPeriodic, const IntVect &a_numWraps) | |
Defining Constructor. More... | |
ShiftIterator (const ShiftIterator &a_shiftIt) | |
Copy constructor. More... | |
~ShiftIterator () | |
Destructor. More... | |
ShiftIterator & | operator= (const ShiftIterator &a_src) |
Assignment operator. More... | |
void | computeShifts (const bool *a_isPeriodic) |
Recompute shift vectors based on periodic directions. More... | |
void | computeShifts (const bool *a_isPeriodic, const IntVect &a_numWraps) |
Recompute shift vectors based on periodic directions. More... | |
IntVect | operator() () const |
Returns the current shift unit vector. More... | |
IntVect | i () const |
Equivalent to the () operator. More... | |
void | operator++ () |
Increment to the next shift unit vector. More... | |
void | incr () |
Equivalent to the ++ operator. More... | |
bool | ok () const |
Is the iterator still within its range of shift vectors? More... | |
unsigned int | index () const |
which periodic image is this More... | |
const IntVect & | operator[] (int index) const |
void | reset () |
Reset to first shift unit vector. More... | |
void | begin () |
Equivalent to reset() More... | |
void | end () |
Skip the iterator to the end. More... | |
Private Attributes | |
unsigned int | m_index |
Vector< IntVect > | m_shift_vectors |
Class to manage box-shifting used to enforce periodic BC's.
The ShiftIterator class contains a list of shift vectors necessary to enforce periodic boundary conditions (enforced by shifting the Box of each Fab, then copying any overlapping valid cells with ghost cells of the shifted Fab. Depending on the number of periodic directions, the list of shift vectors over which to iterate differs.
|
inline |
Basic constructor.
ShiftIterator::ShiftIterator | ( | const bool * | a_isPeriodic | ) |
Defining Constructor.
Builds a ShiftIterator based on the periodicity in a_isPeriodic
ShiftIterator::ShiftIterator | ( | const bool * | a_isPeriodic, |
const IntVect & | a_numWraps | ||
) |
Defining Constructor.
Builds a ShiftIterator based on the periodicity in a_isPeriodic and also allows for multiple wraps
|
inline |
Copy constructor.
References m_index, and m_shift_vectors.
ShiftIterator::~ShiftIterator | ( | ) |
Destructor.
|
inline |
Assignment operator.
References m_index, and m_shift_vectors.
Referenced by ProblemDomain::contains_box().
void ShiftIterator::computeShifts | ( | const bool * | a_isPeriodic | ) |
Recompute shift vectors based on periodic directions.
void ShiftIterator::computeShifts | ( | const bool * | a_isPeriodic, |
const IntVect & | a_numWraps | ||
) |
Recompute shift vectors based on periodic directions.
|
inline |
Returns the current shift unit vector.
References CH_assert, m_index, m_shift_vectors, and ok().
Referenced by i().
|
inline |
Equivalent to the () operator.
References operator()(), and operator++().
Referenced by ProblemDomain::contains_box().
|
inline |
Increment to the next shift unit vector.
References m_index.
Referenced by ImageIterator::begin(), and i().
|
inline |
Equivalent to the ++ operator.
References ok().
|
inline |
Is the iterator still within its range of shift vectors?
References m_index, m_shift_vectors, and Vector< T >::size().
Referenced by incr(), and operator()().
|
inline |
|
inline |
References begin(), end(), index(), m_shift_vectors, and reset().
|
inline |
|
inline |
|
inline |
Skip the iterator to the end.
ok() will return false after this method is called.
References m_index, m_shift_vectors, and Vector< T >::size().
Referenced by operator[]().
|
private |
Referenced by begin(), end(), index(), ok(), operator()(), operator++(), operator=(), reset(), and ShiftIterator().
Referenced by end(), ok(), operator()(), operator=(), operator[](), and ShiftIterator().