Skip to content

Commit

Permalink
Finished working version of combine_topo test that includes lat_lon a…
Browse files Browse the repository at this point in the history
…nd cubed_sphere remapping cases, and successfully ran for 0.1 deg and ne30 target grids
  • Loading branch information
bmooremaley committed Oct 6, 2024
1 parent 8c1a103 commit fcceb05
Show file tree
Hide file tree
Showing 3 changed files with 193 additions and 126 deletions.
5 changes: 4 additions & 1 deletion compass/ocean/tests/utility/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ def __init__(self, mpas_core):
"""
super().__init__(mpas_core=mpas_core, name='utility')

self.add_test_case(CombineTopo(test_group=self, target_grid='lat_lon'))
for target_grid in ['lat_lon', 'cubed_sphere']:
self.add_test_case(
CombineTopo(test_group=self, target_grid=target_grid),
)
self.add_test_case(CullRestarts(test_group=self))
self.add_test_case(ExtrapWoa(test_group=self))
Loading

0 comments on commit fcceb05

Please sign in to comment.