From 6ef05cc7e63b30edabe22919b9405a49518b3e9b Mon Sep 17 00:00:00 2001 From: Trevor Ray Hillebrand Date: Wed, 4 May 2022 14:22:17 -0600 Subject: [PATCH] Fix config section name for humboldt_mesh Change config section name from humboldt to humboldt_mesh. This was causing the mesh_gen test case to fail. --- compass/landice/tests/humboldt/mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compass/landice/tests/humboldt/mesh.py b/compass/landice/tests/humboldt/mesh.py index 864efa3f59..00191f4691 100644 --- a/compass/landice/tests/humboldt/mesh.py +++ b/compass/landice/tests/humboldt/mesh.py @@ -212,7 +212,7 @@ def build_cell_width(self): # plt.pcolor(distToEdge/1000.0); plt.colorbar(); plt.show() # Set cell widths based on mesh parameters set in config file - cell_width = set_cell_width(self, section='humboldt', thk=thk, + cell_width = set_cell_width(self, section='humboldt_mesh', thk=thk, vx=vx, vy=vy, dist_to_edge=distToEdge, dist_to_grounding_line=None) # plt.pcolor(cell_width); plt.colorbar(); plt.show()