www.mooseframework.org
Classes | Functions
AEFVKernel.h File Reference

Go to the source code of this file.

Classes

class  AEFVKernel
 A dgkernel for the advection equation using a cell-centered finite volume method. More...
 

Functions

template<>
InputParameters validParams< AEFVKernel > ()
 

Function Documentation

◆ validParams< AEFVKernel >()

template<>
InputParameters validParams< AEFVKernel > ( )

Definition at line 16 of file AEFVKernel.C.

17 {
18  InputParameters params = validParams<DGKernel>();
19  params.addClassDescription(
20  "A dgkernel for the advection equation using a cell-centered finite volume method.");
21  MooseEnum component("concentration");
22  params.addParam<MooseEnum>("component", component, "Choose one of the equations");
23  params.addRequiredCoupledVar("u", "Name of the variable to use");
24  params.addRequiredParam<UserObjectName>("flux", "Name of the internal side flux object to use");
25  return params;
26 }
MaterialTensorCalculatorTools::component
Real component(const SymmTensor &symm_tensor, unsigned int index)
Definition: MaterialTensorCalculatorTools.C:16