Skip to content

Commit 79db8a5

Browse files
committed
Rename WC14 --> NARRM14
1 parent cd6224d commit 79db8a5

16 files changed

+11
-11
lines changed

compass/ocean/tests/global_ocean/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(self, mpas_core):
4545

4646
self._add_tests(mesh_names=['SO12to60', 'SOwISC12to60'])
4747

48-
self._add_tests(mesh_names=['WC14', 'WCwISC14'])
48+
self._add_tests(mesh_names=['NARRM14', 'NARRMwISC14'])
4949

5050
# RRS6to18: with and without cavities
5151
self._add_tests(mesh_names=['RRS6to18', 'RRSwISC6to18'])

compass/ocean/tests/global_ocean/global_ocean.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ forward_update_pio = True
7979
## metadata related to the mesh
8080
# whether to add metadata to output files
8181
add_metadata = True
82-
# the prefix (e.g. QU, EC, WC, SO)
82+
# the prefix (e.g. QU, EC, NARRM, SO)
8383
prefix = PREFIX
8484
# a description of the mesh
8585
mesh_description = <<<Missing>>>

compass/ocean/tests/global_ocean/mesh/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
from compass.ocean.tests.global_ocean.mesh.fris04to60 import FRIS04to60BaseMesh
1212
from compass.ocean.tests.global_ocean.mesh.fris08to60 import FRIS08to60BaseMesh
1313
from compass.ocean.tests.global_ocean.mesh.kuroshio import KuroshioBaseMesh
14+
from compass.ocean.tests.global_ocean.mesh.narrm14 import NARRM14BaseMesh
1415
from compass.ocean.tests.global_ocean.mesh.qu import (
1516
IcosMeshFromConfigStep,
1617
QUMeshFromConfigStep,
1718
)
1819
from compass.ocean.tests.global_ocean.mesh.rrs6to18 import RRS6to18BaseMesh
1920
from compass.ocean.tests.global_ocean.mesh.so12to60 import SO12to60BaseMesh
20-
from compass.ocean.tests.global_ocean.mesh.wc14 import WC14BaseMesh
2121
from compass.ocean.tests.global_ocean.metadata import (
2222
get_author_and_email_from_git,
2323
)
@@ -110,8 +110,8 @@ def __init__(self, test_group, mesh_name, high_res_topography):
110110
base_mesh_step = FRIS08to60BaseMesh(self, name=name, subdir=subdir)
111111
elif mesh_name.startswith('Kuroshio'):
112112
base_mesh_step = KuroshioBaseMesh(self, name=name, subdir=subdir)
113-
elif mesh_name in ['WC14', 'WCwISC14']:
114-
base_mesh_step = WC14BaseMesh(self, name=name, subdir=subdir)
113+
elif mesh_name in ['NARRM14', 'NARRMwISC14']:
114+
base_mesh_step = NARRM14BaseMesh(self, name=name, subdir=subdir)
115115
else:
116116
raise ValueError(f'Unknown mesh name {mesh_name}')
117117

compass/ocean/tests/global_ocean/mesh/wc14/__init__.py renamed to compass/ocean/tests/global_ocean/mesh/narrm14/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
from compass.mesh import QuasiUniformSphericalMeshStep
1515

1616

17-
class WC14BaseMesh(QuasiUniformSphericalMeshStep):
17+
class NARRM14BaseMesh(QuasiUniformSphericalMeshStep):
1818
"""
19-
A step for creating WC14 mesh
19+
A step for creating NARRM14 mesh
2020
"""
2121
def setup(self):
2222
"""
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

compass/ocean/tests/global_ocean/mesh/wc14/wc14.cfg renamed to compass/ocean/tests/global_ocean/mesh/narrm14/narrm14.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ transition_levels = 28
2828
approx_cell_count = 410000
2929

3030
## metadata related to the mesh
31-
# the prefix (e.g. QU, EC, WC, SO)
32-
prefix = WC
31+
# the prefix (e.g. QU, EC, NARRM, SO)
32+
prefix = NARRM
3333
# a description of the mesh and initial condition
3434
mesh_description = MPAS North America and Arctic Focused Water Cycle mesh for E3SM version
3535
${e3sm_version}, with a focused ${min_res}-km resolution

0 commit comments

Comments
 (0)