Skip to content

Commit

Permalink
Attempting to reapply a failing autotest. Unable to discern why it is…
Browse files Browse the repository at this point in the history
… failing as downloaded contents from its failure are working locally.
  • Loading branch information
emorway-usgs committed Feb 9, 2024
1 parent 5be224f commit 995f98a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions autotest/test_gwe_uze00_flux.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def flux_analyt(t, z, qt0, qtinfil, v, d):
0.3480242 + zeta * (-0.0958798 + zeta * 0.7478556)
)
flux = qt0 + 0.5 * (qtinfil - qt0) * (
math.erfc(ztermm) + math.exp(vterm - ztermp ** 2) * polyterm
math.erfc(ztermm) + math.exp(vterm - ztermp**2) * polyterm
)
return flux

Expand All @@ -86,7 +86,7 @@ def temp_analyt(t, z, t0, tinfil, v, d):
0.3480242 + zeta * (-0.0958798 + zeta * 0.7478556)
)
temp = t0 + 0.5 * (tinfil - t0) * (
math.erfc(ztermm) + math.exp(vterm - ztermp ** 2) * polyterm
math.erfc(ztermm) + math.exp(vterm - ztermp**2) * polyterm
)
return temp

Expand Down Expand Up @@ -292,7 +292,7 @@ def build_models(idx, test):
)

# output control
flopy.mf6.ModflowGwfoc(
oc = flopy.mf6.ModflowGwfoc(
gwf,
budget_filerecord=f"{name}.cbc",
head_filerecord=f"{name}.hds",
Expand All @@ -302,9 +302,9 @@ def build_models(idx, test):
filename=f"{gwfname}.oc",
)

# ----------------------------------
# ----------------------------------------------------
# Instantiating MODFLOW 6 GWE model
# ----------------------------------
# ----------------------------------------------------
gwe = flopy.mf6.ModflowGwe(
sim, modelname=gwename, model_nam_file=f"{gwename}.nam"
)
Expand Down

0 comments on commit 995f98a

Please sign in to comment.