New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 2132 for branches/devmercator2010_1/NEMO/OPA_SRC/step.F90 – NEMO

Ignore:
Timestamp:
2010-09-29T17:31:36+02:00 (14 years ago)
Author:
cbricaud
Message:

add change from DEV_r1784_GLS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/devmercator2010_1/NEMO/OPA_SRC/step.F90

    r1756 r2132  
    9090   USE zdftke_old      ! old TKE vertical mixing      (zdf_tke_old routine) 
    9191   USE zdftke          ! TKE vertical mixing              (zdf_tke routine) 
     92   USE zdfgls          ! GLS vertical mixing              (zdf_gls routine)   
    9293   USE zdfkpp          ! KPP vertical mixing              (zdf_kpp routine) 
    9394   USE zdfddm          ! double diffusion mixing          (zdf_ddm routine) 
     
    204205      IF( lk_zdftke_old )   CALL zdf_tke_old( kstp )  ! TKE closure scheme for Kz (old scheme) 
    205206      IF( lk_zdftke     )   CALL zdf_tke    ( kstp )  ! TKE closure scheme for Kz 
     207      IF( lk_zdfgls     )   CALL zdf_gls    ( kstp )  ! GLS closure scheme for Kz 
    206208      IF( lk_zdfkpp     )   CALL zdf_kpp    ( kstp )  ! KPP closure scheme for Kz 
    207209      IF( lk_zdfcst     )   THEN                      ! Constant Kz (reset avt, avm[uv] to the background value) 
     
    223225                                                      ! write tke information in the restart file 
    224226      IF( lrst_oce .AND. lk_zdftke )   CALL tke_rst( kstp, 'WRITE' ) 
     227                                                      ! write gls information in the restart file 
     228      IF( lrst_oce .AND. lk_zdfgls )   CALL gls_rst( kstp, 'WRITE' ) 
    225229      ! 
    226230      !  LATERAL  PHYSICS  
Note: See TracChangeset for help on using the changeset viewer.