www.mooseframework.org
Functions
PorousFlowEnergyTimeDerivative.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PorousFlowApp", PorousFlowEnergyTimeDerivative)
 
template<>
InputParameters validParams< PorousFlowEnergyTimeDerivative > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowEnergyTimeDerivative   
)

◆ validParams< PorousFlowEnergyTimeDerivative >()

template<>
InputParameters validParams< PorousFlowEnergyTimeDerivative > ( )

Definition at line 18 of file PorousFlowEnergyTimeDerivative.C.

19 {
20  InputParameters params = validParams<TimeKernel>();
21  params.addParam<bool>("strain_at_nearest_qp",
22  false,
23  "When calculating nodal porosity that depends on strain, use the strain at "
24  "the nearest quadpoint. This adds a small extra computational burden, and "
25  "is not necessary for simulations involving only linear lagrange elements. "
26  " If you set this to true, you will also want to set the same parameter to "
27  "true for related Kernels and Materials");
28  params.addRequiredParam<UserObjectName>(
29  "PorousFlowDictator", "The UserObject that holds the list of PorousFlow variable names.");
30  params.addClassDescription("Derivative of heat-energy-density wrt time");
31  return params;
32 }