Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhichen3 committed Aug 29, 2024
1 parent 1942efa commit 00c58e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyro/compressible/riemann.py
Original file line number Diff line number Diff line change
Expand Up @@ -908,11 +908,11 @@ def riemann_flux(idir, U_l, U_r, my_data, rp, ivars,

riemannFunc = riemann_solvers[riemann_method]

_f = riemann_hllc(idir, myg.ng,
ivars.idens, ivars.ixmom, ivars.iymom,
ivars.iener, ivars.irhox, ivars.naux,
lower_solid, upper_solid,
gamma, U_l, U_r)
_f = riemannFunc(idir, myg.ng,
ivars.idens, ivars.ixmom, ivars.iymom,
ivars.iener, ivars.irhox, ivars.naux,
lower_solid, upper_solid,
gamma, U_l, U_r)

# If riemann_method is not HLLC, then it outputs interface conserved states
if riemann_method != "HLLC":
Expand Down

0 comments on commit 00c58e9

Please sign in to comment.