Changeset 6539
- Timestamp:
- 2016-05-16T13:29:48+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_restart_fix/NEMOGCM/NEMO/OPA_SRC/step.F90
r6538 r6539 33 33 USE step_oce ! time stepping definition modules 34 34 USE iom 35 USE lbclnk 35 36 36 37 IMPLICIT NONE … … 73 74 !!---------------------------------------------------------------------- 74 75 INTEGER :: jk ! dummy loop indice 76 INTEGER :: tind ! tracer loop index 75 77 INTEGER :: indic ! error indicator if < 0 76 78 INTEGER :: kcall ! optional integer argument (dom_vvl_sf_nxt) … … 105 107 CALL bdy_dta ( kstp, time_offset=+1 ) ! update dynamic & tracer data at open boundaries 106 108 ENDIF 109 110 ! We must ensure that tsb halos are up to date on EVERY timestep. 111 DO tind = 1, jpts 112 CALL lbc_lnk( tsb(:,:,:,tind), 'T', 1. ) 113 END DO 114 107 115 CALL sbc ( kstp ) ! Sea Boundary Condition (including sea-ice) 108 116 ! clem: moved here for bdy ice purpose
Note: See TracChangeset
for help on using the changeset viewer.