www.mooseframework.org
Functions
ContactApp.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< ContactApp > ()
 
 registerKnownLabel ("ContactApp")
 
static void associateSyntaxInner (Syntax &syntax, ActionFactory &)
 
void ContactApp__registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
void ContactApp__registerApps ()
 

Function Documentation

◆ associateSyntaxInner()

static void associateSyntaxInner ( Syntax &  syntax,
ActionFactory &   
)
static

Definition at line 39 of file ContactApp.C.

40 {
41  registerSyntax("ContactAction", "Contact/*");
42 
43  registerSyntax("ContactPenetrationAuxAction", "Contact/*");
44  registerSyntax("ContactPenetrationVarAction", "Contact/*");
45 
46  registerSyntax("ContactPressureAuxAction", "Contact/*");
47  registerSyntax("ContactPressureVarAction", "Contact/*");
48 
49  registerSyntax("NodalAreaAction", "Contact/*");
50  registerSyntax("NodalAreaVarAction", "Contact/*");
51 
52  registerTask("output_penetration_info_vars", false);
53  syntax.addDependency("output_penetration_info_vars", "add_output");
54 }

Referenced by ContactApp::associateSyntax(), and ContactApp::registerAll().

◆ ContactApp__registerAll()

void ContactApp__registerAll ( Factory &  f,
ActionFactory &  af,
Syntax &  s 
)

Definition at line 91 of file ContactApp.C.

92 {
93  ContactApp::registerAll(f, af, s);
94 }

◆ ContactApp__registerApps()

void ContactApp__registerApps ( )

Definition at line 96 of file ContactApp.C.

97 {
99 }

◆ registerKnownLabel()

registerKnownLabel ( "ContactApp"  )

◆ validParams< ContactApp >()

template<>
InputParameters validParams< ContactApp > ( )

Definition at line 17 of file ContactApp.C.

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

Referenced by validParams< ContactTestApp >().

ContactApp::registerApps
static void registerApps()
Definition: ContactApp.C:65
ContactApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: ContactApp.C:57