From c3bda77fcc9e0c3ecd94aefd6c5a709d6171fb14 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Thu, 21 Nov 2024 11:26:49 -0700 Subject: [PATCH] fix location of conditional --- amr-wind/wind_energy/ABL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amr-wind/wind_energy/ABL.cpp b/amr-wind/wind_energy/ABL.cpp index 0c3117a525..8504e7b595 100644 --- a/amr-wind/wind_energy/ABL.cpp +++ b/amr-wind/wind_energy/ABL.cpp @@ -238,10 +238,10 @@ void ABL::pre_advance_work() m_stats->vel_profile_coarse()); } - m_bndry_plane->pre_advance_work(); if (!m_sim.has_overset()) { - m_abl_mpl->pre_advance_work(); + m_bndry_plane->pre_advance_work(); } + m_abl_mpl->pre_advance_work(); } /** Perform tasks at the beginning of a timestep, but after pre_advance