https://mooseframework.inl.gov
RdgApp.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 "RdgApp.h"
11 #include "Moose.h"
12 #include "AppFactory.h"
13 #include "MooseSyntax.h"
14 
17 {
19 
20  params.set<bool>("automatic_automatic_scaling") = false;
21  params.set<bool>("use_legacy_material_output") = false;
22  params.set<bool>("use_legacy_initial_residual_evaluation_behavior") = false;
23 
24  return params;
25 }
26 
27 registerKnownLabel("RdgApp");
28 
29 RdgApp::RdgApp(const InputParameters & parameters) : MooseApp(parameters)
30 {
32 }
33 
35 
36 void
38 {
39  Registry::registerObjectsTo(f, {"RdgApp"});
40  Registry::registerActionsTo(af, {"RdgApp"});
41 }
42 
43 void
45 {
46  registerApp(RdgApp);
47 }
48 
49 extern "C" void
51 {
52  RdgApp::registerAll(f, af, s);
53 }
54 extern "C" void
56 {
58 }
void RdgApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: RdgApp.C:50
T & set(const std::string &name, bool quiet_mode=false)
RdgApp(const InputParameters &parameters)
Definition: RdgApp.C:29
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)
Syntax _syntax
static InputParameters validParams()
virtual ~RdgApp()
Definition: RdgApp.C:34
registerKnownLabel("RdgApp")
Definition: RdgApp.h:14
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
Real f(Real x)
Test function for Brents method.
void RdgApp__registerApps()
Definition: RdgApp.C:55
ActionFactory _action_factory
static void registerApps()
Definition: RdgApp.C:44
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: RdgApp.C:37
Factory _factory
static InputParameters validParams()
Definition: RdgApp.C:16