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

#include <SolidMechanicsApp.h>

Inheritance diagram for SolidMechanicsApp:
[legend]

Public Member Functions

 SolidMechanicsApp (const InputParameters &parameters)
 
virtual ~SolidMechanicsApp ()
 

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 SolidMechanicsApp.h.

Constructor & Destructor Documentation

◆ SolidMechanicsApp()

SolidMechanicsApp::SolidMechanicsApp ( const InputParameters &  parameters)

Definition at line 32 of file SolidMechanicsApp.C.

32  : MooseApp(parameters)
33 {
34  SolidMechanicsApp::registerAll(_factory, _action_factory, _syntax);
35 }

◆ ~SolidMechanicsApp()

SolidMechanicsApp::~SolidMechanicsApp ( )
virtual

Definition at line 37 of file SolidMechanicsApp.C.

37 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 83 of file SolidMechanicsApp.C.

84 {
85  mooseDeprecated("use registerAll instead of associateSyntax");
86  Registry::registerActionsTo(action_factory, {"SolidMechanicsApp"});
87  associateSyntaxInner(syntax, action_factory);
88 }

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

◆ associateSyntaxDepends()

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

Definition at line 76 of file SolidMechanicsApp.C.

77 {
78  mooseDeprecated("use registerAll instead of associateSyntaxDepends");
79  TensorMechanicsApp::associateSyntax(syntax, action_factory);
80 }

◆ registerAll()

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

Definition at line 46 of file SolidMechanicsApp.C.

47 {
48  Registry::registerObjectsTo(f, {"SolidMechanicsApp"});
49  Registry::registerActionsTo(af, {"SolidMechanicsApp"});
50  associateSyntaxInner(s, af);
51 
53 }

Referenced by CombinedApp::registerAll(), ModulesApp::registerAll(), SolidMechanicsTestApp::registerAll(), XFEMApp::registerAll(), SolidMechanicsApp(), and SolidMechanicsApp__registerAll().

◆ registerApps()

void SolidMechanicsApp::registerApps ( )
static

Definition at line 56 of file SolidMechanicsApp.C.

57 {
58  registerApp(SolidMechanicsApp);
59 }

Referenced by SolidMechanicsApp__registerApps().

◆ registerExecFlags()

void SolidMechanicsApp::registerExecFlags ( Factory &  factory)
static

Definition at line 91 of file SolidMechanicsApp.C.

92 {
93  mooseDeprecated("use registerAll instead of registerExecFlags");
94 }

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

◆ registerObjectDepends()

void SolidMechanicsApp::registerObjectDepends ( Factory &  factory)
static

Definition at line 62 of file SolidMechanicsApp.C.

63 {
64  mooseDeprecated("use registerAll instead of registerObjectsDepends");
66 }

◆ registerObjects()

void SolidMechanicsApp::registerObjects ( Factory &  factory)
static

Definition at line 69 of file SolidMechanicsApp.C.

70 {
71  mooseDeprecated("use registerAll instead of registerObjects");
72  Registry::registerObjectsTo(factory, {"SolidMechanicsApp"});
73 }

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


The documentation for this class was generated from the following files:
TensorMechanicsApp::registerObjects
static void registerObjects(Factory &factory)
Definition: TensorMechanicsApp.C:95
SolidMechanicsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: SolidMechanicsApp.C:46
TensorMechanicsApp::associateSyntax
static void associateSyntax(Syntax &syntax, ActionFactory &action_factory)
Definition: TensorMechanicsApp.C:102
TensorMechanicsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: TensorMechanicsApp.C:81
associateSyntaxInner
static void associateSyntaxInner(Syntax &syntax, ActionFactory &)
Definition: SolidMechanicsApp.C:40
SolidMechanicsApp
Definition: SolidMechanicsApp.h:19