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 14643 for NEMO/branches/UKMO/NEMO_4.0.4_icesheet_and_river_coupling/src/OCE/SBC/sbccpl.F90 – NEMO

Ignore:
Timestamp:
2021-03-26T13:53:14+01:00 (3 years ago)
Author:
dancopsey
Message:

Output timing information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.4_icesheet_and_river_coupling/src/OCE/SBC/sbccpl.F90

    r14299 r14643  
    4949   USE lib_mpp        ! distribued memory computing library 
    5050   USE lbclnk         ! ocean lateral boundary conditions (or mpp link) 
     51   USE timing         ! timing 
    5152 
    5253#if defined key_oasis3  
     
    295296      ! ================================ ! 
    296297      ! 
     298      IF (ln_timing) CALL timing_start('sbc_cpl_init') 
    297299      REWIND( numnam_ref )              ! Namelist namsbc_cpl in reference namelist : Variables for OASIS coupling 
    298300      READ  ( numnam_ref, namsbc_cpl, IOSTAT = ios, ERR = 901) 
     
    11581160      ENDIF  
    11591161      ! 
     1162      IF (ln_timing) CALL timing_stop('sbc_cpl_init') 
     1163      ! 
    11601164   END SUBROUTINE sbc_cpl_init 
    11611165 
     
    12261230      REAL(wp), DIMENSION(jpi,jpj) ::   ztx, zty, zmsk, zemp, zqns, zqsr, zcloud_fra 
    12271231      !!---------------------------------------------------------------------- 
     1232      ! 
     1233      ! 
     1234      IF (ln_timing) CALL timing_start('sbc_cpl_rcv') 
    12281235      ! 
    12291236      ll_wrtstp  = (( MOD( kt, sn_cfctl%ptimincr ) == 0 ) .OR. ( kt == nitend )) .AND. (nn_print>0) 
     
    16571664      ENDIF 
    16581665      ! 
     1666      IF (ln_timing) CALL timing_stop('sbc_cpl_rcv') 
    16591667   END SUBROUTINE sbc_cpl_rcv 
    16601668    
     
    17001708      !!---------------------------------------------------------------------- 
    17011709      ! 
     1710      IF (ln_timing) CALL timing_start('sbc_cpl_snd') 
    17021711      IF( srcv(jpr_itx1)%laction ) THEN   ;   itx =  jpr_itx1    
    17031712      ELSE                                ;   itx =  jpr_otx1 
     
    28602869#endif 
    28612870      ! 
     2871      IF (ln_timing) CALL timing_stop('sbc_cpl_snd') 
    28622872   END SUBROUTINE sbc_cpl_snd 
    28632873    
Note: See TracChangeset for help on using the changeset viewer.