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 3229 for branches/2011/dev_NEMO_MERGE_2011/NEMOGCM/NEMO/OPA_SRC/ZDF/zdftke.F90 – NEMO

Ignore:
Timestamp:
2011-12-20T12:42:17+01:00 (12 years ago)
Author:
charris
Message:

Added timing calls to most significant routines in LDF, SBC and ZDF.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_NEMO_MERGE_2011/NEMOGCM/NEMO/OPA_SRC/ZDF/zdftke.F90

    r3186 r3229  
    5151   USE lib_mpp        ! MPP library 
    5252   USE wrk_nemo       ! work arrays 
     53   USE timing         ! Timing 
    5354 
    5455   IMPLICIT NONE 
     
    211212      REAL(wp), POINTER, DIMENSION(:,:,:) :: zpelc 
    212213      !!-------------------------------------------------------------------- 
     214      ! 
     215      IF( nn_timing == 1 )  CALL timing_start('tke_tke') 
    213216      ! 
    214217      CALL wrk_alloc( jpi,jpj, imlc )    ! integer 
     
    435438      CALL wrk_dealloc( jpi,jpj, zhlc )  
    436439      CALL wrk_dealloc( jpi,jpj,jpk, zpelc )  
     440      ! 
     441      IF( nn_timing == 1 )  CALL timing_stop('tke_tke') 
    437442      ! 
    438443   END SUBROUTINE tke_tke 
     
    484489      !!-------------------------------------------------------------------- 
    485490      ! 
     491      IF( nn_timing == 1 )  CALL timing_start('tke_avn') 
     492      ! 
    486493      zmxlm => tsa(:,:,:,1)  
    487494      zmxld => tsa(:,:,:,2)  
     
    657664            &          tab3d_2=avmv, clinfo2=       ' v: ', mask2=vmask, ovlap=1, kdim=jpk ) 
    658665      ENDIF 
     666      ! 
     667      IF( nn_timing == 1 )  CALL timing_stop('tke_avn') 
    659668      ! 
    660669   END SUBROUTINE tke_avn 
Note: See TracChangeset for help on using the changeset viewer.