IBAMR  IBAMR version 0.19.
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
SAMRAI::pdat::FaceData< DIM, TYPE > Class Template Reference

Class FaceData<DIM> provides an implementation for data defined at cell faces on AMR patches. It is derived from the hier::PatchData interface common to all SAMRAI patch data types. Given a CELL-centered AMR index space box, a face data object represents data of some template TYPE and depth on the faces of the cells in the box. Here, depth indicates the number of data values at each face index location. The FaceGeometry class provides the translation between the standard SAMRAI cell-centered AMR index space and face-centered data. More...

#include <ibtk/PatchMathOps.h>

Inheritance diagram for SAMRAI::pdat::FaceData< DIM, TYPE >:
Inheritance graph
[legend]

Public Types

typedef FaceIterator< DIM > Iterator
 

Public Member Functions

 FaceData (const hier::Box< DIM > &box, int depth, const hier::IntVector< DIM > &ghosts, tbox::Pointer< tbox::Arena > pool=tbox::Pointer< tbox::Arena >(NULL))
 The constructor for a face data object. More...
 
virtual ~FaceData ()
 The virtual destructor for a face data object. More...
 
int getDepth () const
 Return the depth (e.g., the number of components in each spatial location) of the array. More...
 
TYPE * getPointer (int face_normal, int depth=0)
 Get a pointer to the beginning of a particular face normal and depth component of the face centered array. More...
 
const TYPE * getPointer (int face_normal, int depth=0) const
 Get a const pointer to the beginning of a particular face normal and depth component of the face centered array. More...
 
TYPE & operator() (const FaceIndex< DIM > &i, int depth=0)
 Return a reference to the data entry corresponding to a given face index and depth. More...
 
const TYPE & operator() (const FaceIndex< DIM > &i, int depth=0) const
 Return a const reference to the data entry corresponding to a given face index and depth. More...
 
ArrayData< DIM, TYPE > & getArrayData (int face_normal)
 Return a reference to the array data object for the given face normal of the face centered data object. More...
 
const ArrayData< DIM, TYPE > & getArrayData (int face_normal) const
 Return a const reference to the array data object for the given face normal of the face centered data object. More...
 
virtual void copy (const hier::PatchData< DIM > &src)
 A fast copy from source to destination (i.e., this) patch data object. More...
 
virtual void copy2 (hier::PatchData< DIM > &dst) const
 A fast copy from source (i.e., this) to destination patch data object. More...
 
virtual void copy (const hier::PatchData< DIM > &src, const hier::BoxOverlap< DIM > &overlap)
 Copy data from source to destination (i.e., this) patch data object on the given overlap. More...
 
virtual void copy2 (hier::PatchData< DIM > &dst, const hier::BoxOverlap< DIM > &overlap) const
 Copy data from source (i.e., this) to destination patch data object on the given overlap. More...
 
void copyOnBox (const FaceData< DIM, TYPE > &src, const hier::Box< DIM > &box)
 Copy data from source to destination (i.e., this) patch data object on the given CELL-centered AMR index box. More...
 
void copyDepth (int dst_depth, const FaceData< DIM, TYPE > &src, int src_depth)
 Fast copy (i.e., source and this face data objects are defined over the same box) to this destination face data object from the given source face data object at the specified depths. More...
 
virtual bool canEstimateStreamSizeFromBox () const
 Return true if the patch data object can estimate the stream size required to fit its data using only index space information (i.e., a box). More...
 
virtual int getDataStreamSize (const hier::BoxOverlap< DIM > &overlap) const
 Return the number of bytes needed to stream the data in this patch data object lying in the specified box overlap region. More...
 
virtual void packStream (tbox::AbstractStream &stream, const hier::BoxOverlap< DIM > &overlap) const
 Pack data in this patch data object lying in the specified box overlap region into the stream. The overlap must be an FaceOverlap of the same DIM. More...
 
virtual void unpackStream (tbox::AbstractStream &stream, const hier::BoxOverlap< DIM > &overlap)
 Unpack data from stream into this patch data object over the specified box overlap region. The overlap must be an FaceOverlap of the same DIM. More...
 
void fill (const TYPE &t, int d=0)
 Fill all values at depth d with the value t. More...
 
void fill (const TYPE &t, const hier::Box< DIM > &box, int d=0)
 Fill all values at depth d within the box with the value t. More...
 
void fillAll (const TYPE &t)
 Fill all depth components with value t. More...
 
void fillAll (const TYPE &t, const hier::Box< DIM > &box)
 Fill all depth components within the box with value t. More...
 
void print (const hier::Box< DIM > &box, std::ostream &os=tbox::plog, int prec=12) const
 Print all face data values residing in the specified box. If the depth of the array is greater than one, all depths are printed. More...
 
void print (const hier::Box< DIM > &box, int depth, std::ostream &os=tbox::plog, int prec=12) const
 Print all face data values at the given array depth in the specified box. More...
 
void printAxis (int face_normal, const hier::Box< DIM > &box, std::ostream &os=tbox::plog, int prec=12) const
 Print all face centered data values for specified face normal direction residing in the specified box. If the depth of the data is greater than one, all depths are printed. More...
 
void printAxis (int face_normal, const hier::Box< DIM > &box, int depth, std::ostream &os=tbox::plog, int prec=12) const
 Print all face centered data values for specified face normal direction residing in the specified box. If the depth of the data is greater than one, all depths are printed. More...
 
virtual void getSpecializedFromDatabase (tbox::Pointer< tbox::Database > database)
 
virtual void putSpecializedToDatabase (tbox::Pointer< tbox::Database > database)
 
const Box< DIM > & getBox () const
 
const Box< DIM > & getGhostBox () const
 
const IntVector< DIM > & getGhostCellWidth () const
 
void setTime (const double timestamp)
 
double getTime () const
 
virtual void getFromDatabase (tbox::Pointer< tbox::Database > database)
 
virtual void putToDatabase (tbox::Pointer< tbox::Database > database)
 

Static Public Member Functions

static size_t getSizeOfData (const hier::Box< DIM > &box, int depth, const hier::IntVector< DIM > &ghosts)
 Calculate the amount of memory needed to represent face- centered data over a CELL-centered AMR index space box. More...
 

Protected Member Functions

void setGhostBox (const Box< DIM > &ghost_box)
 

Private Member Functions

 FaceData (const FaceData< DIM, TYPE > &)
 
void operator= (const FaceData< DIM, TYPE > &)
 

Private Attributes

int d_depth
 
ArrayData< DIM, TYPE > d_data [DIM]
 
Box< DIM > d_box
 
Box< DIM > d_ghost_box
 
IntVector< DIM > d_ghosts
 
double d_timestamp
 

Detailed Description

template<int DIM, class TYPE>
class SAMRAI::pdat::FaceData< DIM, TYPE >

Face data is stored in DIM arrays, each of which contains the data for the faces normal to a corresponding coordinate direction. In addition, the array indices are permuted so that the fastest array dimension is the same as the normal direction of the face. Memory allocation is in column-major ordering (e.g., Fortran style) so that the leftmost index runs fastest in memory. For example, a three-dimensional face data object created over a CELL-centered AMR index space [l0:u0,l1:u1,l2:u2] allocates three data arrays dimensioned as follows:

  face normal 0 
    [ l0 : u0+1 ,
      l1 : u1 ,
      l2 : u2 , d ]   ,

  face normal 1 
    [ l1 : u1+1 ,
      l2 : u2 ,
      l0 : u0 , d ]   ,

  face normal 2 
    [ l2 : u2+1 ,
      l0 : u0 ,
      l1 : u1 , d ]   ,
      
* 

Here the face normal directions 0, 1, 2 can be thought of as the x, y, and z face normal directions, respectively, and d is the depth index (i.e., number of values at each face index location). Other spatial dimensions are represented similarly.

The data type TYPE must define a default constructor (that takes no arguments) and also the assignment operator.

IMPORTANT: The SideData<DIM> class provides the same storage as this face data class, except that the coordinate directions of the individual arrays are not permuted.

See also
pdat::ArrayData
hier::PatchData
pdat::FaceDataFactory
pdat::FaceIndex
pdat::FaceIterator
pdat::FaceGeometry

Member Typedef Documentation

◆ Iterator

template<int DIM, class TYPE >
typedef FaceIterator<DIM> SAMRAI::pdat::FaceData< DIM, TYPE >::Iterator

The face iterator iterates over the elements on one face normal of a face centered box geometry. This typedef is a convenience for using the FaceIterator<DIM> class.

Constructor & Destructor Documentation

◆ FaceData() [1/2]

template<int DIM, class TYPE >
SAMRAI::pdat::FaceData< DIM, TYPE >::FaceData ( const hier::Box< DIM > &  box,
int  depth,
const hier::IntVector< DIM > &  ghosts,
tbox::Pointer< tbox::Arena pool = tbox::Pointertbox::Arena >(NULL) 
)
Parameters
boxconst Box reference describing the interior of the standard CELL-centered index box over which the face data object will be created.
depthgives the number of components for each spatial location in the array.
ghostsconst IntVector reference indicating the width of the ghost cell region around the box over which the face data will be allocated.
poolmemory arena. If not given, then the standard arena is used.

◆ ~FaceData()

template<int DIM, class TYPE >
virtual SAMRAI::pdat::FaceData< DIM, TYPE >::~FaceData ( )
virtual

◆ FaceData() [2/2]

template<int DIM, class TYPE >
SAMRAI::pdat::FaceData< DIM, TYPE >::FaceData ( const FaceData< DIM, TYPE > &  )
private

Member Function Documentation

◆ getSizeOfData()

template<int DIM, class TYPE >
static size_t SAMRAI::pdat::FaceData< DIM, TYPE >::getSizeOfData ( const hier::Box< DIM > &  box,
int  depth,
const hier::IntVector< DIM > &  ghosts 
)
static

This function assumes that the amount of memory needed for TYPE is sizeof(TYPE). If this is not the case, then a specialized function must be defined.

Parameters
boxconst Box reference describing the interior of the standard CELL-centered index box over which the face data object will be created.
depthgives the number of components for each spatial location in the array.
ghostsconst IntVector reference indicating the width of the ghost cell region around the box over which the face data will be allocated.

◆ getDepth()

template<int DIM, class TYPE >
int SAMRAI::pdat::FaceData< DIM, TYPE >::getDepth ( ) const

◆ getPointer() [1/2]

template<int DIM, class TYPE >
TYPE* SAMRAI::pdat::FaceData< DIM, TYPE >::getPointer ( int  face_normal,
int  depth = 0 
)

◆ getPointer() [2/2]

template<int DIM, class TYPE >
const TYPE* SAMRAI::pdat::FaceData< DIM, TYPE >::getPointer ( int  face_normal,
int  depth = 0 
) const

◆ operator()() [1/2]

template<int DIM, class TYPE >
TYPE& SAMRAI::pdat::FaceData< DIM, TYPE >::operator() ( const FaceIndex< DIM > &  i,
int  depth = 0 
)

◆ operator()() [2/2]

template<int DIM, class TYPE >
const TYPE& SAMRAI::pdat::FaceData< DIM, TYPE >::operator() ( const FaceIndex< DIM > &  i,
int  depth = 0 
) const

◆ getArrayData() [1/2]

template<int DIM, class TYPE >
ArrayData<DIM,TYPE>& SAMRAI::pdat::FaceData< DIM, TYPE >::getArrayData ( int  face_normal)

◆ getArrayData() [2/2]

template<int DIM, class TYPE >
const ArrayData<DIM,TYPE>& SAMRAI::pdat::FaceData< DIM, TYPE >::getArrayData ( int  face_normal) const

◆ copy() [1/2]

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::copy ( const hier::PatchData< DIM > &  src)
virtual

Data is copied where there is overlap in the underlying index space. The copy is performed on the interior plus the ghost cell width (for both the source and destination). Currently, source data must be an FaceData of the same DIM and TYPE. If not, then an unrecoverable error results.

Implements SAMRAI::hier::PatchData< DIM >.

◆ copy2() [1/2]

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::copy2 ( hier::PatchData< DIM > &  dst) const
virtual

Data is copied where there is overlap in the underlying index space. The copy is performed on the interior plus the ghost cell width (for both the source and destination). Currently, destination data must be an FaceData of the same DIM and TYPE. If not, then an unrecoverable error results.

Implements SAMRAI::hier::PatchData< DIM >.

◆ copy() [2/2]

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::copy ( const hier::PatchData< DIM > &  src,
const hier::BoxOverlap< DIM > &  overlap 
)
virtual

Currently, source data must be FaceData of the same DIM and TYPE and the overlap must be a FaceOverlap of the same DIM. If not, then an unrecoverable error results.

Implements SAMRAI::hier::PatchData< DIM >.

◆ copy2() [2/2]

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::copy2 ( hier::PatchData< DIM > &  dst,
const hier::BoxOverlap< DIM > &  overlap 
) const
virtual

Currently, destination data must be FaceData of the same DIM and TYPE and the overlap must be a FaceOverlap of the same DIM. If not, then an unrecoverable error results.

Implements SAMRAI::hier::PatchData< DIM >.

◆ copyOnBox()

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::copyOnBox ( const FaceData< DIM, TYPE > &  src,
const hier::Box< DIM > &  box 
)

◆ copyDepth()

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::copyDepth ( int  dst_depth,
const FaceData< DIM, TYPE > &  src,
int  src_depth 
)

◆ canEstimateStreamSizeFromBox()

template<int DIM, class TYPE >
virtual bool SAMRAI::pdat::FaceData< DIM, TYPE >::canEstimateStreamSizeFromBox ( ) const
virtual

This routine is defined for the standard types (bool, char, double, float, int, and dcomplex).

Implements SAMRAI::hier::PatchData< DIM >.

◆ getDataStreamSize()

template<int DIM, class TYPE >
virtual int SAMRAI::pdat::FaceData< DIM, TYPE >::getDataStreamSize ( const hier::BoxOverlap< DIM > &  overlap) const
virtual

This routine is defined for the standard types (bool, char, double, float, int, and dcomplex).

Implements SAMRAI::hier::PatchData< DIM >.

◆ packStream()

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::packStream ( tbox::AbstractStream stream,
const hier::BoxOverlap< DIM > &  overlap 
) const
virtual

◆ unpackStream()

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::unpackStream ( tbox::AbstractStream stream,
const hier::BoxOverlap< DIM > &  overlap 
)
virtual

◆ fill() [1/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::fill ( const TYPE &  t,
int  d = 0 
)

◆ fill() [2/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::fill ( const TYPE &  t,
const hier::Box< DIM > &  box,
int  d = 0 
)

◆ fillAll() [1/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::fillAll ( const TYPE &  t)

◆ fillAll() [2/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::fillAll ( const TYPE &  t,
const hier::Box< DIM > &  box 
)

◆ print() [1/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::print ( const hier::Box< DIM > &  box,
std::ostream &  os = tbox::plog,
int  prec = 12 
) const
Parameters
boxconst reference to box over whioch to print data. Note box is assumed to reside in standard cell-centered index space and will be converted to face index space.
osreference to output stream.
precinteger precision for printing floating point numbers (i.e., TYPE = float, double, or dcomplex). The default is 12 decimal places for double and complex floating point numbers, and the default is 6 decimal places floats. For other types, this value is ignored.

◆ print() [2/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::print ( const hier::Box< DIM > &  box,
int  depth,
std::ostream &  os = tbox::plog,
int  prec = 12 
) const
Parameters
boxconst reference to box over whioch to print data. Note box is assumed to reside in standard cell-centered index space and will be converted to face index space.
depthinteger depth component, must satisfy 0 <= depth < actual depth of data array
osreference to output stream.
precinteger precision for printing floating point numbers (i.e., TYPE = float, double, or dcomplex). The default is 12 decimal places for double and complex floating point numbers, and the default is 6 decimal places floats. For other types, this value is ignored.

◆ printAxis() [1/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::printAxis ( int  face_normal,
const hier::Box< DIM > &  box,
std::ostream &  os = tbox::plog,
int  prec = 12 
) const
Parameters
face_normalinteger face normal coordinate direction, must satisfy 0 <= face_normal < DIM
boxconst reference to box over whioch to print data. Note box is assumed to reside in standard cell-centered index space and will be converted to face index space.
osreference to output stream.
precinteger precision for printing floating point numbers (i.e., TYPE = float, double, or dcomplex). The default is 12 decimal places for double and complex floating point numbers, and the default is 6 decimal places floats. For other types, this value is ignored.

◆ printAxis() [2/2]

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::printAxis ( int  face_normal,
const hier::Box< DIM > &  box,
int  depth,
std::ostream &  os = tbox::plog,
int  prec = 12 
) const
Parameters
face_normalinteger face normal coordinate direction, must satisfy 0 <= face_normal < DIM
boxconst reference to box over whioch to print data. Note box is assumed to reside in standard cell-centered index space and will be converted to face index space.
depthinteger depth component, must satisfy 0 <= depth < actual depth of data array
osreference to output stream.
precinteger precision for printing floating point numbers (i.e., TYPE = float, double, or dcomplex). The default is 12 decimal places for double and complex floating point numbers, and the default is 6 decimal places floats. For other types, this value is ignored.

◆ getSpecializedFromDatabase()

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::getSpecializedFromDatabase ( tbox::Pointer< tbox::Database database)
virtual

Check that class version and restart file version are equal. If so, read data members from the database.

Assertions: database must be non-null pointer.

Implements SAMRAI::hier::PatchData< DIM >.

◆ putSpecializedToDatabase()

template<int DIM, class TYPE >
virtual void SAMRAI::pdat::FaceData< DIM, TYPE >::putSpecializedToDatabase ( tbox::Pointer< tbox::Database database)
virtual

Write out the class version number and other data members to the database.

Assertions: database must be non-null pointer.

Implements SAMRAI::hier::PatchData< DIM >.

◆ operator=()

template<int DIM, class TYPE >
void SAMRAI::pdat::FaceData< DIM, TYPE >::operator= ( const FaceData< DIM, TYPE > &  )
private

◆ getBox()

template<int DIM>
const Box<DIM>& SAMRAI::hier::PatchData< DIM >::getBox ( ) const
inherited

Return the box over which this patch data object is defined. All objects in the same patch are defined over the same box, although the patch data objects may interpret how to allocate storage for that box in different ways.

◆ getGhostBox()

template<int DIM>
const Box<DIM>& SAMRAI::hier::PatchData< DIM >::getGhostBox ( ) const
inherited

Return the ghost cell box. The ghost cell box is defined to be the interior box grown by the ghost cell width.

◆ getGhostCellWidth()

template<int DIM>
const IntVector<DIM>& SAMRAI::hier::PatchData< DIM >::getGhostCellWidth ( ) const
inherited

Get the ghost cell width associated with this patch data object.

◆ setTime()

template<int DIM>
void SAMRAI::hier::PatchData< DIM >::setTime ( const double  timestamp)
inherited

Set the simulation time stamp for the patch data type. The simulation time is initialized to zero when the patch data type is created.

◆ getTime()

template<int DIM>
double SAMRAI::hier::PatchData< DIM >::getTime ( ) const
inherited

Get the simulation time stamp for the patch data type.

◆ getFromDatabase()

template<int DIM>
virtual void SAMRAI::hier::PatchData< DIM >::getFromDatabase ( tbox::Pointer< tbox::Database database)
virtualinherited

Checks that class version and restart file version are equal. If so, reads in the data members common to all patch data types from database. This method then calls the getSpecializedFromDatabase() method to retrieve the data special to the concrete patch data type.

◆ putToDatabase()

template<int DIM>
virtual void SAMRAI::hier::PatchData< DIM >::putToDatabase ( tbox::Pointer< tbox::Database database)
virtualinherited

Writes out the class version number to the database. Then, writes the data members common to all patch data types from database. After the common data is written to the database, the putSpecializedToDatabase() method is invoked.

◆ setGhostBox()

template<int DIM>
void SAMRAI::hier::PatchData< DIM >::setGhostBox ( const Box< DIM > &  ghost_box)
protectedinherited

This protected method is used by concrete patch data subclasses to set the ghost box over which the patch data will be allocated. Note that this allows the ghost box to be inconsistant with its standard interpretation as the patch domain box grown by the ghost cell width (as set in the constructor).

This function is included to treat some special cases for concrete patch data types and should be used with caution.

Member Data Documentation

◆ d_depth

template<int DIM, class TYPE >
int SAMRAI::pdat::FaceData< DIM, TYPE >::d_depth
private

◆ d_data

template<int DIM, class TYPE >
ArrayData<DIM,TYPE> SAMRAI::pdat::FaceData< DIM, TYPE >::d_data[DIM]
private

◆ d_box

template<int DIM>
Box<DIM> SAMRAI::hier::PatchData< DIM >::d_box
privateinherited

◆ d_ghost_box

template<int DIM>
Box<DIM> SAMRAI::hier::PatchData< DIM >::d_ghost_box
privateinherited

◆ d_ghosts

template<int DIM>
IntVector<DIM> SAMRAI::hier::PatchData< DIM >::d_ghosts
privateinherited

◆ d_timestamp

template<int DIM>
double SAMRAI::hier::PatchData< DIM >::d_timestamp
privateinherited

The documentation for this class was generated from the following file: