16 #include <deal.II/base/logstream.h> 17 #include <deal.II/base/parameter_handler.h> 18 #include <deal.II/base/signaling_nan.h> 20 #include <deal.II/lac/solver_control.h> 25 DEAL_II_NAMESPACE_OPEN
31 const double tolerance,
32 const bool m_log_history,
33 const bool m_log_result)
37 , initial_val(
numbers::signaling_nan<double>())
38 , lvalue(
numbers::signaling_nan<double>())
39 , lstep(
numbers::invalid_unsigned_int)
40 , check_failure(false)
41 , relative_failure_residual(0)
43 , m_log_history(m_log_history)
45 , m_log_result(m_log_result)
46 , history_data_enabled(false)
63 deallog <<
"Check " << step <<
"\t" << check_value << std::endl;
74 deallog <<
"Starting value " << check_value << std::endl;
80 if (check_value <=
tol)
83 deallog <<
"Convergence step " << step <<
" value " << check_value
89 if ((step >=
maxsteps) || std::isnan(check_value) ||
93 deallog <<
"Failure step " << step <<
" value " << check_value
152 const std::vector<double> &
159 "The SolverControl object was asked for the solver history " 160 "data, but there is no data. Possibly you requested the data before the " 230 const bool m_log_history,
231 const bool m_log_result)
234 , reduced_tol(
numbers::signaling_nan<double>())
240 , reduce(
numbers::signaling_nan<double>())
241 , reduced_tol(
numbers::signaling_nan<double>())
276 deallog <<
"Convergence step " << step <<
" value " << check_value
313 const double tolerance,
314 const bool m_log_history,
315 const bool m_log_result)
329 deallog <<
"Convergence step " << step <<
" value " << check_value
345 const unsigned int n,
346 const double tolerance,
347 const unsigned int n_consecutive_iterations,
348 const bool m_log_history,
349 const bool m_log_result)
351 , n_consecutive_iterations(n_consecutive_iterations)
352 , n_converged_iterations(0)
355 ExcMessage(
"n_consecutive_iterations should be positive"));
362 , n_consecutive_iterations(1)
363 , n_converged_iterations(0)
391 ExcMessage(
"steps should be ascending integers."));
416 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.
long int get_integer(const std::string &entry_string) const
virtual State check(const unsigned int step, const double check_value)
void declare_entry(const std::string &entry, const std::string &default_value, const Patterns::PatternBase &pattern=Patterns::Anything(), const std::string &documentation="")
bool history_data_enabled
Subscriptor & operator=(const Subscriptor &)
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)
#define AssertThrow(cond, exc)
static ::ExceptionBase & ExcIndexRange(int arg1, int arg2, int arg3)
ConsecutiveControl & operator=(const SolverControl &c)
static ::ExceptionBase & ExcMessage(std::string arg1)
virtual State check(const unsigned int step, const double check_value) override
double get_double(const std::string &entry_name) const
static void declare_parameters(ParameterHandler ¶m)
unsigned int log_frequency(unsigned int)
Stop iteration, goal reached.
#define Assert(cond, exc)
unsigned int m_log_frequency
double set_reduction(const double)
static ::ExceptionBase & ExcHistoryDataRequired()
virtual State check(const unsigned int step, const double check_value) override
bool get_bool(const std::string &entry_name) const
double relative_failure_residual
double last_value() const
double average_reduction() const
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
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)
void parse_parameters(ParameterHandler ¶m)
std::vector< double > history_data
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)
static ::ExceptionBase & ExcInternalError()