Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #include "ComputeResidualFunctor.h" 11 : #include "FEProblemBase.h" 12 : 13 56513 : ComputeResidualFunctor::ComputeResidualFunctor(FEProblemBase & fe_problem) : _fe_problem(fe_problem) 14 : { 15 56513 : } 16 : 17 : void 18 998587 : ComputeResidualFunctor::residual(const NumericVector<Number> & soln, 19 : NumericVector<Number> & residual, 20 : libMesh::NonlinearImplicitSystem & sys) 21 : { 22 : libmesh_parallel_only(soln.comm()); 23 : 24 998587 : if (!_fe_problem.getFailNextNonlinearConvergenceCheck()) 25 : { 26 997549 : _fe_problem.computingNonlinearResid(true); 27 997549 : _fe_problem.computeResidualSys(sys, soln, residual); 28 997507 : _fe_problem.computingNonlinearResid(false); 29 : } 30 998545 : }