![]() |
Reference documentation for deal.II version 8.1.0
|
#include <solver_cg.h>
Classes | |
struct | AdditionalData |
Public Types | |
typedef types::global_dof_index | size_type |
Public Member Functions | |
SolverCG (SolverControl &cn, VectorMemory< VECTOR > &mem, const AdditionalData &data=AdditionalData()) | |
SolverCG (SolverControl &cn, const AdditionalData &data=AdditionalData()) | |
virtual | ~SolverCG () |
template<class MATRIX , class PRECONDITIONER > | |
void | solve (const MATRIX &A, VECTOR &x, const VECTOR &b, const PRECONDITIONER &precondition) |
![]() | |
Solver (SolverControl &solver_control, VectorMemory< VECTOR > &vector_memory) | |
Solver (SolverControl &solver_control) | |
SolverControl & | control () const |
![]() | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
void | subscribe (const char *identifier=0) const |
void | unsubscribe (const char *identifier=0) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.") | |
DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1) | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Protected Member Functions | |
virtual double | criterion () |
virtual void | print_vectors (const unsigned int step, const VECTOR &x, const VECTOR &r, const VECTOR &d) const |
Protected Attributes | |
VECTOR * | Vr |
VECTOR * | Vp |
VECTOR * | Vz |
double | res2 |
AdditionalData | additional_data |
![]() | |
GrowingVectorMemory< VECTOR > | static_vector_memory |
SolverControl & | cntrl |
VectorMemory< VECTOR > & | memory |
Private Member Functions | |
void | cleanup () |
Preconditioned cg method for symmetric positive definite matrices.
For the requirements on matrices and vectors in order to work with this class, see the documentation of the Solver base class.
Like all other solver classes, this class has a local structure called AdditionalData
which is used to pass additional parameters to the solver. For this class, there is (among other things) a switch allowing for additional output for the computation of eigenvalues of the matrix.
See Y. Saad: "Iterative methods for Sparse Linear Systems", section 6.7.3 for details.
The cg-method performs an orthogonal projection of the original preconditioned linear system to another system of smaller dimension. Furthermore, the projected matrix T
is tri-diagonal. Since the projection is orthogonal, the eigenvalues of T
approximate those of the original preconditioned matrix PA
. In fact, after n
steps, where n
is the dimension of the original system, the eigenvalues of both matrices are equal. But, even for small numbers of iteration steps, the condition number of T
is a good estimate for the one of PA
.
With the coefficients alpha
and beta
written to the log file if AdditionalData::log_coefficients = true
, the matrix T_m
after m
steps is the tri-diagonal matrix with diagonal elements 1/alpha_0
, 1/alpha_1 + beta_0/alpha_0
, ..., 1/alpha_{m-1
+beta_{m-2}/alpha_{m-2}} and off-diagonal elements sqrt(beta_0)/alpha_0
, ..., sqrt(beta_{m-2
)/alpha_{m-2}}. The eigenvalues of this matrix can be computed by postprocessing.
This version of CG is taken from Braess: "Finite Elements". It requires a symmetric preconditioner, i.e. SOR is not feasible.
Definition at line 80 of file solver_cg.h.
typedef types::global_dof_index SolverCG< VECTOR >::size_type |
Declare type for container size.
Definition at line 86 of file solver_cg.h.
SolverCG< VECTOR >::SolverCG | ( | SolverControl & | cn, |
VectorMemory< VECTOR > & | mem, | ||
const AdditionalData & | data = AdditionalData() |
||
) |
Constructor.
SolverCG< VECTOR >::SolverCG | ( | SolverControl & | cn, |
const AdditionalData & | data = AdditionalData() |
||
) |
Constructor. Use an object of type GrowingVectorMemory as a default to allocate memory.
Virtual destructor.
void SolverCG< VECTOR >::solve | ( | const MATRIX & | A, |
VECTOR & | x, | ||
const VECTOR & | b, | ||
const PRECONDITIONER & | precondition | ||
) |
Solve the linear system for x.
|
protectedvirtual |
Implementation of the computation of the norm of the residual. This can be replaced by a more problem oriented functional in a derived class.
|
protectedvirtual |
Interface for derived class. This function gets the current iteration vector, the residual and the update vector in each step. It can be used for a graphical output of the convergence history.
|
protected |
Temporary vectors, allocated through the VectorMemory
object at the start of the actual solution process and deallocated at the end.
Definition at line 198 of file solver_cg.h.
Within the iteration loop, the square of the residual vector is stored in this variable. The function criterion
uses this variable to compute the convergence value, which in this class is the norm of the residual vector and thus the square root of the res2
value.
Definition at line 212 of file solver_cg.h.
|
protected |
Additional parameters.
Definition at line 217 of file solver_cg.h.