18 InputParameters params = validParams<IntegratedBC>();
20 params.addClassDescription(
"This class implements the 'No BC' boundary condition discussed by "
21 "Griffiths, Papanastiou, and others.");
23 params.addParam<MaterialPropertyName>(
"k_name",
"k",
"thermal conductivity_name");
29 : IntegratedBC(parameters),
31 _k(getMaterialProperty<Real>(
"k_name"))
39 return _k[_qp] * _grad_u[_qp] * _normals[_qp] * _test[_i][_qp];
45 return _k[_qp] * (_grad_phi[_j][_qp] * _normals[_qp]) * _test[_i][_qp];