Skip to content

Commit

Permalink
WIP: hadgem3: fix cice_init so it calls 'count_tracers'
Browse files Browse the repository at this point in the history
This was forgotten back in 8b0ae03 (Refactor tracer initialization (CICE-Consortium#235), 2018-11-16)
  • Loading branch information
phil-blain committed Dec 14, 2020
1 parent 8738a19 commit 9b178e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cicecore/drivers/direct/hadgem3/CICE_InitMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ subroutine cice_init
use ice_history, only: init_hist, accum_hist
use ice_restart_shared, only: restart, runid, runtype
use ice_init, only: input_data, init_state
use ice_init_column, only: init_thermo_vertical, init_shortwave, init_zbgc
use ice_init_column, only: init_thermo_vertical, init_shortwave, init_zbgc, input_zbgc, count_tracers
use ice_kinds_mod
use ice_restoring, only: ice_HaloRestore_init
use ice_timers, only: timer_total, init_ice_timers, ice_timer_start
Expand All @@ -101,6 +101,8 @@ subroutine cice_init
file=__FILE__,line= __LINE__)

call input_data ! namelist variables
call input_zbgc ! vertical biogeochemistry namelist
call count_tracers ! count tracers

call init_domain_blocks ! set up block decomposition
call init_grid1 ! domain distribution
Expand Down

0 comments on commit 9b178e7

Please sign in to comment.