www.mooseframework.org
Functions
CombinedApp.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< CombinedApp > ()
 
 registerKnownLabel ("CombinedApp")
 
void CombinedApp__registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
void CombinedApp__registerApps ()
 

Function Documentation

◆ CombinedApp__registerAll()

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

Definition at line 159 of file CombinedApp.C.

160 {
161  CombinedApp::registerAll(f, af, s);
162 }

◆ CombinedApp__registerApps()

void CombinedApp__registerApps ( )

Definition at line 164 of file CombinedApp.C.

165 {
167 }

◆ registerKnownLabel()

registerKnownLabel ( "CombinedApp"  )

◆ validParams< CombinedApp >()

template<>
InputParameters validParams< CombinedApp > ( )

Definition at line 37 of file CombinedApp.C.

38 {
39  InputParameters params = validParams<MooseApp>();
40 
41  params.set<bool>("automatic_automatic_scaling") = false;
42 
43  // Do not use legacy DirichletBC, that is, set DirichletBC default for preset = true
44  params.set<bool>("use_legacy_dirichlet_bc") = false;
45 
46  return params;
47 }

Referenced by validParams< CombinedTestApp >().

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