Skip to content

Commit

Permalink
Adjust Greenland decomp tolerance
Browse files Browse the repository at this point in the history
Another adjustment required after updating Albany and after switching to
a real temperature field.
  • Loading branch information
matthewhoffman committed Apr 14, 2022
1 parent d3bb2fd commit a9b965b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions compass/landice/tests/greenland/decomposition_test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,17 @@ 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
compare_variables(test_case=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)

0 comments on commit a9b965b

Please sign in to comment.