18 InputParameters params = validParams<Kernel>();
19 params.addClassDescription(
"Gradient energy for split Cahn-Hilliard equation with constant "
20 "Mobility for a coupled order parameter variable.");
21 params.addParam<MaterialPropertyName>(
22 "mob_name",
"M",
"The mobility used with the kernel, should be a constant value");
27 : Kernel(parameters), _M(getMaterialProperty<Real>(
"mob_name"))
34 return _M[_qp] * _grad_u[_qp] * _grad_test[_i][_qp];
40 return _M[_qp] * _grad_phi[_j][_qp] * _grad_test[_i][_qp];