DOpE
richardsonlinearsolver.h
Go to the documentation of this file.
1 
24 #ifndef RICHARDSON_LINEAR_SOLVER_H_
25 #define RICHARDSON_LINEAR_SOLVER_H_
26 
27 #include <deal.II/lac/vector.h>
28 #include <deal.II/lac/block_sparsity_pattern.h>
29 #include <deal.II/lac/block_sparse_matrix.h>
30 #include <deal.II/lac/compressed_simple_sparsity_pattern.h>
31 #include <deal.II/lac/solver_richardson.h>
32 #include <deal.II/lac/precondition.h>
33 #include <deal.II/lac/full_matrix.h>
34 
35 #include <deal.II/dofs/dof_tools.h>
36 
37 #include <deal.II/numerics/vector_tools.h>
38 
39 #include <vector>
40 
41 namespace DOpE
42 {
43 
56  template <typename PRECONDITIONER, typename SPARSITYPATTERN, typename MATRIX, typename VECTOR>
58  {
59  public:
62 
63  static void declare_params(ParameterReader &param_reader);
64 
69  template<typename PROBLEM>
70  void ReInit(PROBLEM& pde);
71 
90  template<typename PROBLEM, typename INTEGRATOR>
91  void Solve(PROBLEM& pde,INTEGRATOR& integr, VECTOR &rhs, VECTOR &solution, bool force_matrix_build=false);
92 
93  protected:
94 
95  private:
96  SPARSITYPATTERN sparsity_pattern_;
97  MATRIX matrix_;
98 
99  double linear_global_tol_, linear_tol_;
100  int linear_maxiter_;
101  };
102 
103 /*********************************Implementation************************************************/
104 
105 template <typename PRECONDITIONER,typename SPARSITYPATTERN, typename MATRIX, typename VECTOR>
107  {
108  param_reader.SetSubsection("richardsonwithmatrix parameters");
109  param_reader.declare_entry("linear_global_tol", "1.e-10",Patterns::Double(0),"global tolerance for the richardson iteration");
110  param_reader.declare_entry("linear_maxiter", "1000",Patterns::Integer(0),"maximal number of richardson steps");
111  }
112 /******************************************************/
113 
114  template <typename PRECONDITIONER,typename SPARSITYPATTERN, typename MATRIX, typename VECTOR>
117 {
118  param_reader.SetSubsection("richardsonwithmatrix parameters");
119  linear_global_tol_ = param_reader.get_double ("linear_global_tol");
120  linear_maxiter_ = param_reader.get_integer ("linear_maxiter");
121 }
122 
123 /******************************************************/
124 
125 template <typename PRECONDITIONER,typename SPARSITYPATTERN, typename MATRIX, typename VECTOR>
127 {
128 }
129 
130 /******************************************************/
131 
132 template <typename PRECONDITIONER,typename SPARSITYPATTERN, typename MATRIX, typename VECTOR>
133  template<typename PROBLEM>
135 {
136  matrix_.clear();
137  pde.ComputeSparsityPattern(sparsity_pattern_);
138  matrix_.reinit(sparsity_pattern_);
139 }
140 
141 /******************************************************/
142 
143 template <typename PRECONDITIONER,typename SPARSITYPATTERN, typename MATRIX, typename VECTOR>
144  template<typename PROBLEM, typename INTEGRATOR>
146  INTEGRATOR& integr,
147  VECTOR &rhs,
148  VECTOR &solution,
149  bool force_matrix_build)
150 {
151  if(force_matrix_build)
152  {
153  integr.ComputeMatrix (pde,matrix_);
154  }
155 
156  integr.ApplyNewtonBoundaryValues(pde,matrix_,rhs,solution);
157 
158  dealii::SolverControl solver_control (linear_maxiter_, linear_global_tol_,false,false);
159 
160  dealii::SolverRichardson<VECTOR> richardson(solver_control);
161  PRECONDITIONER precondition;
162  precondition.initialize(matrix_);
163  richardson.solve (matrix_, solution, rhs,
164  precondition);
165 
166  pde.GetDoFConstraints().distribute(solution);
167 }
168 
169 
170 }
171 #endif
void ReInit(PROBLEM &pde)
Definition: richardsonlinearsolver.h:134
double get_double(const std::string &entry_name)
Definition: parameterreader.h:115
Definition: parameterreader.h:36
void declare_entry(const std::string &entry, const std::string &default_value, const Patterns::PatternBase &pattern=Patterns::Anything(), const std::string &documentation=std::string())
Definition: parameterreader.h:98
void Solve(PROBLEM &pde, INTEGRATOR &integr, VECTOR &rhs, VECTOR &solution, bool force_matrix_build=false)
Definition: richardsonlinearsolver.h:145
RichardsonLinearSolverWithMatrix(ParameterReader &param_reader)
Definition: richardsonlinearsolver.h:116
~RichardsonLinearSolverWithMatrix()
Definition: richardsonlinearsolver.h:126
Definition: richardsonlinearsolver.h:57
int get_integer(const std::string &entry_name)
Definition: parameterreader.h:126
static void declare_params(ParameterReader &param_reader)
Definition: richardsonlinearsolver.h:106
void SetSubsection(const std::string subsection)
Definition: parameterreader.h:93