Changeset 15182
- Timestamp:
- 2021-08-12T13:24:11+02:00 (4 years ago)
- Location:
- NEMO/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/src/OCE/ZDF/zdfmxl.F90
r15090 r15182 144 144 ! w-level of the turbocline and mixing layer (iom_use) 145 145 imld(:,:) = mbkt(A2D(nn_hls)) + 1 ! Initialization to the number of w ocean point 146 DO_3DS( nn_hls, nn_hls, nn_hls, nn_hls, jpkm1, nlb10, -1 ) ! from the bottom to nlb10146 DO_3DS( 1, 1, 1, 1, jpkm1, nlb10, -1 ) ! from the bottom to nlb10 147 147 IF( avt (ji,jj,jk) < avt_c * wmask(ji,jj,jk) ) imld(ji,jj) = jk ! Turbocline 148 148 END_3D 149 149 ! depth of the mixing layer 150 DO_2D_OVR( nn_hls, nn_hls, nn_hls, nn_hls)150 DO_2D_OVR( 1, 1, 1, 1 ) 151 151 iik = imld(ji,jj) 152 152 hmld (ji,jj) = gdepw(ji,jj,iik ,Kmm) * ssmask(ji,jj) ! Turbocline depth -
NEMO/trunk/src/OCE/ZDF/zdfphy.F90
r15160 r15182 349 349 350 350 ! !* Lateral boundary conditions (sign unchanged) 351 IF( .NOT. l_istiled .OR. ntile == nijtile ) THEN ! Do only on the last tile351 IF(nn_hls==1) THEN 352 352 IF( l_zdfsh2 ) THEN 353 353 CALL lbc_lnk( 'zdfphy', avm_k, 'W', 1.0_wp , avt_k, 'W', 1.0_wp, & -
NEMO/trunk/src/TOP/PISCES/P4Z/p4zsms.F90
r15090 r15182 24 24 USE trdtrc ! TOP trends variables 25 25 USE sedmodel ! Sediment model 26 USE lbclnk ! ocean lateral boundary conditions (or mpp link) 26 27 USE prtctl ! print control for debugging 27 28 … … 120 121 CALL p4z_che( Kbb, Kmm ) ! computation of chemical constants 121 122 CALL p4z_int( kt, Kbb, Kmm ) ! computation of various rates for biogeochemistry 123 ! 124 IF( nn_hls > 1 ) CALL lbc_lnk( 'p4zsms', hmld(:,:), 'T', 1._wp ) ! hmld defined only on first halo in zdfmxl 122 125 ! 123 126 DO jnt = 1, nrdttrc ! Potential time splitting if requested
Note: See TracChangeset
for help on using the changeset viewer.