www.mooseframework.org
Functions
PorousFlowHeatVolumetricExpansion.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowHeatVolumetricExpansion   
)

◆ validParams< PorousFlowHeatVolumetricExpansion >()

template<>
InputParameters validParams< PorousFlowHeatVolumetricExpansion > ( )

Definition at line 18 of file PorousFlowHeatVolumetricExpansion.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("Energy-density*rate_of_solid_volumetric_expansion");
31  return params;
32 }