www.mooseframework.org
Functions
AEFVMaterial.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("RdgApp", AEFVMaterial)
 
template<>
InputParameters validParams< AEFVMaterial > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RdgApp"  ,
AEFVMaterial   
)

◆ validParams< AEFVMaterial >()

template<>
InputParameters validParams< AEFVMaterial > ( )

Definition at line 19 of file AEFVMaterial.C.

20 {
21  InputParameters params = validParams<Material>();
22  params.addClassDescription(
23  "A material kernel for the advection equation using a cell-centered finite volume method.");
24  params.addRequiredCoupledVar("u", "Cell-averge variable");
25  params.addRequiredParam<UserObjectName>("slope_limiting", "Name for slope limiting user object");
26  return params;
27 }