Skip to content

Commit

Permalink
fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Sep 18, 2023
1 parent 121cb28 commit 14c7013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/hydro/fourth_order.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ Castro::fourth_avisc(const Box& bx,
avis(i,j,k) = avis(i,j,k) + 0.25_rt*(q_arr(i+1,j,k,QU) - q_arr(i-1,j,k,QU) +
q_arr(i+1,j,k-1,QU) - q_arr(i-1,j,k-1,QU)) * dxinv;

cmin = amrex::min(qaux(i,j,k,QC), qaux(i,j,k-1,QC));
cmin = amrex::min(qaux_arr(i,j,k,QC), qaux_arr(i,j,k-1,QC));

}

Expand Down

0 comments on commit 14c7013

Please sign in to comment.