Go to the documentation of this file.
   20 #ifndef LIBMESH_NONLINEAR_SOLVER_H 
   21 #define LIBMESH_NONLINEAR_SOLVER_H 
   24 #include "libmesh/libmesh_common.h" 
   25 #include "libmesh/reference_counted_object.h" 
   26 #include "libmesh/nonlinear_implicit_system.h" 
   27 #include "libmesh/libmesh.h" 
   28 #include "libmesh/parallel_object.h" 
   30 #ifdef LIBMESH_FORWARD_DECLARE_ENUMS 
   36 #include "libmesh/enum_solver_package.h" 
   47 template <
typename T> 
class SparseMatrix;
 
   48 template <
typename T> 
class NumericVector;
 
   49 template <
typename T> 
class Preconditioner;
 
   50 class SolverConfiguration;
 
   84   static std::unique_ptr<NonlinearSolver<T>> 
build(
sys_type & s,
 
  102   virtual void init (
const char * 
name = 
nullptr) = 0;
 
  111                                                const unsigned int) = 0; 
 
  265                       bool & changed_search_direction,
 
  266                       bool & changed_new_soln,
 
  392 template <
typename T>
 
  397   residual_object              (nullptr),
 
  398   fd_residual_object           (nullptr),
 
  399   mffd_residual_object         (nullptr),
 
  401   jacobian_object              (nullptr),
 
  403   residual_and_jacobian_object (nullptr),
 
  405   bounds_object                (nullptr),
 
  407   nullspace_object             (nullptr),
 
  408   transpose_nullspace          (nullptr),
 
  409   transpose_nullspace_object   (nullptr),
 
  410   nearnullspace                (nullptr),
 
  411   nearnullspace_object         (nullptr),
 
  412   user_presolve                (nullptr),
 
  414   postcheck_object             (nullptr),
 
  415   max_nonlinear_iterations(0),
 
  416   max_function_evaluations(0),
 
  417   absolute_residual_tolerance(0),
 
  418   relative_residual_tolerance(0),
 
  419   divergence_tolerance(0),
 
  420   absolute_step_tolerance(0),
 
  421   relative_step_tolerance(0),
 
  422   max_linear_iterations(0),
 
  423   initial_linear_tolerance(0),
 
  424   minimum_linear_tolerance(0),
 
  428   _preconditioner (nullptr),
 
  429   _solver_configuration(nullptr)
 
  435 template <
typename T>
 
  446 #endif // LIBMESH_NONLINEAR_SOLVER_H 
  
virtual int get_total_linear_iterations()=0
Get the total number of linear iterations done in the last solve.
 
SolverPackage
Defines an enum for various linear solver packages.
 
virtual std::pair< unsigned int, Real > solve(SparseMatrix< T > &, NumericVector< T > &, NumericVector< T > &, const double, const unsigned int)=0
Solves the nonlinear system.
 
double initial_linear_tolerance
Any required linear solves will at first be done with this tolerance; the NonlinearSolver may tighten...
 
double relative_residual_tolerance
 
This base class can be inherited from to provide interfaces to nonlinear solvers from different packa...
 
void(* transpose_nullspace)(std::vector< NumericVector< Number > * > &sp, sys_type &S)
Function that computes a basis for the transpose Jacobian's nullspace – when solving a degenerate pro...
 
NonlinearImplicitSystem::ComputeResidual * fd_residual_object
Object that computes the residual R(X) of the nonlinear system at the input iterate X for the purpose...
 
void set_solver_configuration(SolverConfiguration &solver_configuration)
Set the solver configuration object.
 
This class implements reference counting.
 
The libMesh namespace provides an interface to certain functionality in the library.
 
void(* residual)(const NumericVector< Number > &X, NumericVector< Number > &R, sys_type &S)
Function that computes the residual R(X) of the nonlinear system at the input iterate X.
 
NonlinearImplicitSystem::ComputeVectorSubspace * nullspace_object
A callable object that computes a basis for the Jacobian's nullspace – the kernel or the "zero energy...
 
double divergence_tolerance
The NonlinearSolver should exit if the residual becomes greater than the initial residual times the d...
 
void(* bounds)(NumericVector< Number > &XL, NumericVector< Number > &XU, sys_type &S)
Function that computes the lower and upper bounds XL and XU on the solution of the nonlinear system.
 
SolverPackage default_solver_package()
 
double absolute_step_tolerance
The NonlinearSolver should exit after the full nonlinear step norm is reduced to either less than abs...
 
sys_type & _system
A reference to the system we are solving.
 
void attach_preconditioner(Preconditioner< T > *preconditioner)
Attaches a Preconditioner object to be used during the linear solves.
 
NonlinearImplicitSystem::ComputeVectorSubspace * nearnullspace_object
A callable object that computes a basis for the Jacobian's near nullspace – the set of "low energy mo...
 
SolverConfiguration * _solver_configuration
Optionally store a SolverOptions object that can be used to set parameters like solver type,...
 
void(* matvec)(const NumericVector< Number > &X, NumericVector< Number > *R, SparseMatrix< Number > *J, sys_type &S)
Function that computes either the residual  or the Jacobian  of the nonlinear system at the input ite...
 
Manages consistently variables, degrees of freedom, coefficient vectors, matrices and non-linear solv...
 
virtual void init(const char *name=nullptr)=0
Initialize data structures if not done so already.
 
Abstract base class to be used to calculate the bounds on the degrees of freedom of a nonlinear syste...
 
double absolute_residual_tolerance
The NonlinearSolver should exit after the residual is reduced to either less than absolute_residual_t...
 
NonlinearImplicitSystem::ComputeVectorSubspace * transpose_nullspace_object
A callable object that computes a basis for the transpose Jacobian's nullspace – when solving a degen...
 
Provides a uniform interface to vector storage schemes for different linear algebra libraries.
 
NonlinearImplicitSystem::ComputeJacobian * jacobian_object
Object that computes the Jacobian J(X) of the nonlinear system at the input iterate X.
 
unsigned int max_nonlinear_iterations
Maximum number of non-linear iterations.
 
void(* user_presolve)(sys_type &S)
Customizable function pointer which users can attach to the solver.
 
Preconditioner< T > * _preconditioner
Holds the Preconditioner object to be used for the linear solves.
 
This class provides a uniform interface for preconditioners.
 
Callable abstract base class to be used as a callback to provide the solver with a basis for the syst...
 
Abstract base class to be used to calculate the residual and Jacobian simultaneously of a nonlinear s...
 
NonlinearImplicitSystem::ComputeResidual * residual_object
Object that computes the residual R(X) of the nonlinear system at the input iterate X.
 
NonlinearSolver(sys_type &s)
Constructor.
 
virtual unsigned get_current_nonlinear_iteration_number() const =0
 
virtual ~NonlinearSolver()
Destructor.
 
NonlinearImplicitSystem::ComputeResidualandJacobian * residual_and_jacobian_object
Object that computes either the residual  or the Jacobian  of the nonlinear system at the input itera...
 
double relative_step_tolerance
 
virtual void clear()
Release all memory and clear data structures.
 
bool _is_initialized
Flag that tells if init() has been called.
 
void(* jacobian)(const NumericVector< Number > &X, SparseMatrix< Number > &J, sys_type &S)
Function that computes the Jacobian J(X) of the nonlinear system at the input iterate X.
 
NonlinearImplicitSystem::ComputeBounds * bounds_object
Object that computes the bounds vectors  and .
 
NonlinearImplicitSystem::ComputeResidual * mffd_residual_object
Object that computes the residual R(X) of the nonlinear system at the input iterate X for the purpose...
 
void(* postcheck)(const NumericVector< Number > &old_soln, NumericVector< Number > &search_direction, NumericVector< Number > &new_soln, bool &changed_search_direction, bool &changed_new_soln, sys_type &S)
Function that performs a "check" on the Newton search direction and solution after each nonlinear ste...
 
Abstract base class to be used to calculate the Jacobian of a nonlinear system.
 
NonlinearImplicitSystem sys_type
The type of system.
 
This class stores solver configuration data, e.g.
 
NonlinearImplicitSystem::ComputePostCheck * postcheck_object
A callable object that is executed after each nonlinear iteration.
 
double minimum_linear_tolerance
The tolerance for linear solves is kept above this minimum.
 
bool converged
After a call to solve this will reflect whether or not the nonlinear solve was successful.
 
void(* nearnullspace)(std::vector< NumericVector< Number > * > &sp, sys_type &S)
Function that computes a basis for the Jacobian's near nullspace – the set of "low energy modes" – th...
 
An object whose state is distributed along a set of processors.
 
static std::unique_ptr< NonlinearSolver< T > > build(sys_type &s, const SolverPackage solver_package=libMesh::default_solver_package())
Builds a NonlinearSolver using the nonlinear solver package specified by solver_package.
 
const sys_type & system() const
 
Abstract base class to be used to calculate the residual of a nonlinear system.
 
virtual void print_converged_reason()
Prints a useful message about why the latest nonlinear solve con(di)verged.
 
bool _is_initialized
Flag indicating if the data structures have been initialized.
 
unsigned int max_linear_iterations
Each linear solver step should exit after max_linear_iterations is exceeded.
 
unsigned int max_function_evaluations
Maximum number of function evaluations.
 
Abstract base class to be used for applying user modifications to the solution vector and/or Newton u...
 
void ErrorVector unsigned int
 
std::string name(const ElemQuality q)
This function returns a string containing some name for q.
 
void(* nullspace)(std::vector< NumericVector< Number > * > &sp, sys_type &S)
Function that computes a basis for the Jacobian's nullspace – the kernel or the "zero energy modes" –...