Skip to content

Commit

Permalink
fix oops from previous commit (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren authored Aug 3, 2024
1 parent 45a3521 commit 0457abc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/convection/incflo_compute_MAC_projected_velocities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ incflo::compute_MAC_projected_velocities (

// Predict normal velocity to faces -- note that the {u_mac, v_mac, w_mac}
// returned from this call are on face CENTROIDS
bool allow_inflow_on_outflow = false;
HydroUtils::ExtrapVelToFaces(*vel[lev], *vel_forces[lev],
AMREX_D_DECL(*u_mac[lev], *v_mac[lev], *w_mac[lev]),
get_velocity_bcrec(), get_velocity_bcrec_device_ptr(),
Expand All @@ -171,7 +172,8 @@ incflo::compute_MAC_projected_velocities (
m_eb_flow.enabled ? get_velocity_eb()[lev] : nullptr,
#endif
m_godunov_ppm, m_godunov_use_forces_in_trans,
l_advection_type, PPM::default_limiter, BC_MF.get());
l_advection_type, PPM::default_limiter,
allow_inflow_on_outflow, BC_MF.get());
}

Vector<Array<MultiFab*,AMREX_SPACEDIM> > mac_vec(finest_level+1);
Expand Down

0 comments on commit 0457abc

Please sign in to comment.