www.mooseframework.org
Functions
RichardsApp.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< RichardsApp > ()
 
 registerKnownLabel ("RichardsApp")
 
static void associateSyntaxInner (Syntax &syntax, ActionFactory &)
 

Function Documentation

◆ associateSyntaxInner()

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

Definition at line 41 of file RichardsApp.C.

42 {
43  registerSyntaxTask("Q2PAction", "Q2P", "add_kernel");
44  registerSyntaxTask("Q2PAction", "Q2P", "add_aux_variable");
45  registerSyntaxTask("Q2PAction", "Q2P", "add_function");
46  registerSyntaxTask("Q2PAction", "Q2P", "add_postprocessor");
47 }

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

◆ registerKnownLabel()

registerKnownLabel ( "RichardsApp"  )

◆ validParams< RichardsApp >()

template<>
InputParameters validParams< RichardsApp > ( )

Definition at line 17 of file RichardsApp.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< RichardsTestApp >().