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

#include <TensorMechanicsApp.h>

Inheritance diagram for TensorMechanicsApp:
[legend]

Public Member Functions

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

Static Public Member Functions

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

Detailed Description

Definition at line 19 of file TensorMechanicsApp.h.

Constructor & Destructor Documentation

◆ TensorMechanicsApp()

TensorMechanicsApp::TensorMechanicsApp ( const InputParameters &  parameters)

Definition at line 32 of file TensorMechanicsApp.C.

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

◆ ~TensorMechanicsApp()

TensorMechanicsApp::~TensorMechanicsApp ( )
virtual

Definition at line 37 of file TensorMechanicsApp.C.

37 {}

Member Function Documentation

◆ associateSyntax()

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

Definition at line 102 of file TensorMechanicsApp.C.

103 {
104  mooseDeprecated("use registerAll instead of associateSyntax");
105  Registry::registerActionsTo(action_factory, {"TensorMechanicsApp"});
106  associateSyntaxInner(syntax, action_factory);
107 }

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

◆ registerAll()

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

Definition at line 81 of file TensorMechanicsApp.C.

82 {
83  Registry::registerObjectsTo(f, {"TensorMechanicsApp"});
84  Registry::registerActionsTo(af, {"TensorMechanicsApp"});
85  associateSyntaxInner(s, af);
86 }

Referenced by CombinedApp::registerAll(), XFEMApp::registerAll(), ModulesApp::registerAll(), PorousFlowApp::registerAll(), PeridynamicsApp::registerAll(), SolidMechanicsApp::registerAll(), TensorMechanicsTestApp::registerAll(), TensorMechanicsApp(), and TensorMechanicsApp__registerAll().

◆ registerApps()

void TensorMechanicsApp::registerApps ( )
static

Definition at line 89 of file TensorMechanicsApp.C.

90 {
91  registerApp(TensorMechanicsApp);
92 }

Referenced by TensorMechanicsApp_registerApps().

◆ registerExecFlags()

void TensorMechanicsApp::registerExecFlags ( Factory &  factory)
static

Definition at line 110 of file TensorMechanicsApp.C.

111 {
112  mooseDeprecated("use registerAll instead of registerExecFlags");
113 }

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

◆ registerObjects()

void TensorMechanicsApp::registerObjects ( Factory &  factory)
static

Definition at line 95 of file TensorMechanicsApp.C.

96 {
97  mooseDeprecated("use registerAll instead of registerObjects");
98  Registry::registerObjectsTo(factory, {"TensorMechanicsApp"});
99 }

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

◆ validParams()

InputParameters TensorMechanicsApp::validParams ( )
static

Definition at line 18 of file TensorMechanicsApp.C.

19 {
20  InputParameters params = MooseApp::validParams();
21 
22  params.set<bool>("automatic_automatic_scaling") = false;
23 
24  // Do not use legacy DirichletBC, that is, set DirichletBC default for preset = true
25  params.set<bool>("use_legacy_dirichlet_bc") = false;
26 
27  return params;
28 }

Referenced by TensorMechanicsTestApp::validParams().


The documentation for this class was generated from the following files:
TensorMechanicsApp
Definition: TensorMechanicsApp.h:19
associateSyntaxInner
static void associateSyntaxInner(Syntax &syntax, ActionFactory &)
Definition: TensorMechanicsApp.C:40
TensorMechanicsApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: TensorMechanicsApp.C:81
validParams
InputParameters validParams()