![]() |
Reference documentation for deal.II version 9.1.1
|
#include <deal.II/lac/filtered_matrix.h>
Classes | |
| class | Accessor |
| class | const_iterator |
| struct | PairComparison |
Public Types | |
| using | size_type = types::global_dof_index |
| using | IndexValuePair = std::pair< size_type, double > |
Public Member Functions | |
Constructors and initialization | |
| FilteredMatrix () | |
| FilteredMatrix (const FilteredMatrix &fm) | |
| template<typename MatrixType > | |
| FilteredMatrix (const MatrixType &matrix, const bool expect_constrained_source=false) | |
| FilteredMatrix & | operator= (const FilteredMatrix &fm) |
| template<typename MatrixType > | |
| void | initialize (const MatrixType &m, const bool expect_constrained_source=false) |
| void | clear () |
Managing constraints | |
| void | add_constraint (const size_type i, const double v) |
| template<class ConstraintList > | |
| void | add_constraints (const ConstraintList &new_constraints) |
| void | clear_constraints () |
| void | apply_constraints (VectorType &v, const bool matrix_is_symmetric) const |
| void | apply_constraints (VectorType &v) const |
| void | vmult (VectorType &dst, const VectorType &src) const |
| void | Tvmult (VectorType &dst, const VectorType &src) const |
| void | vmult_add (VectorType &dst, const VectorType &src) const |
| void | Tvmult_add (VectorType &dst, const VectorType &src) const |
Public Member Functions inherited from Subscriptor | |
| Subscriptor () | |
| Subscriptor (const Subscriptor &) | |
| Subscriptor (Subscriptor &&) noexcept | |
| virtual | ~Subscriptor () |
| Subscriptor & | operator= (const Subscriptor &) |
| Subscriptor & | operator= (Subscriptor &&) noexcept |
| void | subscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| void | unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
| unsigned int | n_subscriptions () const |
| template<typename StreamType > | |
| void | list_subscribers (StreamType &stream) const |
| void | list_subscribers () const |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Iterators | |
| using | const_index_value_iterator = typename std::vector< IndexValuePair >::const_iterator |
| bool | expect_constrained_source |
| std::shared_ptr< PointerMatrixBase< VectorType > > | matrix |
| std::vector< IndexValuePair > | constraints |
| class | Accessor |
| class | FilteredMatrixBlock< VectorType > |
| const_iterator | begin () const |
| const_iterator | end () const |
| std::size_t | memory_consumption () const |
| void | pre_filter (VectorType &v) const |
| void | post_filter (const VectorType &in, VectorType &out) const |
Additional Inherited Members | |
Static Public Member Functions inherited from Subscriptor | |
| static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
| static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
This class is a wrapper for linear systems of equations with simple equality constraints fixing individual degrees of freedom to a certain value such as when using Dirichlet boundary values.
In order to accomplish this, the vmult(), Tvmult(), vmult_add() and Tvmult_add functions modify the same function of the original matrix such as if all constrained entries of the source vector were zero. Additionally, all constrained entries of the destination vector are set to zero.
Usage is simple: create an object of this type, point it to a matrix that shall be used for
above (either through the constructor, the copy constructor, or the set_referenced_matrix() function), specify the list of boundary values or other constraints (through the add_constraints() function), and then for each required solution modify the right hand side vector (through apply_constraints()) and use this object as matrix object in a linear solver. As linear solvers should only use vmult() and residual() functions of a matrix class, this class should be as good a matrix as any other for that purpose.
Furthermore, also the precondition_Jacobi() function is provided (since the computation of diagonal elements of the filtered matrix
is simple), so you can use this as a preconditioner. Some other functions useful for matrices are also available.
A typical code snippet showing the above steps is as follows:
The function MatrixTools::apply_boundary_values() does exactly the same that this class does, except for the fact that that function actually modifies the matrix. Consequently, it is only possible to solve with a matrix to which MatrixTools::apply_boundary_values() was applied for one right hand side and one set of boundary values since the modification of the right hand side depends on the original matrix.
While this is a feasible method in cases where only one solution of the linear system is required, for example in solving linear stationary systems, one would often like to have the ability to solve multiple times with the same matrix in nonlinear problems (where one often does not want to update the Hessian between Newton steps, despite having different right hand sides in subsequent steps) or time dependent problems, without having to re-assemble the matrix or copy it to temporary matrices with which one then can work. For these cases, this class is meant.
Mathematically speaking, it is used to represent a system of linear equations
with the constraint that
, where
is a rectangular matrix with exactly one
in each row, and these
s in those columns representing constrained degrees of freedom (e.g. for Dirichlet boundary nodes, thus the index
) and zeroes for all other diagonal entries, and
having the requested nodal values for these constrained nodes. Thus, the underdetermined equation
fixes only the constrained nodes and does not impose any condition on the others. We note that
, where
is the identity matrix with dimension as large as the number of constrained degrees of freedom. Likewise,
is the diagonal matrix with diagonal entries
or
that, when applied to a vector, leaves all constrained nodes untouched and deletes all unconstrained ones.
For solving such a system of equations, we first write down the Lagrangian
, where
is a Lagrange multiplier for the constraints. The stationarity condition then reads
The first equation then reads
. On the other hand, if we left-multiply the first equation by
, we obtain
after equating
to the identity matrix. Inserting the previous equality, this yields
. Since
, we can restate the linear system:
, where
is the matrix where all rows and columns corresponding to constrained nodes have been deleted.
The last system of equation only defines the value of the unconstrained nodes, while the constrained ones are determined by the equation
. We can combine these two linear systems by using the zeroed out rows of
: if we set the diagonal to
and the corresponding zeroed out element of the right hand side to that of
, then this fixes the constrained elements as well. We can write this as follows:
, where
. Note that the two parts of the latter matrix operate on disjoint subspaces (the first on the unconstrained nodes, the latter on the constrained ones).
In iterative solvers, it is not actually necessary to compute
explicitly, since only matrix-vector operations need to be performed. This can be done in a three-step procedure that first clears all elements in the incoming vector that belong to constrained nodes, then performs the product with the matrix
, then clears again. This class is a wrapper to this procedure, it takes a pointer to a matrix with which to perform matrix- vector products, and does the cleaning of constrained elements itself. This class therefore implements an overloaded vmult function that does the matrix-vector product, as well as Tvmult for transpose matrix-vector multiplication and residual for residual computation, and can thus be used as a matrix replacement in linear solvers.
It also has the ability to generate the modification of the right hand side, through the apply_constraints() function.
This class takes as template arguments a matrix and a vector class. The former must provide vmult, vmult_add, Tvmult, and residual member function that operate on the vector type (the second template argument). The latter template parameter must provide access to individual elements through operator(), assignment through operator=.
The functions that operate as a matrix and do not change the internal state of this object are synchronized and thus threadsafe. Consequently, you do not need to serialize calls to vmult or residual .
Definition at line 199 of file filtered_matrix.h.
1.8.16