18 InputParameters params = validParams<IntegratedBC>();
19 params.addRequiredCoupledVar(
"rho_u",
"x-component of momentum");
20 params.addCoupledVar(
"rho_v",
"y-component of momentum");
21 params.addCoupledVar(
"rho_w",
"z-component of momentum");
22 params.addRequiredCoupledVar(
"enthalpy",
"Enthalpy");
28 : IntegratedBC(parameters),
29 _enthalpy(coupledValue(
"enthalpy")),
30 _rho_u(coupledValue(
"rho_u")),
31 _rho_v(isCoupled(
"rho_v") ? coupledValue(
"rho_v") : _zero),
32 _rho_w(isCoupled(
"rho_w") ? coupledValue(
"rho_w") : _zero)
41 return rho_u_vec *
_enthalpy[_qp] * _normals[_qp] * _test[_i][_qp];