Skip to content

Commit

Permalink
fix typo (erf-model#1746)
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren authored Aug 17, 2024
1 parent 2be6792 commit 94ada6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/BoundaryConditions/ABLMost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ ABLMost::compute_most_bcs (const int& lev,
n = RhoQ1_comp;
ParallelFor(b2d, [=] AMREX_GPU_DEVICE (int i, int j, int k)
{
Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dxInv[2];
Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dxInv[2];
Real dz = (zphys_arr) ? ( zphys_arr(i,j,klo ) - zphys_arr(i,j,klo-1) ) : dz_no_terrain;
Real dz1 = (zphys_arr) ? ( zphys_arr(i,j,klo+1) - zphys_arr(i,j,klo ) ) : dz_no_terrain;
Real Qflux = flux_comp.compute_q_flux(i, j, k, n, icomp, dz, dz1, exp_most, eta_arr,
cons_arr, velx_arr, vely_arr,
umm_arr, qm_arr, u_star_arr, q_star_arr, t_surf_arr,
Expand Down

0 comments on commit 94ada6b

Please sign in to comment.