Changeset 6714
- Timestamp:
- 2016-06-15T15:28:43+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_GO6_package_MEDUSA_temporary/NEMOGCM/NEMO/OPA_SRC/step.F90
r6498 r6714 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) … … 109 111 CALL bdy_dta ( kstp, time_offset=+1 ) ! update dynamic & tracer data at open boundaries 110 112 ENDIF 113 114 ! We must ensure that tsb halos are up to date on EVERY timestep. 115 DO tind = 1, jpts 116 CALL lbc_lnk( tsb(:,:,:,tind), 'T', 1. ) 117 END DO 118 111 119 CALL sbc ( kstp ) ! Sea Boundary Condition (including sea-ice) 112 120 ! clem: moved here for bdy ice purpose
Note: See TracChangeset
for help on using the changeset viewer.