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

Go to the source code of this file.

Classes

class  PoroFullSatTimeDerivative
 Kernel = biot_coefficient*d(volumetric_strain)/dt + (1/biot_modulus)*d(porepressure)/dt this is the time-derivative for poromechanics for a single-phase, fully-saturated fluid with constant bulk modulus. More...
 

Functions

template<>
InputParameters validParams< PoroFullSatTimeDerivative > ()
 

Function Documentation

◆ validParams< PoroFullSatTimeDerivative >()

template<>
InputParameters validParams< PoroFullSatTimeDerivative > ( )

Definition at line 16 of file PoroFullSatTimeDerivative.C.

17 {
18  InputParameters params = validParams<TimeDerivative>();
19  params.addRequiredCoupledVar(
20  "displacements",
21  "The displacements appropriate for the simulation geometry and coordinate system");
22  params.addClassDescription("Kernel = biot_coefficient*d(volumetric_strain)/dt + "
23  "(1/biot_modulus)*d(porepressure)/dt. This is the time-derivative "
24  "for poromechanics for a single-phase, fully-saturated fluid with "
25  "constant bulk modulus");
26  return params;
27 }