Skip to content

Commit 1216c4d

Browse files
sbryngelsonclaude
andcommitted
Fix BC_SlIP_WALL casing typo in boundary conditions
The case statement used BC_SlIP_WALL (lowercase l) instead of BC_SLIP_WALL, which would fail to match the constant defined in m_constants.fpp, making the slip wall boundary condition unreachable for this specific 3D boundary direction. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4ff0bef commit 1216c4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/common/m_boundary_common.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ contains
275275
call s_symmetry(q_prim_vf, 3, 1, k, l, pb_in, mv_in)
276276
case (BC_PERIODIC)
277277
call s_periodic(q_prim_vf, 3, 1, k, l, pb_in, mv_in)
278-
case (BC_SlIP_WALL)
278+
case (BC_SLIP_WALL)
279279
call s_slip_wall(q_prim_vf, 3, 1, k, l)
280280
case (BC_NO_SLIP_WALL)
281281
call s_no_slip_wall(q_prim_vf, 3, 1, k, l)

0 commit comments

Comments
 (0)