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 "NoSolveProblem.h" 11 : 12 : registerMooseObject("SubChannelApp", NoSolveProblem); 13 : 14 : InputParameters 15 270 : NoSolveProblem::validParams() 16 : { 17 270 : InputParameters params = ExternalProblem::validParams(); 18 270 : params.addClassDescription("Dummy problem class that doesn't solve anything"); 19 270 : return params; 20 0 : } 21 : 22 135 : NoSolveProblem::NoSolveProblem(const InputParameters & params) : ExternalProblem(params) {} 23 : 24 : void 25 330 : NoSolveProblem::externalSolve() 26 : { 27 330 : } 28 : 29 : void 30 660 : NoSolveProblem::syncSolutions(Direction /*direction*/) 31 : { 32 660 : } 33 : 34 : bool 35 330 : NoSolveProblem::solverSystemConverged(const unsigned int) 36 : { 37 330 : return true; 38 : }