www.mooseframework.org
Functions
PHAux.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("ChemicalReactionsApp", PHAux)
 
template<>
InputParameters validParams< PHAux > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "ChemicalReactionsApp"  ,
PHAux   
)

◆ validParams< PHAux >()

template<>
InputParameters validParams< PHAux > ( )

Definition at line 16 of file PHAux.C.

17 {
18  InputParameters params = validParams<AuxKernel>();
19  params.addRequiredCoupledVar("h_conc", "The molar concentration of free H+ ions in solution");
20  params.addCoupledVar("activity_coeff", 1.0, "Activity coefficient of H+. Default is 1");
21  params.addClassDescription("pH of solution");
22  return params;
23 }