https://mooseframework.inl.gov
FsiApp.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 "FsiApp.h"
11 #include "Moose.h"
12 #include "AppFactory.h"
13 #include "MooseSyntax.h"
14 
15 #include "NavierStokesApp.h"
16 #include "SolidMechanicsApp.h"
17 
20 {
22 
23  params.set<bool>("use_legacy_initial_residual_evaluation_behavior") = false;
24  return params;
25 }
26 
27 FsiApp::FsiApp(const InputParameters & parameters) : MooseApp(parameters)
28 {
30 }
31 
33 
34 void
36 {
37  Registry::registerObjectsTo(f, {"FsiApp"});
38  Registry::registerActionsTo(af, {"FsiApp"});
39 
42 }
43 
44 void
46 {
47  registerApp(FsiApp);
48 
51 }
52 
53 /***************************************************************************************************
54  *********************** Dynamic Library Entry Points - DO NOT MODIFY ******************************
55  **************************************************************************************************/
56 extern "C" void
58 {
59  FsiApp::registerAll(f, af, s);
60 }
61 extern "C" void
63 {
65 }
virtual ~FsiApp()
Definition: FsiApp.C:32
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
T & set(const std::string &name, bool quiet_mode=false)
Definition: FsiApp.h:14
FsiApp(const InputParameters &parameters)
Definition: FsiApp.C:27
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)
static InputParameters validParams()
Definition: FsiApp.C:19
static void registerApps()
Syntax _syntax
static InputParameters validParams()
void FsiApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: FsiApp.C:57
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
Real f(Real x)
Test function for Brents method.
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: FsiApp.C:35
ActionFactory _action_factory
static void registerApps()
Factory _factory
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
void FsiApp__registerApps()
Definition: FsiApp.C:62
static void registerApps()
Definition: FsiApp.C:45