Reference documentation for deal.II version 9.0.0
|
#include <deal.II/lac/petsc_precondition.h>
Public Member Functions | |
PreconditionerBase () | |
virtual | ~PreconditionerBase () |
void | clear () |
void | vmult (VectorBase &dst, const VectorBase &src) const |
const PC & | get_pc () const |
Protected Member Functions | |
void | create_pc () |
operator Mat () const | |
Protected Attributes | |
PC | pc |
Mat | matrix |
Friends | |
class | SolverBase |
Base class for preconditioner classes using the PETSc functionality. The classes in this hierarchy don't do a whole lot, except for providing a function that sets the preconditioner and certain parameters on the preconditioning context of the solver. These classes are basically here only to allow a similar interface as already used for the deal.II solver and preconditioner classes.
Note that derived classes only provide interfaces to the relevant functionality of PETSc. PETSc does not implement all preconditioners for all matrix types. In particular, some preconditioners are not going to work for parallel jobs, such as for example the ILU preconditioner.
Definition at line 55 of file petsc_precondition.h.
PETScWrappers::PreconditionerBase::PreconditionerBase | ( | ) |
Constructor.
Definition at line 33 of file petsc_precondition.cc.
|
virtual |
Destructor.
Definition at line 38 of file petsc_precondition.cc.
void PETScWrappers::PreconditionerBase::clear | ( | ) |
Destroys the preconditioner, leaving an object like just after having called the constructor.
Definition at line 49 of file petsc_precondition.cc.
void PETScWrappers::PreconditionerBase::vmult | ( | VectorBase & | dst, |
const VectorBase & | src | ||
) | const |
Apply the preconditioner once to the given src vector.
Definition at line 63 of file petsc_precondition.cc.
const PC & PETScWrappers::PreconditionerBase::get_pc | ( | ) | const |
Give access to the underlying PETSc object.
Definition at line 101 of file petsc_precondition.cc.
|
protected |
Internal function to create the PETSc preconditioner object. Fails if called twice.
Definition at line 74 of file petsc_precondition.cc.
|
protected |
Conversion operator to get a representation of the matrix that represents this preconditioner. We use this inside the actual solver, where we need to pass this matrix to the PETSc solvers.
Definition at line 107 of file petsc_precondition.cc.
|
friend |
Make the solver class a friend, since it needs to call the conversion operator.
Definition at line 114 of file petsc_precondition.h.
|
protected |
the PETSc preconditioner object
Definition at line 90 of file petsc_precondition.h.
|
protected |
A pointer to the matrix that acts as a preconditioner.
Definition at line 95 of file petsc_precondition.h.