Skip to content

Commit

Permalink
Merge pull request #66 from COSIMA/iss65
Browse files Browse the repository at this point in the history
support non-BGC ACCESS-OM2 configs
  • Loading branch information
aekiss authored Aug 10, 2022
2 parents 10b3527 + 27bcc45 commit edcfa6f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/auscom/cpl_forcing_handler.F90
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module cpl_forcing_handler
use cpl_netcdf_setup
use cpl_arrays_setup
use ice_calendar, only: dt
use ice_zbgc_shared, only: ocean_bio,flux_bio,nlt_bgc_N,nlt_bgc_NO
use ice_zbgc_shared, only: ocean_bio, flux_bio, nlt_bgc_N, nlt_bgc_NO, skl_bgc

implicit none

Expand Down Expand Up @@ -187,8 +187,10 @@ subroutine get_time0_o2i_fields(fname)
call ice_read_nc(ncid_o2i, 1, 'sslx_i', sslx, dbug)
call ice_read_nc(ncid_o2i, 1, 'ssly_i', ssly, dbug)
call ice_read_nc(ncid_o2i, 1, 'pfmice_i', pfmice, dbug)
call ice_read_nc(ncid_o2i, 1, 'ssn_i', ssn, dbug)
call ice_read_nc(ncid_o2i, 1, 'ssalg_i', ssalg, dbug)
if ( skl_bgc ) then
call ice_read_nc(ncid_o2i, 1, 'ssn_i', ssn, dbug)
call ice_read_nc(ncid_o2i, 1, 'ssalg_i', ssalg, dbug)
endif
if (my_task == master_task) call ice_close_nc(ncid_o2i)
else
print *, 'CICE: (get_time0_o2i_fields_old) not found file *** ',fname
Expand Down

0 comments on commit edcfa6f

Please sign in to comment.