Line data Source code
1 : // The libMesh Finite Element Library. 2 : // Copyright (C) 2002-2025 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner 3 : 4 : // This library is free software; you can redistribute it and/or 5 : // modify it under the terms of the GNU Lesser General Public 6 : // License as published by the Free Software Foundation; either 7 : // version 2.1 of the License, or (at your option) any later version. 8 : 9 : // This library is distributed in the hope that it will be useful, 10 : // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 : // Lesser General Public License for more details. 13 : 14 : // You should have received a copy of the GNU Lesser General Public 15 : // License along with this library; if not, write to the Free Software 16 : // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 : 18 : 19 : #include "libmesh/libmesh_common.h" 20 : #include "libmesh/diff_solver.h" 21 : #include "libmesh/newton_solver.h" 22 : #include "libmesh/implicit_system.h" 23 : 24 : // C++ Includes 25 : #include <memory> 26 : 27 : namespace libMesh 28 : { 29 : 30 5395 : DiffSolver::DiffSolver (sys_type & s) : 31 : ParallelObject(s), 32 5075 : max_linear_iterations(1000), 33 5075 : max_nonlinear_iterations(100), 34 5075 : quiet(true), 35 5075 : verbose(false), 36 5075 : continue_after_max_iterations(true), 37 5075 : continue_after_backtrack_failure(false), 38 5075 : absolute_residual_tolerance(0.), 39 5075 : relative_residual_tolerance(0.), 40 5075 : absolute_step_tolerance(0.), 41 5075 : relative_step_tolerance(0.), 42 5075 : initial_linear_tolerance(1e-12), 43 5075 : minimum_linear_tolerance(TOLERANCE*TOLERANCE), 44 5075 : _exact_constraint_enforcement(true), 45 5075 : max_solution_norm(0.), 46 5075 : max_residual_norm(0.), 47 5075 : _outer_iterations(0), 48 5075 : _inner_iterations(0), 49 5075 : _system (s), 50 5555 : _solve_result(INVALID_SOLVE_RESULT) 51 : { 52 5395 : } 53 : 54 : 55 : 56 3682 : std::unique_ptr<DiffSolver> DiffSolver::build (sys_type & s) 57 : { 58 3682 : return std::make_unique<NewtonSolver>(s); 59 : } 60 : 61 : 62 : 63 5236 : void DiffSolver::reinit () 64 : { 65 : // Reset the max_step_size and max_residual_norm for a new mesh 66 5236 : max_solution_norm = 0.; 67 5236 : max_residual_norm = 0.; 68 5236 : } 69 : 70 : 71 : 72 5395 : void DiffSolver::init () 73 : { 74 : // Reset the max_step_size and max_residual_norm for a new problem 75 5395 : max_solution_norm = 0.; 76 5395 : max_residual_norm = 0.; 77 5395 : } 78 : 79 : } // namespace libMesh