Class to switch between storage types, based on a mesh and DOFs that are partitioned in:
More...
|
| VectorPartitioned (const array_type::tensor< size_t, 2 > &conn, const array_type::tensor< size_t, 2 > &dofs, const array_type::tensor< size_t, 1 > &iip) |
| Constructor.
|
|
size_t | nnu () const |
|
size_t | nnp () const |
|
const array_type::tensor< size_t, 1 > & | iiu () const |
|
const array_type::tensor< size_t, 1 > & | iip () const |
|
array_type::tensor< bool, 2 > | dofs_is_u () const |
| Per DOF (see Vector::dofs()) list if unknown ("u").
|
|
array_type::tensor< bool, 2 > | dofs_is_p () const |
| Per DOF (see Vector::dofs()) list if prescribed ("p").
|
|
array_type::tensor< double, 2 > | Copy_u (const array_type::tensor< double, 2 > &nodevec_src, const array_type::tensor< double, 2 > &nodevec_dest) const |
| Copy unknown DOFs from "nodevec" to another "nodvec":
|
|
void | copy_u (const array_type::tensor< double, 2 > &nodevec_src, array_type::tensor< double, 2 > &nodevec_dest) const |
| Copy unknown DOFs from "nodevec" to another "nodvec":
|
|
array_type::tensor< double, 2 > | Copy_p (const array_type::tensor< double, 2 > &nodevec_src, const array_type::tensor< double, 2 > &nodevec_dest) const |
| Copy prescribed DOFs from "nodevec" to another "nodvec":
|
|
void | copy_p (const array_type::tensor< double, 2 > &nodevec_src, array_type::tensor< double, 2 > &nodevec_dest) const |
| Copy prescribed DOFs from "nodevec" to another "nodvec":
|
|
array_type::tensor< double, 1 > | DofsFromParitioned (const array_type::tensor< double, 1 > &dofval_u, const array_type::tensor< double, 1 > &dofval_p) const |
| Combine unknown and prescribed "dofval" into a single "dofval" list.
|
|
void | dofsFromParitioned (const array_type::tensor< double, 1 > &dofval_u, const array_type::tensor< double, 1 > &dofval_p, array_type::tensor< double, 1 > &dofval) const |
| Combine unknown and prescribed "dofval" into a single "dofval" list.
|
|
array_type::tensor< double, 2 > | NodeFromPartitioned (const array_type::tensor< double, 1 > &dofval_u, const array_type::tensor< double, 1 > &dofval_p) const |
| Combine unknown and prescribed "dofval" into a single "dofval" list and directly convert to "nodeval" without a temporary (overwrite entries that occur more than once).
|
|
void | nodeFromPartitioned (const array_type::tensor< double, 1 > &dofval_u, const array_type::tensor< double, 1 > &dofval_p, array_type::tensor< double, 2 > &nodevec) const |
| Combine unknown and prescribed "dofval" into a single "dofval" list and directly convert to "nodeval" without a temporary (overwrite entries that occur more than once).
|
|
array_type::tensor< double, 3 > | ElementFromPartitioned (const array_type::tensor< double, 1 > &dofval_u, const array_type::tensor< double, 1 > &dofval_p) const |
| Combine unknown and prescribed "dofval" into a single "dofval" list and directly convert to "elemvec" without a temporary (overwrite entries that occur more than once).
|
|
void | elementFromPartitioned (const array_type::tensor< double, 1 > &dofval_u, const array_type::tensor< double, 1 > &dofval_p, array_type::tensor< double, 3 > &elemvec) const |
| Combine unknown and prescribed "dofval" into a single "dofval" list and directly convert to "elemvec" without a temporary (overwrite entries that occur more than once).
|
|
array_type::tensor< double, 1 > | AsDofs_u (const array_type::tensor< double, 1 > &dofval) const |
| Extract the unknown "dofval":
|
|
void | asDofs_u (const array_type::tensor< double, 1 > &dofval, array_type::tensor< double, 1 > &dofval_u) const |
| Extract the unknown "dofval":
|
|
array_type::tensor< double, 1 > | AsDofs_u (const array_type::tensor< double, 2 > &nodevec) const |
| Convert "nodevec" to "dofval" (overwrite entries that occur more than once) and extract the unknown "dofval" without a temporary.
|
|
void | asDofs_u (const array_type::tensor< double, 2 > &nodevec, array_type::tensor< double, 1 > &dofval_u) const |
| Convert "nodevec" to "dofval" (overwrite entries that occur more than once) and extract the unknown "dofval" without a temporary.
|
|
array_type::tensor< double, 1 > | AsDofs_u (const array_type::tensor< double, 3 > &elemvec) const |
| Convert "elemvec" to "dofval" (overwrite entries that occur more than once) and extract the unknown "dofval" without a temporary.
|
|
void | asDofs_u (const array_type::tensor< double, 3 > &elemvec, array_type::tensor< double, 1 > &dofval_u) const |
| Convert "elemvec" to "dofval" (overwrite entries that occur more than once) and extract the unknown "dofval" without a temporary.
|
|
array_type::tensor< double, 1 > | AsDofs_p (const array_type::tensor< double, 1 > &dofval) const |
| Extract the prescribed "dofval":
|
|
void | asDofs_p (const array_type::tensor< double, 1 > &dofval, array_type::tensor< double, 1 > &dofval_p) const |
| Extract the prescribed "dofval":
|
|
array_type::tensor< double, 1 > | AsDofs_p (const array_type::tensor< double, 2 > &nodevec) const |
| Convert "nodevec" to "dofval" (overwrite entries that occur more than once) and extract the prescribed "dofval" without a temporary.
|
|
void | asDofs_p (const array_type::tensor< double, 2 > &nodevec, array_type::tensor< double, 1 > &dofval_p) const |
| Convert "nodevec" to "dofval" (overwrite entries that occur more than once) and extract the prescribed "dofval" without a temporary.
|
|
array_type::tensor< double, 1 > | AsDofs_p (const array_type::tensor< double, 3 > &elemvec) const |
| Convert "elemvec" to "dofval" (overwrite entries that occur more than once) and extract the prescribed "dofval" without a temporary.
|
|
void | asDofs_p (const array_type::tensor< double, 3 > &elemvec, array_type::tensor< double, 1 > &dofval_p) const |
| Convert "elemvec" to "dofval" (overwrite entries that occur more than once) and extract the prescribed "dofval" without a temporary.
|
|
template<class S , class T > |
| Vector (const S &conn, const T &dofs) |
| Constructor.
|
|
size_t | nelem () const |
|
size_t | nne () const |
|
size_t | nnode () const |
|
size_t | ndim () const |
|
size_t | ndof () const |
|
const array_type::tensor< size_t, 2 > & | conn () const |
|
const array_type::tensor< size_t, 2 > & | dofs () const |
|
template<class T > |
T | Copy (const T &nodevec_src, const T &nodevec_dest) const |
| Copy "nodevec" to another "nodevec".
|
|
template<class T > |
void | copy (const T &nodevec_src, T &nodevec_dest) const |
| Copy "nodevec" to another "nodevec".
|
|
template<class T > |
array_type::tensor< double, 1 > | AsDofs (const T &arg) const |
| Convert "nodevec" or "elemvec" to "dofval" (overwrite entries that occur more than once).
|
|
template<class T , class R > |
void | asDofs (const T &arg, R &ret) const |
| Convert "nodevec" or "elemvec" to "dofval" (overwrite entries that occur more than once).
|
|
template<class T > |
array_type::tensor< double, 2 > | AsNode (const T &arg) const |
| Convert "dofval" or "elemvec" to "nodevec" (overwrite entries that occur more than once).
|
|
template<class T , class R > |
void | asNode (const T &arg, R &ret) const |
| Convert "dofval" or "elemvec" to "nodevec" (overwrite entries that occur more than once).
|
|
template<class T > |
array_type::tensor< double, 3 > | AsElement (const T &arg) const |
| Convert "dofval" or "nodevec" to "elemvec" (overwrite entries that occur more than once).
|
|
template<class T , class R > |
void | asElement (const T &arg, R &ret) const |
| Convert "dofval" or "nodevec" to "elemvec" (overwrite entries that occur more than once).
|
|
template<class T > |
array_type::tensor< double, 1 > | AssembleDofs (const T &arg) const |
| Assemble "nodevec" or "elemvec" to "dofval" (adds entries that occur more that once).
|
|
template<class T , class R > |
void | assembleDofs (const T &arg, R &ret) const |
| Assemble "nodevec" or "elemvec" to "dofval" (adds entries that occur more that once).
|
|
template<class T > |
array_type::tensor< double, 2 > | AssembleNode (const T &arg) const |
| Assemble "elemvec" to "nodevec" (adds entries that occur more that once.
|
|
template<class T , class R > |
void | assembleNode (const T &arg, R &ret) const |
| Assemble "elemvec" to "nodevec" (adds entries that occur more that once.
|
|
std::array< size_t, 1 > | shape_dofval () const |
| Shape of "dofval".
|
|
std::array< size_t, 2 > | shape_nodevec () const |
| Shape of "nodevec".
|
|
std::array< size_t, 3 > | shape_elemvec () const |
| Shape of "elemvec".
|
|
std::array< size_t, 3 > | shape_elemmat () const |
| Shape of "elemmat".
|
|
array_type::tensor< double, 1 > | allocate_dofval () const |
| Allocated "dofval".
|
|
array_type::tensor< double, 1 > | allocate_dofval (double val) const |
| Allocated and initialised "dofval".
|
|
array_type::tensor< double, 2 > | allocate_nodevec () const |
| Allocated "nodevec".
|
|
array_type::tensor< double, 2 > | allocate_nodevec (double val) const |
| Allocated and initialised "nodevec".
|
|
array_type::tensor< double, 3 > | allocate_elemvec () const |
| Allocated "elemvec".
|
|
array_type::tensor< double, 3 > | allocate_elemvec (double val) const |
| Allocated and initialised "elemvec".
|
|
array_type::tensor< double, 3 > | allocate_elemmat () const |
| Allocated "elemmat".
|
|
array_type::tensor< double, 3 > | allocate_elemmat (double val) const |
| Allocated and initialised "elemmat".
|
|
Class to switch between storage types, based on a mesh and DOFs that are partitioned in:
- unknown DOFs (iiu()), indicated with "u".
- prescribed DOFs (iip()), indicated with "p".
To this end some internal re-ordering of the DOFs has to be done, as follows:
iiu() -> arange(nnu())
iip() -> nnu() + arange(nnp())
which is relevant only if you interact using partitioned DOF-lists ("dofval_u" or "dofval_p").
The "dofval", "nodevec", and "elemvec" are all stored in the 'normal' order.
For reference:
- "dofval": DOF values [ndof].
- "dofval_u": unknown DOF values,
== dofval[iiu()]
, [nnu].
- "dofval_p": prescribed DOF values,
== dofval[iip()]
, [nnp].
- "nodevec": nodal vectors [nnode, ndim].
- "elemvec": nodal vectors stored per element [nelem, nne, ndim].
Definition at line 45 of file VectorPartitioned.h.