Skip to content

Commit

Permalink
Loosen MHD convergence check a hair
Browse files Browse the repository at this point in the history
  • Loading branch information
bprather authored Sep 5, 2024
1 parent 1469a89 commit 767ac9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/mhdmodes/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@
# Most runs all variables are between 1.95-2.05
# But w/Face-CT and upwinding, u2/u3 converge at 2.3, rho/u at 2.15
if VARS[k] == 'u2' or VARS[k] == 'u3':
if powerfits[k] > -1.95 or ("entropy" not in SHORT and powerfits[k] < -2.3):
if powerfits[k] > -1.94 or ("entropy" not in SHORT and powerfits[k] < -2.3):
fail = 1
else:
if powerfits[k] > -1.95 or ("entropy" not in SHORT and powerfits[k] < -2.15):
if powerfits[k] > -1.94 or ("entropy" not in SHORT and powerfits[k] < -2.15):
fail = 1

# MAKE PLOTS
Expand Down

0 comments on commit 767ac9f

Please # to comment.