20#ifndef LIBMESH_DIFF_SOLVER_H
21#define LIBMESH_DIFF_SOLVER_H
24#include "libmesh/libmesh_common.h"
25#include "libmesh/reference_counted_object.h"
26#include "libmesh/parallel_object.h"
37template <
typename T>
class NumericVector;
46 const Real & norm_delta_u,
50 const Real & norm_res,
51 const unsigned int iteration) = 0;
100 virtual void init ();
This is a generic class that defines a solver to handle ImplicitSystem classes, including NonlinearIm...
unsigned int _inner_iterations
The number of inner iterations used by the last solve.
Real absolute_residual_tolerance
The DiffSolver should exit after the residual is reduced to either less than absolute_residual_tolera...
Real absolute_step_tolerance
The DiffSolver should exit after the full nonlinear step norm is reduced to either less than absolute...
std::unique_ptr< LinearSolutionMonitor > linear_solution_monitor
Pointer to functor which is called right after each linear solve.
static std::unique_ptr< DiffSolver > build(sys_type &s)
Factory method.
unsigned int max_linear_iterations
Each linear solver step should exit after max_linear_iterations is exceeded.
bool exact_constraint_enforcement()
double minimum_linear_tolerance
The tolerance for linear solves is kept above this minimum.
virtual ~DiffSolver()=default
Destructor.
virtual void set_exact_constraint_enforcement(bool enable)
Enable (or disable; it is true by default) exact enforcement of constraints at the solver level,...
bool continue_after_backtrack_failure
Defaults to false, telling the DiffSolver to throw an error when the backtracking scheme fails to fin...
unsigned int total_inner_iterations()
Real max_residual_norm
The largest nonlinear residual which the DiffSolver has yet seen will be stored here,...
Real max_solution_norm
The largest solution norm which the DiffSolver has yet seen will be stored here, to be used for stopp...
const sys_type & system() const
virtual unsigned int solve()=0
This method performs a solve.
virtual void init()
The initialization function.
unsigned int solve_result()
sys_type & _system
A reference to the system we are solving.
bool continue_after_max_iterations
Defaults to true, telling the DiffSolver to continue rather than exit when a solve has reached its ma...
SolveResult
Enumeration return type for the solve() function.
@ DIVERGED_BACKTRACKING_FAILURE
The DiffSolver failed to find a descent direction by backtracking (See newton_solver....
@ DIVERGED_MAX_NONLINEAR_ITERATIONS
The DiffSolver reached the maximum allowed number of nonlinear iterations before satisfying any conve...
@ CONVERGED_RELATIVE_STEP
The DiffSolver achieved the desired relative step size tolerance.
@ CONVERGED_ABSOLUTE_RESIDUAL
The DiffSolver achieved the desired absolute residual tolerance.
@ DIVERGED_LINEAR_SOLVER_FAILURE
The linear solver used by the DiffSolver failed to find a solution.
@ DIVERGED_NO_REASON
The DiffSolver diverged but no particular reason is specified.
@ CONVERGED_NO_REASON
The solver converged but no particular reason is specified.
@ INVALID_SOLVE_RESULT
A default or invalid solve result.
@ CONVERGED_RELATIVE_RESIDUAL
The DiffSolver achieved the desired relative residual tolerance.
@ CONVERGED_ABSOLUTE_STEP
The DiffSolver achieved the desired absolute step size tolerance.
double initial_linear_tolerance
Any required linear solves will at first be done with this tolerance; the DiffSolver may tighten the ...
unsigned int _outer_iterations
The number of outer iterations used by the last solve.
Real relative_residual_tolerance
Real relative_step_tolerance
virtual void reinit()
The reinitialization function.
bool _exact_constraint_enforcement
Whether we should enforce exact constraints globally during a solve.
unsigned int _solve_result
Initialized to zero.
bool verbose
The DiffSolver may print a lot more to libMesh::out if verbose is set to true; default is false.
unsigned int total_outer_iterations()
ImplicitSystem sys_type
The type of system.
unsigned int max_nonlinear_iterations
The DiffSolver should exit in failure if max_nonlinear_iterations is exceeded and continue_after_max_...
bool quiet
The DiffSolver should not print anything to libMesh::out unless quiet is set to false; default is tru...
Manages consistently variables, degrees of freedom, coefficient vectors, and matrices for implicit sy...
Functor for use as callback in solve of nonlinear solver.
virtual ~LinearSolutionMonitor()=default
virtual void operator()(const NumericVector< Number > &delta_u, const Real &norm_delta_u, const NumericVector< Number > &u, const Real &norm_u, const NumericVector< Number > &res, const Real &norm_res, const unsigned int iteration)=0
Provides a uniform interface to vector storage schemes for different linear algebra libraries.
An object whose state is distributed along a set of processors.
This class implements reference counting.
The libMesh namespace provides an interface to certain functionality in the library.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real