PSCF v1.2
|
A list of c fields stored in both basis and r-grid format. More...
#include <CFieldContainer.h>
Public Member Functions | |
CFieldContainer () | |
Constructor. | |
~CFieldContainer () | |
Destructor. | |
Initialization and Memory Management | |
void | setNMonomer (int nMonomer) |
Set stored value of nMonomer. | |
void | allocateRGrid (IntVec< D > const &dimensions) |
Allocate or re-allocate memory for fields in rgrid format. | |
void | deallocateRGrid () |
De-allocate fields in rgrid format. | |
void | allocateBasis (int nBasis) |
Allocate or re-allocate memory for fields in basis format. | |
void | deallocateBasis () |
De-allocate fields in basis format. | |
void | allocate (int nMonomer, int nBasis, IntVec< D > const &dimensions) |
Allocate memory for both r-grid and basis field formats. | |
Field Mutators and Accessors (return by reference) | |
DArray< DArray< double > > & | basis () |
Get array of all fields in basis format (non-const). | |
DArray< DArray< double > > const & | basis () const |
Get array of all fields in basis format (const) | |
DArray< double > & | basis (int monomerId) |
Get the field for one monomer type in basis format (non-const). | |
DArray< double > const & | basis (int monomerId) const |
Get the field for one monomer type in basis format (const) | |
DArray< RField< D > > & | rgrid () |
Get array of all fields in r-grid format (non-const). | |
DArray< RField< D > > const & | rgrid () const |
Get array of all fields in r-grid format (const). | |
RField< D > & | rgrid (int monomerId) |
Get field for one monomer type in r-grid format (non-const) | |
RField< D > const & | rgrid (int monomerId) const |
Get field for one monomer type in r-grid format (const). | |
Boolean Queries | |
bool | isAllocatedRGrid () const |
Has memory been allocated for fields in r-grid format? | |
bool | isAllocatedBasis () const |
Has memory been allocated for fields in basis format? | |
A list of c fields stored in both basis and r-grid format.
A CFieldContainer<D> contains representations of a list of nMonomer fields that are associated with different monomer types in two different related formats:
Definition at line 40 of file rpc/field/CFieldContainer.h.
Pscf::Rpc::CFieldContainer< D >::CFieldContainer | ( | ) |
Constructor.
Definition at line 25 of file rpc/field/CFieldContainer.tpp.
Pscf::Rpc::CFieldContainer< D >::~CFieldContainer | ( | ) |
Destructor.
Definition at line 37 of file rpc/field/CFieldContainer.tpp.
void Pscf::Rpc::CFieldContainer< D >::setNMonomer | ( | int | nMonomer | ) |
Set stored value of nMonomer.
May only be called once.
nMonomer | number of monomer types. |
Definition at line 44 of file rpc/field/CFieldContainer.tpp.
References UTIL_CHECK.
void Pscf::Rpc::CFieldContainer< D >::allocateRGrid | ( | IntVec< D > const & | dimensions | ) |
Allocate or re-allocate memory for fields in rgrid format.
dimensions | dimensions of spatial mesh |
Definition at line 56 of file rpc/field/CFieldContainer.tpp.
References UTIL_CHECK.
void Pscf::Rpc::CFieldContainer< D >::deallocateRGrid | ( | ) |
De-allocate fields in rgrid format.
Definition at line 77 of file rpc/field/CFieldContainer.tpp.
References UTIL_CHECK.
void Pscf::Rpc::CFieldContainer< D >::allocateBasis | ( | int | nBasis | ) |
Allocate or re-allocate memory for fields in basis format.
nBasis | number of basis functions |
Definition at line 92 of file rpc/field/CFieldContainer.tpp.
References UTIL_CHECK.
void Pscf::Rpc::CFieldContainer< D >::deallocateBasis | ( | ) |
De-allocate fields in basis format.
Definition at line 113 of file rpc/field/CFieldContainer.tpp.
References UTIL_CHECK.
void Pscf::Rpc::CFieldContainer< D >::allocate | ( | int | nMonomer, |
int | nBasis, | ||
IntVec< D > const & | dimensions ) |
Allocate memory for both r-grid and basis field formats.
This function may only be called once.
nMonomer | number of monomer types |
nBasis | number of basis functions |
dimensions | dimensions of spatial mesh |
Definition at line 128 of file rpc/field/CFieldContainer.tpp.
|
inline |
Get array of all fields in basis format (non-const).
Definition at line 109 of file rpc/field/CFieldContainer.h.
|
inline |
Get array of all fields in basis format (const)
The array capacity is equal to the number of monomer types.
Definition at line 117 of file rpc/field/CFieldContainer.h.
|
inline |
Get the field for one monomer type in basis format (non-const).
monomerId | integer monomer type index (0, ... ,nMonomer-1) |
Definition at line 126 of file rpc/field/CFieldContainer.h.
|
inline |
Get the field for one monomer type in basis format (const)
monomerId | integer monomer type index (0, ... ,nMonomer-1) |
Definition at line 134 of file rpc/field/CFieldContainer.h.
|
inline |
Get array of all fields in r-grid format (non-const).
Definition at line 140 of file rpc/field/CFieldContainer.h.
|
inline |
Get array of all fields in r-grid format (const).
Definition at line 146 of file rpc/field/CFieldContainer.h.
|
inline |
Get field for one monomer type in r-grid format (non-const)
monomerId | integer monomer type index (0,..,nMonomer-1) |
Definition at line 154 of file rpc/field/CFieldContainer.h.
|
inline |
Get field for one monomer type in r-grid format (const).
monomerId | integer monomer type index (0,..,nMonomer-1) |
Definition at line 162 of file rpc/field/CFieldContainer.h.
|
inline |
Has memory been allocated for fields in r-grid format?
Definition at line 172 of file rpc/field/CFieldContainer.h.
|
inline |
Has memory been allocated for fields in basis format?
Definition at line 178 of file rpc/field/CFieldContainer.h.