Skip to content

Commit

Permalink
Merge pull request #660 from matthewhoffman/landice/update_circshelf_tol
Browse files Browse the repository at this point in the history
Update tolerance on circ shelf decomp test

This is required to allow circular shelf decomposition test to pass after updating version of Albany in #641. The differences are expected. Closes #654 .
  • Loading branch information
matthewhoffman authored Aug 4, 2023
2 parents 9b82e96 + cf74639 commit e9a8b11
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from compass.validate import compare_variables
from compass.testcase import TestCase
from compass.landice.tests.circular_shelf.setup_mesh import SetupMesh
from compass.landice.tests.circular_shelf.run_model import RunModel
from compass.landice.tests.circular_shelf.setup_mesh import SetupMesh
from compass.landice.tests.circular_shelf.visualize import Visualize
from compass.testcase import TestCase
from compass.validate import compare_variables


class DecompositionTest(TestCase):
Expand Down Expand Up @@ -60,15 +60,15 @@ def validate(self):
compare_variables(test_case=self, variables=['normalVelocity', ],
filename1='1proc_run/output.nc',
filename2='4proc_run/output.nc',
l1_norm=1.0e-12, l2_norm=1.0e-14,
l1_norm=1.0e-11, l2_norm=1.0e-13,
linf_norm=1.0e-15, quiet=False)
compare_variables(test_case=self, variables=['uReconstructX', ],
filename1='1proc_run/output.nc',
filename2='4proc_run/output.nc',
l1_norm=1.0e-12, l2_norm=2.0e-14,
l1_norm=1.0e-11, l2_norm=1.0e-13,
linf_norm=1.0e-15, quiet=False)
compare_variables(test_case=self, variables=['uReconstructY', ],
filename1='1proc_run/output.nc',
filename2='4proc_run/output.nc',
l1_norm=1.0e-12, l2_norm=2.0e-14,
l1_norm=1.0e-11, l2_norm=1.0e-13,
linf_norm=1.0e-15, quiet=False)

0 comments on commit e9a8b11

Please sign in to comment.