from compass.config import CompassConfigParser
from compass.testcase import TestCase
from compass.ocean.tests.global_convergence.cosine_bell.mesh import Mesh
from compass.ocean.tests.global_convergence.cosine_bell.init import Init
from compass.ocean.tests.global_convergence.cosine_bell.forward import Forward
from compass.ocean.tests.global_convergence.cosine_bell.analysis import \
Analysis
[docs]class CosineBell(TestCase):
"""
A test case for creating a global MPAS-Ocean mesh
Attributes
----------
resolutions : list of int
"""
[docs] def __init__(self, test_group):
"""
Create test case for creating a global MPAS-Ocean mesh
Parameters
----------
test_group : compass.ocean.tests.cosine_bell.GlobalOcean
The global ocean test group that this test case belongs to
"""
super().__init__(test_group=test_group, name='cosine_bell')
self.resolutions = None
# add the steps with default resolutions so they can be listed
config = CompassConfigParser()
config.add_from_package(self.__module__, f'{self.name}.cfg')
self._setup_steps(config)
[docs] def run(self):
"""
Run each step of the testcase
"""
config = self.config
for resolution in self.resolutions:
cores = config.getint('cosine_bell', f'QU{resolution}_cores')
min_cores = config.getint('cosine_bell',
f'QU{resolution}_min_cores')
step = self.steps[f'QU{resolution}_forward']
step.cores = cores
step.min_cores = min_cores
# run the step
super().run()
def update_cores(self):
""" Update the number of cores and min_cores for each forward step """
config = self.config
goal_cells_per_core = config.getfloat('cosine_bell',
'goal_cells_per_core')
max_cells_per_core = config.getfloat('cosine_bell',
'max_cells_per_core')
for resolution in self.resolutions:
# a heuristic based on QU30 (65275 cells) and QU240 (10383 cells)
approx_cells = 6e8 / resolution**2
# ideally, about 300 cells per core
# (make it a multiple of 4 because...it looks better?)
cores = max(1,
4*round(approx_cells / (4 * goal_cells_per_core)))
# In a pinch, about 3000 cells per core
min_cores = max(1,
round(approx_cells / max_cells_per_core))
step = self.steps[f'QU{resolution}_forward']
step.cores = cores
step.min_cores = min_cores
config.set('cosine_bell', f'QU{resolution}_cores', str(cores),
comment=f'Target core count for {resolution} km mesh')
config.set('cosine_bell', f'QU{resolution}_min_cores',
str(min_cores),
comment=f'Minimum core count for {resolution} km mesh')
def _setup_steps(self, config):
""" setup steps given resolutions """
resolutions = config.getlist('cosine_bell', 'resolutions', dtype=int)
if self.resolutions is not None and self.resolutions == resolutions:
return
# start fresh with no steps
self.steps = dict()
self.steps_to_run = list()
self.resolutions = resolutions
for resolution in resolutions:
self.add_step(Mesh(test_case=self, resolution=resolution))
self.add_step(Init(test_case=self, resolution=resolution))
self.add_step(Forward(test_case=self, resolution=resolution))
self.add_step(Analysis(test_case=self, resolutions=resolutions))