www.mooseframework.org
Public Member Functions | Static Public Member Functions | List of all members
NavierStokesApp Class Reference

#include <NavierStokesApp.h>

Inheritance diagram for NavierStokesApp:
[legend]

Public Member Functions

 NavierStokesApp (InputParameters parameters)
 
virtual ~NavierStokesApp ()
 

Static Public Member Functions

static void registerApps ()
 
static void registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
static void registerObjects (Factory &factory)
 
static void registerObjectDepends (Factory &factory)
 
static void associateSyntax (Syntax &syntax, ActionFactory &action_factory)
 
static void registerExecFlags (Factory &factory)
 
static void associateSyntaxDepends (Syntax &syntax, ActionFactory &action_factory)
 

Detailed Description

Definition at line 19 of file NavierStokesApp.h.

Constructor & Destructor Documentation

◆ NavierStokesApp()

NavierStokesApp::NavierStokesApp ( InputParameters  parameters)

Definition at line 34 of file NavierStokesApp.C.

34  : MooseApp(parameters)
35 {
36  NavierStokesApp::registerAll(_factory, _action_factory, _syntax);
37 }

◆ ~NavierStokesApp()

NavierStokesApp::~NavierStokesApp ( )
virtual

Definition at line 39 of file NavierStokesApp.C.

39 {}

Member Function Documentation

◆ associateSyntax()

void NavierStokesApp::associateSyntax ( Syntax &  syntax,
ActionFactory &  action_factory 
)
static

Definition at line 107 of file NavierStokesApp.C.

108 {
109  mooseDeprecated("use registerAll instead of associateSyntax");
110  Registry::registerActionsTo(action_factory, {"NavierStokesApp"});
111  associateSyntaxInner(syntax, action_factory);
112 }

Referenced by CombinedApp::associateSyntax(), and ModulesApp::associateSyntax().

◆ associateSyntaxDepends()

void NavierStokesApp::associateSyntaxDepends ( Syntax &  syntax,
ActionFactory &  action_factory 
)
static

Definition at line 100 of file NavierStokesApp.C.

101 {
102  mooseDeprecated("use registerAll instead of associateSyntaxDepends");
103  FluidPropertiesApp::associateSyntax(syntax, action_factory);
104 }

◆ registerAll()

void NavierStokesApp::registerAll ( Factory &  f,
ActionFactory &  af,
Syntax &  s 
)
static

Definition at line 76 of file NavierStokesApp.C.

77 {
80  Registry::registerObjectsTo(f, {"NavierStokesApp"});
81  Registry::registerActionsTo(af, {"NavierStokesApp"});
82  associateSyntaxInner(s, af);
83 }

Referenced by NavierStokesApp(), NavierStokesApp__registerAll(), ModulesApp::registerAll(), CombinedApp::registerAll(), and NavierStokesTestApp::registerAll().

◆ registerApps()

void NavierStokesApp::registerApps ( )
static

Definition at line 42 of file NavierStokesApp.C.

43 {
44  registerApp(NavierStokesApp);
45 }

Referenced by NavierStokesApp__registerApps().

◆ registerExecFlags()

void NavierStokesApp::registerExecFlags ( Factory &  factory)
static

Definition at line 115 of file NavierStokesApp.C.

116 {
117  mooseDeprecated("use registerAll instead of registerExecFlags");
118 }

Referenced by CombinedApp::registerExecFlags(), and ModulesApp::registerExecFlags().

◆ registerObjectDepends()

void NavierStokesApp::registerObjectDepends ( Factory &  factory)
static

Definition at line 86 of file NavierStokesApp.C.

87 {
88  mooseDeprecated("use registerAll instead of registerObjectsDepends");
90 }

◆ registerObjects()

void NavierStokesApp::registerObjects ( Factory &  factory)
static

Definition at line 93 of file NavierStokesApp.C.

94 {
95  mooseDeprecated("use registerAll instead of registerObjects");
96  Registry::registerObjectsTo(factory, {"NavierStokesApp"});
97 }

Referenced by CombinedApp::registerObjects(), and ModulesApp::registerObjects().


The documentation for this class was generated from the following files:
FluidPropertiesApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: FluidPropertiesApp.C:51
HeatConductionApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: HeatConductionApp.C:64
associateSyntaxInner
static void associateSyntaxInner(Syntax &syntax, ActionFactory &)
Definition: NavierStokesApp.C:48
NavierStokesApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: NavierStokesApp.C:76
NavierStokesApp
Definition: NavierStokesApp.h:19
FluidPropertiesApp::associateSyntax
static void associateSyntax(Syntax &syntax, ActionFactory &action_factory)
Definition: FluidPropertiesApp.C:66
FluidPropertiesApp::registerObjects
static void registerObjects(Factory &factory)
Definition: FluidPropertiesApp.C:59