From a9b965b5d613ae73fc46eaa08eed73ab167f07c5 Mon Sep 17 00:00:00 2001 From: Matthew Hoffman Date: Thu, 14 Apr 2022 11:41:36 -0600 Subject: [PATCH] Adjust Greenland decomp tolerance Another adjustment required after updating Albany and after switching to a real temperature field. --- .../tests/greenland/decomposition_test/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compass/landice/tests/greenland/decomposition_test/__init__.py b/compass/landice/tests/greenland/decomposition_test/__init__.py index e14e5b4bba..83104fda2d 100644 --- a/compass/landice/tests/greenland/decomposition_test/__init__.py +++ b/compass/landice/tests/greenland/decomposition_test/__init__.py @@ -64,9 +64,9 @@ def validate(self): variables=['thickness', ], filename1='{}/output.nc'.format(name1), filename2='{}/output.nc'.format(name2), - l1_norm=1.0e-11, - l2_norm=1.0e-11, - linf_norm=1.0e-11, + l1_norm=1.0e-4, + l2_norm=1.0e-4, + linf_norm=1.0e-4, quiet=False) # validate normalVelocity @@ -74,7 +74,7 @@ def validate(self): variables=['normalVelocity', ], filename1='{}/output.nc'.format(name1), filename2='{}/output.nc'.format(name2), - l1_norm=1.0e-13, - l2_norm=1.0e-15, - linf_norm=1.0e-16, + l1_norm=1.0e-5, + l2_norm=1.0e-5, + linf_norm=1.0e-5, quiet=False)