Skip to content

Commit

Permalink
Get vel_z name correct
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsayad authored and cticenhour committed Sep 26, 2019
1 parent d3288e1 commit e7e8392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bcs/PenaltyDisplaceBoundaryBC.C
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ PenaltyDisplaceBoundaryBC<compute_stage>::PenaltyDisplaceBoundaryBC(
: ADIntegratedBC<compute_stage>(parameters),
_vel_x(adCoupledValue("vel_x")),
_vel_y(this->isCoupled("vel_y") ? adCoupledValue("vel_y") : adZeroValue()),
_vel_z(this->isCoupled("vel_z") ? adCoupledValue("vel_") : adZeroValue()),
_vel_z(this->isCoupled("vel_z") ? adCoupledValue("vel_z") : adZeroValue()),
_disp_x_dot(adCoupledDot("disp_x")),
_disp_y_dot(this->isCoupled("disp_y") ? adCoupledDot("disp_y") : adZeroValue()),
_disp_z_dot(this->isCoupled("disp_z") ? adCoupledDot("disp_z") : adZeroValue()),
Expand Down

0 comments on commit e7e8392

Please sign in to comment.