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 : // MOOSE includes 11 : #include "NumResidualEvaluations.h" 12 : #include "FEProblem.h" 13 : #include "SubProblem.h" 14 : #include "NonlinearSystem.h" 15 : 16 : registerMooseObject("MooseApp", NumResidualEvaluations); 17 : 18 : InputParameters 19 14315 : NumResidualEvaluations::validParams() 20 : { 21 14315 : InputParameters params = GeneralPostprocessor::validParams(); 22 14315 : params.addClassDescription("Returns the total number of residual evaluations performed."); 23 14315 : return params; 24 0 : } 25 : 26 25 : NumResidualEvaluations::NumResidualEvaluations(const InputParameters & parameters) 27 25 : : GeneralPostprocessor(parameters) 28 : { 29 25 : } 30 : 31 : Real 32 312 : NumResidualEvaluations::getValue() const 33 : { 34 312 : return _fe_problem.getNonlinearSystemBase(_sys.number()).nResidualEvaluations(); 35 : }