www.mooseframework.org
Functions
XFEMApp.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< XFEMApp > ()
 
 registerKnownLabel ("XFEMApp")
 
static void associateSyntaxInner (Syntax &syntax, ActionFactory &)
 
void XFEMApp__registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
void XFEMApp__registerApps ()
 

Function Documentation

◆ associateSyntaxInner()

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

Definition at line 42 of file XFEMApp.C.

43 {
44  registerTask("setup_xfem", false);
45  syntax.addDependency("setup_xfem", "setup_adaptivity");
46  registerSyntax("XFEMAction", "XFEM");
47 }

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

◆ registerKnownLabel()

registerKnownLabel ( "XFEMApp"  )

◆ validParams< XFEMApp >()

template<>
InputParameters validParams< XFEMApp > ( )

Definition at line 20 of file XFEMApp.C.

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

Referenced by validParams< XFEMTestApp >().

◆ XFEMApp__registerAll()

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

Definition at line 108 of file XFEMApp.C.

109 {
110  XFEMApp::registerAll(f, af, s);
111 }

◆ XFEMApp__registerApps()

void XFEMApp__registerApps ( )

Definition at line 113 of file XFEMApp.C.

114 {
116 }
XFEMApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: XFEMApp.C:50
XFEMApp::registerApps
static void registerApps()
Definition: XFEMApp.C:64