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

Go to the source code of this file.

Classes

class  MatGradSquareCoupled
 

Functions

template<>
InputParameters validParams< MatGradSquareCoupled > ()
 

Function Documentation

◆ validParams< MatGradSquareCoupled >()

template<>
InputParameters validParams< MatGradSquareCoupled > ( )

Definition at line 16 of file MatGradSquareCoupled.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addClassDescription("Gradient square of a coupled variable.");
20  params.addCoupledVar("elec_potential", "Electric potential");
21  params.addCoupledVar("args", "Vector of arguments to prefactor");
22  params.addParam<MaterialPropertyName>(
23  "prefactor",
24  "prefactor",
25  "Material property providing a prefactor of electric potential contribution");
26  return params;
27 }