18 InputParameters params = validParams<Material>();
19 params.addRequiredParam<RealTensorValue>(
"mat_permeability",
20 "The permeability tensor (usually in m^2).");
21 params.addClassDescription(
"Material that holds the permeability tensor used in Darcy flow");
26 : Material(parameters),
27 _material_perm(getParam<RealTensorValue>(
"mat_permeability")),
28 _permeability(declareProperty<RealTensorValue>(
"permeability"))