16 #ifndef dealii_solver_control_h 17 #define dealii_solver_control_h 20 #include <deal.II/base/config.h> 22 #include <deal.II/base/subscriptor.h> 26 DEAL_II_NAMESPACE_OPEN
108 <<
"Iterative method reported convergence failure in step " <<
last_step 109 <<
". The residual in the last step was " <<
last_residual <<
".\n\n" 110 <<
"This error message can indicate that you have simply not allowed " 111 <<
"a sufficiently large number of iterations for your iterative solver " 112 <<
"to converge. This often happens when you increase the size of your " 113 <<
"problem. In such cases, the last residual will likely still be very " 114 <<
"small, and you can make the error go away by increasing the allowed " 115 <<
"number of iterations when setting up the SolverControl object that " 116 <<
"determines the maximal number of iterations you allow." 118 <<
"The other situation where this error may occur is when your matrix " 119 <<
"is not invertible (e.g., your matrix has a null-space), or if you " 120 <<
"try to apply the wrong solver to a matrix (e.g., using CG for a " 121 <<
"matrix that is not symmetric or not positive definite). In these " 122 <<
"cases, the residual in the last iteration is likely going to be large." 151 const double tol = 1.e-10,
191 check(
const unsigned int step,
const double check_value);
266 const std::vector<double> &
435 const double reduce = 1.e-2,
476 check(
const unsigned int step,
const double check_value)
override;
553 check(
const unsigned int step,
const double check_value)
override;
610 check(
const unsigned int step,
const double check_value)
override;
730 DEAL_II_NAMESPACE_CLOSE
virtual State check(const unsigned int step, const double check_value) override
double initial_value() const
Stop iteration, goal not reached.
virtual ~IterationNumberControl() override=default
const double last_residual
virtual State check(const unsigned int step, const double check_value)
bool history_data_enabled
const std::vector< double > & get_history_data() const
static void declare_parameters(ParameterHandler ¶m)
unsigned int n_consecutive_iterations
double step_reduction(unsigned int step) const
double final_reduction() const
void parse_parameters(ParameterHandler ¶m)
ConsecutiveControl(const unsigned int maxiter=100, const double tolerance=1.e-10, const unsigned int n_consecutive_iterations=2, const bool log_history=false, const bool log_result=false)
void clear_failure_criterion()
ConsecutiveControl & operator=(const SolverControl &c)
IterationNumberControl & operator=(const SolverControl &c)
virtual State check(const unsigned int step, const double check_value) override
static void declare_parameters(ParameterHandler ¶m)
const unsigned int last_step
unsigned int log_frequency(unsigned int)
Stop iteration, goal reached.
unsigned int m_log_frequency
double set_reduction(const double)
#define DeclException0(Exception0)
static ::ExceptionBase & ExcHistoryDataRequired()
virtual State check(const unsigned int step, const double check_value) override
double relative_failure_residual
double last_value() const
double average_reduction() const
virtual ~SolverControl() override=default
unsigned int last_step() const
IterationNumberControl(const unsigned int maxiter=100, const double tolerance=1e-12, const bool log_history=false, const bool log_result=true)
unsigned int n_converged_iterations
virtual ~ReductionControl() override=default
unsigned int max_steps() const
void enable_history_data()
double set_tolerance(const double)
ReductionControl(const unsigned int maxiter=100, const double tolerance=1.e-10, const double reduce=1.e-2, const bool log_history=false, const bool log_result=true)
virtual ~ConsecutiveControl() override=default
void parse_parameters(ParameterHandler ¶m)
std::vector< double > history_data
virtual void print_info(std::ostream &out) const override
SolverControl(const unsigned int n=100, const double tol=1.e-10, const bool log_history=false, const bool log_result=true)
unsigned int set_max_steps(const unsigned int)
ReductionControl & operator=(const SolverControl &c)
void set_failure_criterion(const double rel_failure_residual)