Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/tutorials/dev_add_rrm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Next, we need to add this mesh to the list of known meshes:

...

def __init__(self, test_group, mesh_name, remap_topography):
def __init__(self, test_group, mesh_name, high_res_topography):

...

Expand Down Expand Up @@ -225,7 +225,7 @@ group:

for mesh_name in ['YAM10to60', 'YAMwISC10to60']:
mesh_test = Mesh(test_group=self, mesh_name=mesh_name,
remap_topography=True)
high_res_topography=True)
self.add_test_case(mesh_test)

# A test case for making E3SM support files from an existing mesh
Expand Down Expand Up @@ -1166,7 +1166,7 @@ new mesh:

for mesh_name in ['YAM10to60', 'YAMwISC10to60']:
mesh_test = Mesh(test_group=self, mesh_name=mesh_name,
remap_topography=True)
high_res_topography=True)
self.add_test_case(mesh_test)

init_test = Init(test_group=self, mesh=mesh_test,
Expand Down Expand Up @@ -1438,7 +1438,7 @@ group:

for mesh_name in ['YAM10to60', 'YAMwISC10to60']:
mesh_test = Mesh(test_group=self, mesh_name=mesh_name,
remap_topography=True)
high_res_topography=True)
self.add_test_case(mesh_test)

init_test = Init(test_group=self, mesh=mesh_test,
Expand Down