18 InputParameters params = validParams<TimeDerivative>();
19 params.addClassDescription(
"This class computes the time derivative for the incompressible "
20 "Navier-Stokes momentum equation.");
21 params.addParam<MaterialPropertyName>(
"rho_name",
"rho",
"density name");
26 : TimeDerivative(parameters), _rho(getMaterialProperty<Real>(
"rho_name"))
33 return _rho[_qp] * TimeDerivative::computeQpResidual();
39 return _rho[_qp] * TimeDerivative::computeQpJacobian();