www.mooseframework.org
Functions
ChemicalReactionsApp.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< ChemicalReactionsApp > ()
 
 registerKnownLabel ("ChemicalReactionsApp")
 
static void associateSyntaxInner (Syntax &syntax, ActionFactory &)
 
void ChemicalReactionsApp__registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
void ChemicalReactionsApp__registerApps ()
 

Function Documentation

◆ associateSyntaxInner()

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

Definition at line 40 of file ChemicalReactionsApp.C.

41 {
42  registerSyntax("AddPrimarySpeciesAction", "ReactionNetwork/AqueousEquilibriumReactions");
43  registerSyntax("AddPrimarySpeciesAction", "ReactionNetwork/SolidKineticReactions");
44  registerSyntax("AddSecondarySpeciesAction", "ReactionNetwork/AqueousEquilibriumReactions");
45  registerSyntax("AddSecondarySpeciesAction", "ReactionNetwork/SolidKineticReactions");
46  registerSyntax("AddCoupledEqSpeciesAction", "ReactionNetwork/AqueousEquilibriumReactions");
47  registerSyntax("AddCoupledSolidKinSpeciesAction", "ReactionNetwork/SolidKineticReactions");
48 }

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

◆ ChemicalReactionsApp__registerAll()

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

Definition at line 86 of file ChemicalReactionsApp.C.

87 {
89 }

◆ ChemicalReactionsApp__registerApps()

void ChemicalReactionsApp__registerApps ( )

Definition at line 93 of file ChemicalReactionsApp.C.

◆ registerKnownLabel()

registerKnownLabel ( "ChemicalReactionsApp"  )

◆ validParams< ChemicalReactionsApp >()

template<>
InputParameters validParams< ChemicalReactionsApp > ( )

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

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