From 7c585631c0e6c3b03776aea02a2f19126ad1d2bd Mon Sep 17 00:00:00 2001 From: Carles Tena Date: Thu, 13 Feb 2020 18:15:26 +0100 Subject: [PATCH] Solving bug on global domains selection --- hermesv3_gr/modules/grids/grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermesv3_gr/modules/grids/grid.py b/hermesv3_gr/modules/grids/grid.py index eb5be2e..2a1c23d 100755 --- a/hermesv3_gr/modules/grids/grid.py +++ b/hermesv3_gr/modules/grids/grid.py @@ -34,7 +34,7 @@ def select_grid(comm, arguments): # Creating a different object depending on the grid type if arguments.domain_type == 'global': from hermesv3_gr.modules.grids.grid_global import GlobalGrid - grid = GlobalGrid(arguments.grid_type, arguments.vertical_description, arguments.output_timestep_num, + grid = GlobalGrid(arguments.domain_type, arguments.vertical_description, arguments.output_timestep_num, arguments.auxiliary_files_path, arguments.inc_lat, arguments.inc_lon, comm=comm) elif arguments.domain_type == 'regular': -- GitLab