Chombo + EB + MF
3.2
|
new code More...
#include <BoxLayoutData.H>
Classes | |
struct | ApplyFunctor |
Public Member Functions | |
LevelData () | |
LevelData (const DisjointBoxLayout &dp, int comps, const IntVect &ghost=IntVect::Zero, const DataFactory< T > &a_factory=DefaultDataFactory< T >()) | |
LevelData (const DisjointBoxLayout &dp, int comps, const Copier &a_exchangeCopier, const IntVect &ghost=IntVect::Zero, const DataFactory< T > &a_factory=DefaultDataFactory< T >()) | |
constructor which also takes a copier for use in exchanges. More... | |
virtual | ~LevelData () |
virtual void | define (const DisjointBoxLayout &dp, int comps, const IntVect &ghost=IntVect::Zero, const DataFactory< T > &a_factory=DefaultDataFactory< T >()) |
virtual void | define (const DisjointBoxLayout &dp, int comps, const Copier &a_exchangeCopier, const IntVect &ghost=IntVect::Zero, const DataFactory< T > &a_factory=DefaultDataFactory< T >()) |
virtual void | define (const LevelData< T > &da, const DataFactory< T > &a_factory=DefaultDataFactory< T >()) |
virtual void | define (const LevelData< T > &da, const Interval &comps, const DataFactory< T > &a_factory=DefaultDataFactory< T >()) |
virtual void | copyTo (const Interval &srcComps, BoxLayoutData< T > &dest, const Interval &destComps) const |
virtual void | localCopyTo (const Interval &srcComps, LevelData< T > &dest, const Interval &destComps) const |
only works if source and dest have the same disjointboxlayout More... | |
virtual void | localCopyTo (LevelData< T > &dest) const |
assumes source and dest have same interval More... | |
virtual void | copyTo (BoxLayoutData< T > &dest) const |
Simplest case – assumes source and dest have same interval. More... | |
virtual void | copyTo (const Interval &srcComps, BoxLayoutData< T > &dest, const Interval &destComps, const Copier &copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
virtual void | copyTo (BoxLayoutData< T > &dest, const Copier &copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
Simplest case – assumes source and dest have same interval. More... | |
virtual void | copyTo (const Interval &srcComps, LevelData< T > &dest, const Interval &destComps) const |
virtual void | copyTo (LevelData< T > &dest) const |
Simplest case – assumes source and dest have same interval. More... | |
virtual void | copyTo (const Interval &srcComps, LevelData< T > &dest, const Interval &destComps, const Copier &copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
virtual void | copyTo (LevelData< T > &dest, const Copier &copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
Simplest case – assumes source and dest have same interval. More... | |
virtual void | exchange (void) |
Simplest case – do all components. More... | |
virtual void | exchange (const Copier &copier) |
Simplest case – do all components. Accepts a pre-built copier. More... | |
virtual void | exchange (const Interval &comps) |
Accepts an arbitrary component range. More... | |
virtual void | exchange (const Interval &comps, const Copier &copier, const LDOperator< T > &a_op=LDOperator< T >()) |
virtual void | exchangeBegin (const Copier &copier) |
asynchronous exchange start. load and fire off messages. More... | |
virtual void | exchangeEnd () |
finish asynchronous exchange More... | |
virtual void | exchangeNoOverlap (const Copier &copier) |
virtual void | setExchangeCopier (const Copier &copier) |
allows one to set the default copier for all exchanges going forward. More... | |
const IntVect & | ghostVect () const |
const DisjointBoxLayout & | getBoxes () const |
const DisjointBoxLayout & | disjointBoxLayout () const |
virtual void | apply (void(*a_Function)(const Box &, int, T &)) |
virtual void | apply (const ApplyFunctor &) |
void | degenerate (LevelData< T > &a_to, const SliceSpec &a_ss) const |
void | degenerateLocalOnly (LevelData< T > &a_to, const SliceSpec &a_ss) const |
version of degenerate which does strictly local copying More... | |
overidden virtual functions | |
These functions will invoke error messages when invoked. C++ will ensure that constructors are not called for the base class by a user, but a 'define' function has no such protection, hence the need to prevent such usage. A runtime error is not a perfect solution...(strong construction gets around this sigh). classes that derive from LevelData will have to turn its valid defines into runtime errors also and make its own defines. Thus taking over the job of the compiler. | |
virtual void | define (const BoxLayout &dp, int comps, const DataFactory< T > &factory) |
virtual void | define (const BoxLayoutData< T > &da, const DataFactory< T > &factory=DefaultDataFactory< T >()) |
virtual void | define (const BoxLayoutData< T > &da, const Interval &comps, const DataFactory< T > &factory=DefaultDataFactory< T >()) |
virtual void | define (const BoxLayout &deadFunction) |
overridden and throws an error. More... | |
Public Member Functions inherited from BoxLayoutData< T > | |
BoxLayoutData () | |
virtual | ~BoxLayoutData () |
BoxLayoutData (const BoxLayout &boxes, int comps, const DataFactory< T > &factory=DefaultDataFactory< T >()) | |
virtual bool | threadSafe () const |
int | nComp () const |
Interval | interval () const |
void | generalCopyTo (const BoxLayout &a_destGrids, LayoutData< Vector< RefCountedPtr< T > > > &a_dest, const Interval &a_interval, const ProblemDomain &a_domain, const DataFactory< T > &factory=DefaultDataFactory< T >()) const |
General data copying operation. More... | |
void | generalCopyTo (const BoxLayout &a_destGrids, LayoutData< Vector< RefCountedPtr< T > > > &a_dest, const Interval &a_interval, const ProblemDomain &a_domain, const Copier &a_copier, const DataFactory< T > &factory=DefaultDataFactory< T >()) const |
void | addTo (const Interval &a_srcComps, BoxLayoutData< T > &a_dest, const Interval &a_destComps, const ProblemDomain &a_domain) const |
void | addTo (const Interval &a_srcComps, BoxLayoutData< T > &a_dest, const Interval &a_destComps, const ProblemDomain &a_domain, const Copier &a_copier) const |
void | addToBegin (const Interval &a_srcComps, BoxLayoutData< T > &a_dest, const Interval &a_destComps, const Copier &a_copier) const |
void | addToEnd (const Interval &a_destComps) |
you call this on the destination BoxLayoutData, not the source. More... | |
virtual void | apply (void(*a_Function)(const Box &box, int comps, T &t)) |
virtual bool | isDefined () const |
virtual void | clear () |
Public Member Functions inherited from LayoutData< T > | |
LayoutData () | |
LayoutData (const BoxLayout &a_dp) | |
virtual | ~LayoutData () |
DataIterator | dataIterator () const |
TimedDataIterator | timedDataIterator () const |
const T & | operator[] (const DataIndex &a_index) const |
const accessor function More... | |
const T & | operator[] (const DataIterator &a_iterator) const |
const accessor function More... | |
T & | operator[] (const DataIndex &a_index) |
non-const accessor function More... | |
T & | operator[] (const DataIterator &a_iterator) |
non-const accessor function More... | |
Box | box (const DataIndex &a_index) const |
Box | box (const DataIterator &a_iterator) const |
const BoxLayout & | boxLayout () const |
Protected Attributes | |
DisjointBoxLayout | m_disjointBoxLayout |
IntVect | m_ghost |
Copier | m_exchangeCopier |
Protected Attributes inherited from BoxLayoutData< T > | |
int | m_comps |
bool | m_threadSafe |
bool | m_isdefined |
CopierBuffer * | m_buff |
Protected Attributes inherited from LayoutData< T > | |
BoxLayout | m_boxLayout |
Vector< T * > | m_vector |
bool | m_callDelete |
Friends | |
void | aliasLevelData (LevelData< T > &a_alias, LevelData< T > *a_original, const Interval &a_interval) |
Data over a disjoint union of rectangles. More... | |
Additional Inherited Members | |
Public Attributes inherited from BoxLayoutData< T > | |
int | s_verbosity = 0 |
Protected Member Functions inherited from BoxLayoutData< T > | |
void | setVector (const BoxLayoutData< T > &da, const Interval &srcComps, const Interval &destComps) |
void | allocateGhostVector (const DataFactory< T > &factory, const IntVect &ghost=IntVect::Zero) |
void | makeItSo (const Interval &a_srcComps, const BoxLayoutData< T > &a_src, BoxLayoutData< T > &a_dest, const Interval &a_destComps, const Copier &a_copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
void | makeItSoBegin (const Interval &a_srcComps, const BoxLayoutData< T > &a_src, BoxLayoutData< T > &a_dest, const Interval &a_destComps, const Copier &a_copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
void | makeItSoLocalCopy (const Interval &a_srcComps, const BoxLayoutData< T > &a_src, BoxLayoutData< T > &a_dest, const Interval &a_destComps, const Copier &a_copier, const LDOperator< T > &a_op=LDOperator< T >()) const |
void | makeItSoEnd (const Interval &a_destComps, const LDOperator< T > &a_op=LDOperator< T >()) |
void | completePendingSends () const |
void | allocateBuffers (const BoxLayoutData< T > &a_src, const Interval &a_srcComps, const BoxLayoutData< T > &a_dest, const Interval &a_destComps, const Copier &a_copier, const LDOperator< T > &a_op) const |
void | writeSendDataFromMeIntoBuffers (const BoxLayoutData< T > &a_src, const Interval &a_srcComps, const LDOperator< T > &a_op) const |
void | postSendsFromMe () const |
void | postReceivesToMe () const |
void | unpackReceivesToMe (const Interval &a_destComps, const LDOperator< T > &a_op) |
void | unpackReceivesToMe_append (LayoutData< Vector< RefCountedPtr< T > > > &a_dest, const Interval &a_destComps, int ncomp, const DataFactory< T > &factory, const LDOperator< T > &a_op) const |
new code
LevelData< T >::LevelData | ( | const DisjointBoxLayout & | dp, |
int | comps, | ||
const IntVect & | ghost = IntVect::Zero , |
||
const DataFactory< T > & | a_factory = DefaultDataFactory<T>() |
||
) |
LevelData< T >::LevelData | ( | const DisjointBoxLayout & | dp, |
int | comps, | ||
const Copier & | a_exchangeCopier, | ||
const IntVect & | ghost = IntVect::Zero , |
||
const DataFactory< T > & | a_factory = DefaultDataFactory<T>() |
||
) |
constructor which also takes a copier for use in exchanges.
|
virtual |
Referenced by aliasLevelData(), blockRead(), PetscSolver< LevelData< FArrayBox > >::computeResidual(), LevelDataOps< FArrayBox >::create(), PetscSolver< LevelData< FArrayBox > >::create_mat_vec(), LevelData< BaseFab< int > >::define(), LevelData< BaseFab< int > >::degenerate(), LevelData< BaseFab< int > >::degenerateLocalOnly(), LevelData< BaseFab< int > >::ghostVect(), BaseLevelHeatSolver< LevelData< FArrayBox >, FluxBox, LevelFluxRegister >::incrementFlux(), LevelData< BaseFab< int > >::LevelData(), SimpleAdaptor::newAdaptor(), and read().
|
virtual |
|
virtual |
|
virtual |
|
virtual |
Referenced by LevelDataOps< FArrayBox >::assign(), LevelData< BaseFab< int > >::copyTo(), SimpleAdaptor::copyTo(), BlockBaseRegister< FArrayBox >::copyToSrcRegister(), LevelData< BaseFab< int > >::define(), LevelData< BaseFab< int > >::degenerate(), CoDimCopyManager< T >::manageCopies(), and MergeSolver< T >::solve().
|
virtual |
only works if source and dest have the same disjointboxlayout
Referenced by LevelData< BaseFab< int > >::localCopyTo().
assumes source and dest have same interval
|
virtual |
Simplest case – assumes source and dest have same interval.
|
virtual |
FM MOD START ////////////////////////// same as copyTo that takes a BoxLayoutData, except that it fills the ghost cells of 'dest' with data from 'this' also. USer passes in a prebuilt Copier object
|
virtual |
Simplest case – assumes source and dest have same interval.
|
virtual |
FM MOD. END //////////////////////////// same as copyTo that takes a BoxLayoutData, except that it fills the ghost cells of 'dest' with data from 'this' also.
Simplest case – assumes source and dest have same interval.
|
virtual |
same as copyTo that takes a BoxLayoutData, except that it fills the ghost cells of 'dest' with data from 'this' also. USer passes in a prebuilt Copier object
|
virtual |
Simplest case – assumes source and dest have same interval.
|
virtual |
Simplest case – do all components.
Referenced by PetscSolver< LevelData< FArrayBox > >::computeResidual(), BlockBaseRegister< FArrayBox >::copyToSrcRegister(), PetscSolver< LevelData< FArrayBox > >::create_mat_vec(), LevelData< BaseFab< int > >::exchange(), SimpleAdaptor::exchange(), and CoDimCopyManager< T >::manageExchanges().
Simplest case – do all components. Accepts a pre-built copier.
Accepts an arbitrary component range.
|
virtual |
The most general case – can accept an arbitrary component range, a pre-built Copier object, and an arbitrary accumulation operator.
asynchronous exchange start. load and fire off messages.
|
virtual |
finish asynchronous exchange
allows one to set the default copier for all exchanges going forward.
Referenced by aliasLevelData(), blockWrite(), PetscSolver< LevelData< FArrayBox > >::computeResidual(), LevelData< BaseFab< int > >::copyTo(), BlockBaseRegister< FArrayBox >::copyToSrcRegister(), LevelDataOps< FArrayBox >::create(), LevelData< BaseFab< int > >::localCopyTo(), MergeSolver< T >::solve(), and write().
|
virtual |
Reimplemented from BoxLayoutData< T >.
|
virtual |
Reimplemented from BoxLayoutData< T >.
|
virtual |
Define this BoxLayoutData to be the subset of the data in da defined by the Interval comps.
Reimplemented from BoxLayoutData< T >.
overridden and throws an error.
Reimplemented from BoxLayoutData< T >.
|
inline |
Referenced by LevelData< BaseFab< int > >::copyTo().
|
inline |
Referenced by aliasLevelData(), PetscSolver< LevelData< FArrayBox > >::computeResidual(), SimpleAdaptor::copyTo(), BlockBaseRegister< FArrayBox >::copyToSrcRegister(), LevelDataOps< FArrayBox >::create(), ViscousTensorOp::diagonalScale(), NWOViscousTensorOp::diagonalScale(), VCAMRPoissonOp2::diagonalScale(), ViscousTensorOp::divideByIdentityCoef(), NWOViscousTensorOp::divideByIdentityCoef(), VCAMRPoissonOp2::divideByIdentityCoef(), LevelDataOps< FArrayBox >::dotProduct(), BCFunction::fillGhostCells(), LevelDataOps< FArrayBox >::incr(), LevelData< BaseFab< int > >::localCopyTo(), LevelDataOps< FArrayBox >::mDotProduct(), and MergeSolver< T >::solve().
|
virtual |
User writes a function with the signature:
They can then hand this off to LayoutData::apply, which invokes this function for every T. The argument "box" is the Box (as known to the DisjointBoxLayout here) associated with that T and the argument "n_comps" is the number of components in this LevelData.
Your function must not be inline.
For example:
Referenced by LevelData< BaseFab< int > >::define(), LevelData< BaseFab< int > >::disjointBoxLayout(), and LevelData< T >::ApplyFunctor::~ApplyFunctor().
|
virtual |
Like the other apply(), but here the argument is an instance of a class derived from LevelData::ApplyFunctor, and which implements ApplyFunctor's pure virtual void operator()(const Box& box, int n_comps, T& t) const.
Going with an instance of such a class is more convenient if you want the thing you pass to apply() to have state.
For example:
void LevelData< T >::degenerate | ( | LevelData< T > & | a_to, |
const SliceSpec & | a_ss | ||
) | const |
Referenced by LevelData< T >::ApplyFunctor::~ApplyFunctor().
void LevelData< T >::degenerateLocalOnly | ( | LevelData< T > & | a_to, |
const SliceSpec & | a_ss | ||
) | const |
version of degenerate which does strictly local copying
this means that it maintains source ghost cell values in the destination
Referenced by LevelData< T >::ApplyFunctor::~ApplyFunctor().
|
friend |
Data over a disjoint union of rectangles.
LevelData aliasing function.
LevelData is-a BoxLayoutData. It is built from a DisjointBoxLayout instead though, thus making the data in a DisjointBoxLayout uniquely defined for all spatial indices defined by the underlying DisjointBoxLayout. It carries within it an inherent concept of ghost cells (which the user can choose to be empty).
Since LevelData is-a BoxLayoutData, all the methods required of the template class T for BoxLayoutData are also required for LevelData. LevelData does not have any extra requirements.
a_alias | aliased LevelData<T> object. original data in a_alias is destroyed and new aliasing role assumed. |
a_original | pointer to LevelData<T> that will be aliased. |
a_interval | range of components of each T in a_original that will be created in the a_alias argument. |
The template class T must have an 'alias' constructor
|
protected |
Referenced by LevelData< BaseFab< int > >::apply(), LevelData< BaseFab< int > >::copyTo(), LevelData< BaseFab< int > >::define(), LevelData< BaseFab< int > >::degenerate(), LevelData< BaseFab< int > >::degenerateLocalOnly(), LevelData< BaseFab< int > >::disjointBoxLayout(), LevelData< BaseFab< int > >::exchange(), and LevelData< BaseFab< int > >::getBoxes().