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

Go to the source code of this file.

Classes

class  PorousFlowMassVolumetricExpansion
 Kernel = mass_component * d(volumetric_strain)/dt where mass_component = porosity*sum_phases(density_phase*saturation_phase*massfrac_phase^component) which is lumped to the nodes. More...
 

Functions

template<>
InputParameters validParams< PorousFlowMassVolumetricExpansion > ()
 

Function Documentation

◆ validParams< PorousFlowMassVolumetricExpansion >()

template<>
InputParameters validParams< PorousFlowMassVolumetricExpansion > ( )

Definition at line 18 of file PorousFlowMassVolumetricExpansion.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.addParam<unsigned int>(
29  "fluid_component", 0, "The index corresponding to the component for this kernel");
30  params.addRequiredParam<UserObjectName>(
31  "PorousFlowDictator", "The UserObject that holds the list of PorousFlow variable names.");
32  params.addClassDescription("Component_mass*rate_of_solid_volumetric_expansion");
33  return params;
34 }