Reference documentation for deal.II version 8.5.1
Public Types | Public Member Functions | List of all members
MatrixBlockVector< MatrixType > Class Template Reference

#include <deal.II/lac/matrix_block.h>

Inheritance diagram for MatrixBlockVector< MatrixType >:
[legend]

Public Types

typedef types::global_dof_index size_type
 
typedef MatrixBlock< MatrixType > value_type
 
typedef std_cxx11::shared_ptr< value_typeptr_type
 

Public Member Functions

void add (size_type row, size_type column, const std::string &name)
 
void reinit (const BlockSparsityPattern &sparsity)
 
void clear (bool really_clean=false)
 
std::size_t memory_consumption () const
 
const value_typeblock (size_type i) const
 
value_typeblock (size_type i)
 
MatrixType & matrix (size_type i)
 
unsigned int size () const
 Number of stored data objects.
 
const std::string & name (const unsigned int i) const
 Name of object at index.
 

Additional Inherited Members

- Private Member Functions inherited from AnyData
 AnyData ()
 Default constructor for empty object.
 
unsigned int size () const
 Number of stored data objects.
 
template<typename type >
void add (type entry, const std::string &name)
 Add a new data object.
 
void merge (const AnyData &other)
 Merge the data of another AnyData to the end of this object.
 
template<typename type >
type entry (const std::string &name)
 Access to stored data object by name. More...
 
template<typename type >
const type entry (const std::string &name) const
 Read-only access to stored data object by name. More...
 
template<typename type >
const type read (const std::string &name) const
 Dedicated read only access by name. More...
 
template<typename type >
const type * read_ptr (const std::string &name) const
 Dedicated read only access by name for pointer data. More...
 
template<typename type >
const type * try_read_ptr (const std::string &name) const
 
template<typename type >
const type * try_read (const std::string &name) const
 Dedicated read only access by name without exceptions. More...
 
template<typename type >
type entry (const unsigned int i)
 
template<typename type >
const type entry (const unsigned int i) const
 Read-only access to stored data object by index.
 
template<typename type >
const type read (const unsigned int i) const
 Dedicated read only access.
 
template<typename type >
const type * read_ptr (const unsigned int i) const
 Dedicated read only access to pointer object.
 
template<typename type >
const type * try_read_ptr (const unsigned int i) const
 Dedicated read only access to pointer object without exception.
 
template<typename type >
const type * try_read (const unsigned int i) const
 Dedicated read only access without exception.
 
const std::string & name (const unsigned int i) const
 Name of object at index.
 
unsigned int find (const std::string &name) const
 Find index of a named object. More...
 
unsigned int try_find (const std::string &name) const
 Try to find index of a named object. More...
 
template<typename type >
bool is_type (const unsigned int i) const
 Find out if object is of a certain type.
 
template<class StreamType >
void list (StreamType &os) const
 List the contents to a stream.
 
- Private Member Functions inherited from Subscriptor
 Subscriptor ()
 
 Subscriptor (const Subscriptor &)
 
 Subscriptor (Subscriptor &&)
 
virtual ~Subscriptor ()
 
Subscriptoroperator= (const Subscriptor &)
 
Subscriptoroperator= (Subscriptor &&)
 
void subscribe (const char *identifier=0) const
 
void unsubscribe (const char *identifier=0) const
 
unsigned int n_subscriptions () const
 
void list_subscribers () const
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 
- Static Private Member Functions inherited from AnyData
static ::ExceptionBaseExcNameNotFound (std::string arg1)
 An entry with this name does not exist in the AnyData object. More...
 
static ::ExceptionBaseExcTypeMismatch (char *arg1, char *arg2)
 The requested type and the stored type are different. More...
 
static ::ExceptionBaseExcNameMismatch (int arg1, std::string arg2)
 
- Static Private Member Functions inherited from Subscriptor
static ::ExceptionBaseExcInUse (int arg1, char *arg2, std::string &arg3)
 
static ::ExceptionBaseExcNoSubscriber (char *arg1, char *arg2)
 

Detailed Description

template<typename MatrixType>
class MatrixBlockVector< MatrixType >

A vector of MatrixBlock, which is implemented using shared pointers, in order to allow for copying and rearranging. Each matrix block can be identified by name.

Author
Baerbel Janssen, Guido Kanschat, 2010

Definition at line 328 of file matrix_block.h.

Member Typedef Documentation

◆ size_type

template<typename MatrixType>
typedef types::global_dof_index MatrixBlockVector< MatrixType >::size_type

Declare type for container size.

Definition at line 336 of file matrix_block.h.

◆ value_type

template<typename MatrixType>
typedef MatrixBlock<MatrixType> MatrixBlockVector< MatrixType >::value_type

The type of object stored.

Definition at line 341 of file matrix_block.h.

◆ ptr_type

template<typename MatrixType>
typedef std_cxx11::shared_ptr<value_type> MatrixBlockVector< MatrixType >::ptr_type

The pointer type used for storing the objects. We use a shard pointer, such that they get deleted automatically when not used anymore.

Definition at line 347 of file matrix_block.h.

Member Function Documentation

◆ add()

template<typename MatrixType >
void MatrixBlockVector< MatrixType >::add ( size_type  row,
size_type  column,
const std::string &  name 
)
inline

Add a new matrix block at the position (row,column) in the block system.

Definition at line 822 of file matrix_block.h.

◆ reinit()

template<typename MatrixType >
void MatrixBlockVector< MatrixType >::reinit ( const BlockSparsityPattern sparsity)
inline

For matrices using a SparsityPattern, this function reinitializes each matrix in the vector with the correct pattern from the block system.

Definition at line 833 of file matrix_block.h.

◆ clear()

template<typename MatrixType >
void MatrixBlockVector< MatrixType >::clear ( bool  really_clean = false)
inline

Clear the object.

Since often only clearing of the individual matrices is desired, but not removing the blocks themselves, there is an optional argument. If the argument is missing or false, all matrices will be empty, but the size of this object and the block positions will not change. If really_clean is true, then the object will contain no blocks at the end.

Definition at line 844 of file matrix_block.h.

◆ memory_consumption()

template<typename MatrixType>
std::size_t MatrixBlockVector< MatrixType >::memory_consumption ( ) const

The memory used by this object.

◆ block() [1/2]

template<typename MatrixType >
const MatrixBlock< MatrixType > & MatrixBlockVector< MatrixType >::block ( size_type  i) const
inline

Access a constant reference to the block at position i.

Definition at line 861 of file matrix_block.h.

◆ block() [2/2]

template<typename MatrixType >
MatrixBlock< MatrixType > & MatrixBlockVector< MatrixType >::block ( size_type  i)
inline

Access a reference to the block at position i.

Definition at line 869 of file matrix_block.h.

◆ matrix()

template<typename MatrixType >
MatrixType & MatrixBlockVector< MatrixType >::matrix ( size_type  i)
inline

Access the matrix at position i for read and write access.

Definition at line 877 of file matrix_block.h.


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