Changeset 14412
- Timestamp:
- 2021-02-05T13:46:51+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser_4.0/src/OCE/ZDF/zdfosm.F90
r14410 r14412 640 640 CALL zdf_osm_external_gradients( mld_prof, zdtdz_mle_ext, zdsdz_mle_ext, zdbdz_mle_ext ) 641 641 CALL zdf_osm_osbl_state_fk( lpyc, lflux, lmle, zwb_fk ) 642 CALL zdf_osm_mle_parameters( mld_prof, hmle, zhmle, zvel_mle, zdiff_mle )642 CALL zdf_osm_mle_parameters( zmld, mld_prof, hmle, zhmle, zvel_mle, zdiff_mle ) 643 643 ELSE ! ln_osm_mle 644 644 ! FK not selected, Boundary Layer only. … … 2578 2578 2579 2579 END SUBROUTINE zdf_osm_zmld_horizontal_gradients 2580 SUBROUTINE zdf_osm_mle_parameters( mld_prof, hmle, zhmle, zvel_mle, zdiff_mle )2580 SUBROUTINE zdf_osm_mle_parameters( zmld, mld_prof, hmle, zhmle, zvel_mle, zdiff_mle ) 2581 2581 !!---------------------------------------------------------------------- 2582 2582 !! *** ROUTINE zdf_osm_mle_parameters *** … … 2589 2589 !! Fox-Kemper and Ferrari, JPO, 38, 1166-1179, 2008 2590 2590 2591 REAL(wp), DIMENSION(jpi,jpj) :: zmld ! == estimated FK BLD used for MLE horiz gradients == ! 2591 2592 INTEGER, DIMENSION(jpi,jpj) :: mld_prof 2592 2593 REAL(wp), DIMENSION(jpi,jpj) :: hmle, zhmle, zwb_fk, zvel_mle, zdiff_mle … … 2631 2632 hmle(ji,jj) = MAX(MIN(hmle(ji,jj), ht_n(ji,jj)), gdepw_n(ji,jj,4)) 2632 2633 IF(ln_osm_hmle_limit) hmle(ji,jj) = MIN(hmle(ji,jj), rn_osm_hmle_limit*hbl(ji,jj) ) 2634 hmle(ji,jj) = zmld(ji,jj) 2633 2635 END DO 2634 2636 END DO
Note: See TracChangeset
for help on using the changeset viewer.