From 1216c4d10ca73df2420ae417155f6ef3693fb66b Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sat, 21 Feb 2026 17:57:33 -0500 Subject: [PATCH] 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 --- src/common/m_boundary_common.fpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/m_boundary_common.fpp b/src/common/m_boundary_common.fpp index 8b8d301123..2021efb9d2 100644 --- a/src/common/m_boundary_common.fpp +++ b/src/common/m_boundary_common.fpp @@ -275,7 +275,7 @@ contains call s_symmetry(q_prim_vf, 3, 1, k, l, pb_in, mv_in) case (BC_PERIODIC) call s_periodic(q_prim_vf, 3, 1, k, l, pb_in, mv_in) - case (BC_SlIP_WALL) + case (BC_SLIP_WALL) call s_slip_wall(q_prim_vf, 3, 1, k, l) case (BC_NO_SLIP_WALL) call s_no_slip_wall(q_prim_vf, 3, 1, k, l)