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