from compass.testcase import TestCase
from compass.landice.tests.ismip6_forcing.ocean_basal.process_basal_melt \
import ProcessBasalMelt
from compass.landice.tests.ismip6_forcing.configure import configure as \
configure_testgroup
[docs]class OceanBasal(TestCase):
"""
A test case for processing the ISMIP6 ocean basalmelt param. coeff. data.
The test case builds a mapping file for interpolation between the
ISMIP6 8km polarstereo grid and MALI mesh, regrids the forcing data
and renames the ISMIP6 variables to corresponding MALI variables.
"""
[docs] def __init__(self, test_group):
"""
Create the test case
Parameters
----------
test_group : compass.landice.tests.ismip6_forcing.Ismip6Forcing
The test group that this test case belongs to
"""
name = "ocean_basal"
super().__init__(test_group=test_group, name=name)
step = ProcessBasalMelt(test_case=self)
self.add_step(step)