https://mooseframework.inl.gov
ShiftedBoundaryMethodApp.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 #include "Moose.h"
12 #include "AppFactory.h"
13 #include "MooseSyntax.h"
14 
17 {
19  params.set<bool>("automatic_automatic_scaling") = false;
20  params.set<bool>("use_legacy_material_output") = false;
21  params.set<bool>("use_legacy_initial_residual_evaluation_behavior") = false;
22  return params;
23 }
24 
26  : MooseApp(parameters)
27 {
29 }
30 
32 
33 void
35 {
36  Registry::registerObjectsTo(f, {"ShiftedBoundaryMethodApp"});
37  Registry::registerActionsTo(af, {"ShiftedBoundaryMethodApp"});
38 
39  /* register custom execute flags, action syntax, etc. here */
40 }
41 
42 void
44 {
45  registerApp(ShiftedBoundaryMethodApp);
46 }
47 
48 /***************************************************************************************************
49  *********************** Dynamic Library Entry Points - DO NOT MODIFY ******************************
50  **************************************************************************************************/
51 extern "C" void
53 {
55 }
56 extern "C" void
58 {
60 }
static InputParameters validParams()
T & set(const std::string &name, bool quiet_mode=false)
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)
Syntax _syntax
static InputParameters validParams()
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
void ShiftedBoundaryMethodApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
Real f(Real x)
Test function for Brents method.
ActionFactory _action_factory
ShiftedBoundaryMethodApp(const InputParameters &parameters)
Factory _factory
void ShiftedBoundaryMethodApp__registerApps()