19 params.addClassDescription(
"Assemble a mobility tensor from multiple tensor contributions "
20 "weighted by material properties");
21 params.addRequiredParam<MaterialPropertyName>(
"M_name",
22 "Name of the mobility tensor property to generate");
27 : CompositeTensorBase<RealTensorValue, Material>(parameters),
28 _M_name(getParam<MaterialPropertyName>(
"M_name")),
29 _M(declareProperty<RealTensorValue>(_M_name))
31 initializeDerivativeProperties(
_M_name);
37 computeQpTensorProperties(
_M);