https://mooseframework.inl.gov
NoSolveProblem.C
Go to the documentation of this file.
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 
16 {
18  params.addClassDescription("Dummy problem class that doesn't solve anything");
19  return params;
20 }
21 
23 
24 void
26 {
27 }
28 
29 void
31 {
32 }
33 
34 bool
36 {
37  return true;
38 }
static InputParameters validParams()
static InputParameters validParams()
virtual void syncSolutions(Direction direction) override
virtual void externalSolve() override
NoSolveProblem(const InputParameters &params)
registerMooseObject("SubChannelApp", NoSolveProblem)
void addClassDescription(const std::string &doc_string)
virtual bool solverSystemConverged(const unsigned int) override
A Problem that does not solve, for visualization purposes.