Skip to content

Commit

Permalink
minor editing.
Browse files Browse the repository at this point in the history
  • Loading branch information
pkestene committed Sep 8, 2024
1 parent ebc14aa commit c494809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/muscl/MHDRunFunctors2D.h
Original file line number Diff line number Diff line change
Expand Up @@ -1399,10 +1399,10 @@ class ReconstructEdgeComputeEmfAndUpdateFunctor2D : public MHDBaseFunctor2D
const auto i0 = i;
const auto j0 = j;

const real_t AL = Udata_in(i0 + 0, j0 + 0, IA) + sFaceMag(i, j, IX);
const real_t AL = Udata_in(i0 + 0, j0 + 0, IA) + sFaceMag(i0 + 0, j0 + 0, IX);
const real_t dALy = compute_limited_slope<DIR_Y>(Udata_in, i0 + 0, j0 + 0, IA);

const real_t BL = Udata_in(i0 + 0, j0 + 0, IB) + sFaceMag(i, j, IY);
const real_t BL = Udata_in(i0 + 0, j0 + 0, IB) + sFaceMag(i0 + 0, j0 + 0, IY);
const real_t dBLx = compute_limited_slope<DIR_X>(Udata_in, i0 + 0, j0 + 0, IB);

get_state(Slopes_x, i0, j0, dqX);
Expand Down

0 comments on commit c494809

Please sign in to comment.