From 7404e5042cfca28984d07a61189aed84cb25452e Mon Sep 17 00:00:00 2001 From: Marc Henry de Frahan Date: Mon, 7 Oct 2024 16:04:35 -0600 Subject: [PATCH] fix --- amr-wind/convection/incflo_mol_fluxes.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amr-wind/convection/incflo_mol_fluxes.cpp b/amr-wind/convection/incflo_mol_fluxes.cpp index 951be3c76f..6854141218 100644 --- a/amr-wind/convection/incflo_mol_fluxes.cpp +++ b/amr-wind/convection/incflo_mol_fluxes.cpp @@ -56,7 +56,7 @@ void mol::compute_convective_fluxes( // At an ext_dir boundary, the boundary value is on the face, not cell // center. auto extdir_lohi = amr_wind::utils::has_extdir_or_ho( - h_bcrec, ncomp, static_cast(Direction::x)); + h_bcrec, ncomp, static_cast(amrex::Direction::x)); bool has_extdir_lo = extdir_lohi.first; bool has_extdir_hi = extdir_lohi.second; if ((has_extdir_lo and domain_ilo >= xbx.smallEnd(0) - 1) or @@ -123,7 +123,7 @@ void mol::compute_convective_fluxes( } extdir_lohi = amr_wind::utils::has_extdir_or_ho( - h_bcrec, ncomp, static_cast(Direction::y)); + h_bcrec, ncomp, static_cast(amrex::Direction::y)); has_extdir_lo = extdir_lohi.first; has_extdir_hi = extdir_lohi.second; if ((has_extdir_lo and domain_jlo >= ybx.smallEnd(1) - 1) or @@ -190,7 +190,7 @@ void mol::compute_convective_fluxes( } extdir_lohi = amr_wind::utils::has_extdir_or_ho( - h_bcrec, ncomp, static_cast(Direction::z)); + h_bcrec, ncomp, static_cast(amrex::Direction::z)); has_extdir_lo = extdir_lohi.first; has_extdir_hi = extdir_lohi.second; if ((has_extdir_lo and domain_klo >= zbx.smallEnd(2) - 1) or