From 995f98a0fc37ad33d5184796c711acd0b784bdc7 Mon Sep 17 00:00:00 2001 From: Eric Morway Date: Fri, 9 Feb 2024 11:16:43 -0800 Subject: [PATCH] Attempting to reapply a failing autotest. Unable to discern why it is failing as downloaded contents from its failure are working locally. --- autotest/test_gwe_uze00_flux.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autotest/test_gwe_uze00_flux.py b/autotest/test_gwe_uze00_flux.py index 3873865d2a6..e47662f9a64 100644 --- a/autotest/test_gwe_uze00_flux.py +++ b/autotest/test_gwe_uze00_flux.py @@ -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 @@ -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 @@ -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", @@ -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" )