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

Go to the source code of this file.

Classes

class  PorousFlowMassRadioactiveDecay
 Kernel = _decay_rate * masscomponent where mass_component = porosity*sum_phases(density_phase*saturation_phase*massfrac_phase^component) It is lumped to the nodes. More...
 

Functions

template<>
InputParameters validParams< PorousFlowMassRadioactiveDecay > ()
 

Function Documentation

◆ validParams< PorousFlowMassRadioactiveDecay >()

template<>
InputParameters validParams< PorousFlowMassRadioactiveDecay > ( )

Definition at line 22 of file PorousFlowMassRadioactiveDecay.C.

23 {
24  InputParameters params = validParams<TimeKernel>();
25  params.addParam<bool>("strain_at_nearest_qp",
26  false,
27  "When calculating nodal porosity that depends on strain, use the strain at "
28  "the nearest quadpoint. This adds a small extra computational burden, and "
29  "is not necessary for simulations involving only linear lagrange elements. "
30  " If you set this to true, you will also want to set the same parameter to "
31  "true for related Kernels and Materials");
32  params.addParam<unsigned int>(
33  "fluid_component", 0, "The index corresponding to the fluid component for this kernel");
34  params.addRequiredParam<Real>("decay_rate",
35  "The decay rate (units 1/time) for the fluid component");
36  params.addRequiredParam<UserObjectName>(
37  "PorousFlowDictator", "The UserObject that holds the list of PorousFlow variable names.");
38  params.addClassDescription("Radioactive decay of a fluid component");
39  return params;
40 }