Skip to content

Commit

Permalink
No support for global ops yet
Browse files Browse the repository at this point in the history
When calling marbl_instance%init(), we should tell MARBL that MOM6 doesn't have
the global operators that MARBL expects (global sums / running means) so we get
the appropriate error message when trying to run with ladjust_bury_coeff = True
  • Loading branch information
mnlevy1981 committed Apr 19, 2024
1 parent 5477f56 commit 39bd3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracer/MARBL_tracers.F90
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ subroutine configure_MARBL_tracers(GV, US, param_file, CS)
call MARBL_instances%init(gcm_num_levels = nz, gcm_num_PAR_subcols = CS%ice_ncat + 1, &
gcm_num_elements_surface_flux = 1, & ! FIXME: change to number of grid cells on MPI task
gcm_delta_z = GV%sInterface(2:nz+1) - GV%sInterface(1:nz), gcm_zw = GV%sInterface(2:nz+1), &
gcm_zt = GV%sLayer, unit_system_opt = "mks", lgcm_has_global_ops = .true.)
gcm_zt = GV%sLayer, unit_system_opt = "mks", lgcm_has_global_ops = .false.) ! FIXME: add global ops
if (MARBL_instances%StatusLog%labort_marbl) &
call MARBL_instances%StatusLog%log_error_trace("MARBL_instances%init", &
"configure_MARBL_tracers")
Expand Down

0 comments on commit 39bd3b3

Please sign in to comment.