Reference documentation for deal.II version 9.6.0
|
#include <deal.II/meshworker/dof_info.h>
Public Member Functions | |
DoFInfo (const BlockInfo &block_info) | |
DoFInfo (const DoFHandler< dim, spacedim > &dof_handler) | |
template<class DHCellIterator > | |
void | reinit (const DHCellIterator &c) |
template<class DHCellIterator , class DHFaceIterator > | |
void | reinit (const DHCellIterator &c, const DHFaceIterator &f, const unsigned int face_no) |
template<class DHCellIterator , class DHFaceIterator > | |
void | reinit (const DHCellIterator &c, const DHFaceIterator &f, const unsigned int face_no, const unsigned int subface_no) |
template<class DHFaceIterator > | |
void | set_face (const DHFaceIterator &f, const unsigned int face_no) |
template<class DHFaceIterator > | |
void | set_subface (const DHFaceIterator &f, const unsigned int face_no, const unsigned int subface_no) |
const BlockIndices & | local_indices () const |
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 |
double & | value (const unsigned int i) |
double | value (const unsigned int i) const |
BlockVector< double > & | vector (const unsigned int i) |
const BlockVector< double > & | vector (const unsigned int i) const |
MatrixBlock< FullMatrix< double > > & | matrix (const unsigned int i, const bool external=false) |
const MatrixBlock< FullMatrix< double > > & | matrix (const unsigned int i, const bool external=false) const |
Table< 2, double > & | quadrature_values () |
double & | quadrature_value (const unsigned int k, const unsigned int i) |
double | 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) |
void | initialize_matrices (const MatrixBlockVector< MatrixType > &matrices, bool both) |
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) |
void | print_debug (StreamType &os) const |
std::size_t | memory_consumption () const |
Public Attributes | |
Triangulation< dim, spacedim >::cell_iterator | cell |
The current cell. | |
Triangulation< dim, spacedim >::face_iterator | face |
The current face. | |
unsigned int | face_number |
unsigned int | sub_number |
std::vector< types::global_dof_index > | indices |
std::vector< std::vector< types::global_dof_index > > | indices_by_block |
SmartPointer< const BlockInfo, DoFInfo< dim, spacedim > > | block_info |
The block structure of the system. | |
bool | level_cell |
Private Member Functions | |
DoFInfo () | |
void | set_block_indices () |
Set up local block indices. | |
template<class DHCellIterator > | |
void | get_indices (const DHCellIterator &c) |
Fill index vector with active indices. | |
Private Attributes | |
std::vector< types::global_dof_index > | indices_org |
Auxiliary vector. | |
BlockIndices | aux_local_indices |
std::vector< double > | J |
std::vector< BlockVector< double > > | R |
std::vector< MatrixBlock< FullMatrix< double > > > | M1 |
std::vector< MatrixBlock< FullMatrix< double > > > | M2 |
Table< 2, double > | quadrature_data |
Friends | |
class | DoFInfoBox< dim, DoFInfo< dim, spacedim, number > > |
A class containing information on geometry and degrees of freedom of a mesh object.
The information in these objects is usually used by one of the Assembler classes. It is also the kind of information which is needed in mesh based matrices (often referred to as matrix free methods).
In addition to the information on degrees of freedom stored in this class, it also provides the local computation space for the worker object operating on it in LocalResults. This base class will automatically be reinitialized on each cell, but initial setup is up to the user and should be done when initialize() for this class is called.
This class operates in two different modes, corresponding to the data models discussed in the Assembler namespace documentation.
The choice of the local data model is triggered by the vector BlockInfo::local_renumbering, which in turn is usually filled by BlockInfo::initialize_local(). If this function has been used, or the vector has been changed from zero-length, then local dof indices stored in this object will automatically be renumbered to reflect local block structure. This means, the first entries in indices
will refer to the first block of the system, then comes the second block and so on.
The BlockInfo object is stored as a pointer. Therefore, if the block structure changes, for instance because of mesh refinement, the DoFInfo class will automatically use the new structures.
Definition at line 74 of file dof_info.h.
MeshWorker::DoFInfo< dim, spacedim, number >::DoFInfo | ( | const BlockInfo & | block_info | ) |
Constructor setting the block_info pointer.
MeshWorker::DoFInfo< dim, spacedim, number >::DoFInfo | ( | const DoFHandler< dim, spacedim > & | dof_handler | ) |
Constructor leaving the block_info pointer empty, but setting the aux_local_indices.
Definition at line 299 of file dof_info.h.
|
private |
Standard constructor, not setting any block indices. Use of this constructor is not recommended, but it is needed for the arrays in DoFInfoBox.
Definition at line 290 of file dof_info.h.
|
inline |
Set the current cell and fill indices
.
Definition at line 331 of file dof_info.h.
|
inline |
Set the current face and fill indices
if the cell changed.
Definition at line 361 of file dof_info.h.
|
inline |
Set the current subface and fill indices
if the cell changed.
Definition at line 396 of file dof_info.h.
|
inline |
Switch to a new face of the same cell. Does not change indices
and does not reset data in LocalResults.
Definition at line 349 of file dof_info.h.
|
inline |
Switch to a new subface of the same cell. Does not change indices
and does not reset data in LocalResults.
Definition at line 383 of file dof_info.h.
|
inline |
Definition at line 419 of file dof_info.h.
|
private |
Set up local block indices.
|
inlineprivate |
Fill index vector with active indices.
Definition at line 314 of file dof_info.h.
|
inlineinherited |
The number of scalar values stored by the current object.
This number is set to a nonzero value by Assembler::CellsAndFaces
Definition at line 90 of file local_results.h.
|
inlineinherited |
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 99 of file local_results.h.
|
inlineinherited |
The number of matrices stored by the current object.
Definition at line 105 of file local_results.h.
|
inlineinherited |
The number of quadrature points in quadrature_values().
Definition at line 111 of file local_results.h.
|
inlineinherited |
The number of values in each quadrature point in quadrature_values().
Definition at line 117 of file local_results.h.
|
inlineinherited |
Read-write access to the i
th scalar stored by this class.
Definition at line 123 of file local_results.h.
|
inlineinherited |
Read access to the i
th scalar stored by this class.
Definition at line 129 of file local_results.h.
|
inlineinherited |
Read-write access to the i
th vector stored by this class
Definition at line 135 of file local_results.h.
|
inlineinherited |
Read-write access to the i
th vector stored by this class
Definition at line 141 of file local_results.h.
|
inlineinherited |
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 150 of file local_results.h.
|
inlineinherited |
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 159 of file local_results.h.
|
inlineinherited |
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 167 of file local_results.h.
|
inlineinherited |
Access the ith value at quadrature point k
Definition at line 173 of file local_results.h.
|
inlineinherited |
Read the ith value at quadrature point k
Definition at line 179 of file local_results.h.
|
inlineinherited |
Initialize the vector with scalar values.
Definition at line 187 of file local_results.h.
|
inlineinherited |
Initialize the vector with vector values.
Definition at line 195 of file local_results.h.
|
inlineinherited |
Allocate n
local matrices. Additionally, set their block row and column coordinates to zero. The matrices themselves are resized by reinit().
Definition at line 205 of file local_results.h.
|
inlineinherited |
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 216 of file local_results.h.
|
inlineinherited |
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 228 of file local_results.h.
|
inlineinherited |
Initialize quadrature values to nv
values in np
quadrature points.
Definition at line 236 of file local_results.h.
|
inherited |
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 244 of file mesh_worker.cc.
|
inherited |
Definition at line 248 of file local_results.h.
|
inherited |
The memory used by this object.
Definition at line 254 of file mesh_worker.cc.
|
friend |
Definition at line 203 of file dof_info.h.
Triangulation<dim,spacedim>::cell_iterator MeshWorker::DoFInfo< dim, spacedim, number >::cell |
The current cell.
Definition at line 78 of file dof_info.h.
Triangulation<dim,spacedim>::face_iterator MeshWorker::DoFInfo< dim, spacedim, number >::face |
The current face.
Definition at line 81 of file dof_info.h.
unsigned int MeshWorker::DoFInfo< dim, spacedim, number >::face_number |
The number of the current face on the current cell.
This number is numbers::invalid_unsigned_int if the info
object was initialized with a cell.
Definition at line 89 of file dof_info.h.
unsigned int MeshWorker::DoFInfo< dim, spacedim, number >::sub_number |
The number of the current subface on the current face
This number is numbers::invalid_unsigned_int if the info
object was not initialized with a subface.
Definition at line 97 of file dof_info.h.
std::vector<types::global_dof_index> MeshWorker::DoFInfo< dim, spacedim, number >::indices |
The DoF indices of the current cell
Definition at line 103 of file dof_info.h.
std::vector<std::vector<types::global_dof_index> > MeshWorker::DoFInfo< dim, spacedim, number >::indices_by_block |
The DoF indices on the current cell, organized by local blocks. The size of this vector is zero, unless local blocks are used.
Definition at line 109 of file dof_info.h.
SmartPointer<const BlockInfo, DoFInfo<dim, spacedim> > MeshWorker::DoFInfo< dim, spacedim, number >::block_info |
The block structure of the system.
Definition at line 171 of file dof_info.h.
bool MeshWorker::DoFInfo< dim, spacedim, number >::level_cell |
The structure refers to a cell with level data instead of active data.
Definition at line 176 of file dof_info.h.
|
private |
Auxiliary vector.
Definition at line 196 of file dof_info.h.
|
private |
An auxiliary local BlockIndices object created if block_info is not set. It contains just a single block of the size of degrees of freedom per cell.
Definition at line 203 of file dof_info.h.
|
privateinherited |
The local numbers, computed on a cell or on a face.
Definition at line 260 of file local_results.h.
|
privateinherited |
The local vectors. This field is public, so that local integrators can write to it.
Definition at line 266 of file local_results.h.
|
privateinherited |
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.
|
privateinherited |
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.
|
privateinherited |
Values in quadrature points for writing into patch data.
Definition at line 285 of file local_results.h.