11 #include "MooseMesh.h"
21 params.addClassDescription(
"This class implements the 'No BC' boundary condition based on the "
22 "'Laplace' form of the viscous stress tensor.");
35 Real viscous_part = -
_mu[_qp] * (_grad_u[_qp] * _normals[_qp]) * _test[_i][_qp];
38 Real pressure_part = 0.;
40 pressure_part =
_p[_qp] * _normals[_qp](
_component) * _test[_i][_qp];
42 return viscous_part + pressure_part;
48 return -
_mu[_qp] * (_grad_phi[_j][_qp] * _normals[_qp]) * _test[_i][_qp];
55 return _phi[_j][_qp] * _normals[_qp](
_component) * _test[_i][_qp];