Reference documentation for deal.II version 9.6.0
|
#include <deal.II/meshworker/local_results.h>
Public Member Functions | |
unsigned int | n_values () const |
unsigned int | n_vectors () const |
unsigned int | n_matrices () const |
unsigned int | n_quadrature_points () const |
unsigned int | n_quadrature_values () const |
number & | value (const unsigned int i) |
number | value (const unsigned int i) const |
BlockVector< number > & | vector (const unsigned int i) |
const BlockVector< number > & | vector (const unsigned int i) const |
MatrixBlock< FullMatrix< number > > & | matrix (const unsigned int i, const bool external=false) |
const MatrixBlock< FullMatrix< number > > & | matrix (const unsigned int i, const bool external=false) const |
Table< 2, number > & | quadrature_values () |
number & | quadrature_value (const unsigned int k, const unsigned int i) |
number | quadrature_value (const unsigned int k, const unsigned int i) const |
void | initialize_numbers (const unsigned int n) |
void | initialize_vectors (const unsigned int n) |
void | initialize_matrices (const unsigned int n, bool both) |
template<typename MatrixType > | |
void | initialize_matrices (const MatrixBlockVector< MatrixType > &matrices, bool both) |
template<typename MatrixType > | |
void | initialize_matrices (const MGMatrixBlockVector< MatrixType > &matrices, bool both) |
void | initialize_quadrature (const unsigned int np, const unsigned int nv) |
void | reinit (const BlockIndices &local_sizes) |
template<typename StreamType > | |
void | print_debug (StreamType &os) const |
std::size_t | memory_consumption () const |
Private Attributes | |
std::vector< number > | J |
std::vector< BlockVector< number > > | R |
std::vector< MatrixBlock< FullMatrix< number > > > | M1 |
std::vector< MatrixBlock< FullMatrix< number > > > | M2 |
Table< 2, number > | quadrature_data |
The class providing the scrapbook to fill with results of local integration. Depending on the task the mesh worker loop is performing, local results can be of different types: They can be scalars, vectors of size equal to the number of degrees of freedom used in the integrals, or square matrices of that same size. All of these have in common that they are the result of local integration over a cell or face. Which kind of object is the result of an operation is determined by the Assembler using them. It is also the assembler that determines how many of each kind of object are produced (for example, an assembler may create both the local contributions to a mass and a stiffness matrix), and for setting the arrays of local results to the sizes needed.
The interface of this class allows accessing all of this information via the following functions:
Scalars: n_values() returns the number of scalars stored by an object of this class, and they are accessed via the value() function.
Vectors: n_vectors() returns the number of vectors stored by an object of this class (each vector has length equal to the number of degrees of freedom on this cell on which the integration happens). The vectors are accessed by the vector() function.
false
. These are matrices coupling degrees of freedom in the same cell. For fluxes across faces, there is an additional set of matrices of the same size, with the dimension of these matrices being according to the degrees of freedom on both cells. These are accessed with matrix(), using the second argument true
. The local matrices are initialized by reinit() of the info
object and then assembled into the global system by Assembler classes.
Definition at line 81 of file local_results.h.
|
inline |
The number of scalar values stored by the current object.
This number is set to a nonzero value by Assembler::CellsAndFaces
Definition at line 391 of file local_results.h.
|
inline |
The number of vectors stored by the current object.
This number is set to a nonzero value by Assembler::ResidualSimple and Assembler::ResidualLocalBlocksToGlobalBlocks.
Definition at line 399 of file local_results.h.
|
inline |
The number of matrices stored by the current object.
Definition at line 407 of file local_results.h.
|
inline |
The number of quadrature points in quadrature_values().
Definition at line 415 of file local_results.h.
|
inline |
The number of values in each quadrature point in quadrature_values().
Definition at line 423 of file local_results.h.
|
inline |
Read-write access to the i
th scalar stored by this class.
Definition at line 431 of file local_results.h.
|
inline |
Read access to the i
th scalar stored by this class.
Definition at line 480 of file local_results.h.
|
inline |
Read-write access to the i
th vector stored by this class
Definition at line 440 of file local_results.h.
|
inline |
Read-write access to the i
th vector stored by this class
Definition at line 489 of file local_results.h.
|
inline |
Read-write access to the i
th matrix stored by this class.
For an explanation of the second argument, see the documentation of the current class itself.
Definition at line 449 of file local_results.h.
|
inline |
Read access to the i
th matrix stored by this class.
For an explanation of the second argument, see the documentation of the current class itself.
Definition at line 498 of file local_results.h.
|
inline |
Access to the vector quadrature_data of data in quadrature points, organized such that there is a vector for each point, containing one entry for each component.
Definition at line 472 of file local_results.h.
|
inline |
Access the ith value at quadrature point k
Definition at line 463 of file local_results.h.
|
inline |
Read the ith value at quadrature point k
Definition at line 512 of file local_results.h.
|
inline |
Initialize the vector with scalar values.
Definition at line 292 of file local_results.h.
|
inline |
Initialize the vector with vector values.
Definition at line 300 of file local_results.h.
|
inline |
Allocate n
local matrices. Additionally, set their block row and column coordinates to zero. The matrices themselves are resized by reinit().
Definition at line 361 of file local_results.h.
|
inline |
Allocate a local matrix for each of the global ones in matrices
. Additionally, set their block row and column coordinates. The matrices themselves are resized by reinit().
Definition at line 309 of file local_results.h.
|
inline |
Allocate a local matrix for each of the global level objects in matrices
. Additionally, set their block row and column coordinates. The matrices themselves are resized by reinit().
Definition at line 335 of file local_results.h.
|
inline |
Initialize quadrature values to nv
values in np
quadrature points.
Definition at line 382 of file local_results.h.
void MeshWorker::LocalResults< number >::reinit | ( | const BlockIndices & | local_sizes | ) |
Reinitialize matrices for new cell. Does not resize any of the data vectors stored in this object, but resizes the vectors in R and the matrices in M1 and M2 for hp and sets them to zero.
Definition at line 27 of file mesh_worker.cc.
void MeshWorker::LocalResults< number >::print_debug | ( | StreamType & | os | ) | const |
Definition at line 522 of file local_results.h.
std::size_t MeshWorker::LocalResults< number >::memory_consumption | ( | ) | const |
The memory used by this object.
Definition at line 45 of file mesh_worker.cc.
|
private |
The local numbers, computed on a cell or on a face.
Definition at line 260 of file local_results.h.
|
private |
The local vectors. This field is public, so that local integrators can write to it.
Definition at line 266 of file local_results.h.
|
private |
The local matrices coupling degrees of freedom in the cell itself or within the first cell on a face.
Definition at line 272 of file local_results.h.
|
private |
The local matrices coupling test functions on the cell with trial functions on the other cell.
Only used on interior faces.
Definition at line 280 of file local_results.h.
|
private |
Values in quadrature points for writing into patch data.
Definition at line 285 of file local_results.h.