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/zdfbfr.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/zdfbfr.F90

    r3116 r3229  
    2222   USE lib_mpp         ! distributed memory computing 
    2323   USE prtctl          ! Print control 
     24   USE timing          ! Timing 
    2425 
    2526   IMPLICIT NONE 
     
    8283      REAL(wp) ::   zvu, zuv, zecu, zecv   ! temporary scalars 
    8384      !!---------------------------------------------------------------------- 
    84  
     85      ! 
     86      IF( nn_timing == 1 )  CALL timing_start('zdf_bfr') 
     87      ! 
    8588      IF( nn_bfr == 2 ) THEN                 ! quadratic botton friction 
    8689         ! Calculate and store the quadratic bottom friction coefficient bfrua and bfrva 
     
    121124      ENDIF 
    122125      ! 
     126      IF( nn_timing == 1 )  CALL timing_stop('zdf_bfr') 
     127      ! 
    123128   END SUBROUTINE zdf_bfr 
    124129 
     
    144149      NAMELIST/nambfr/ nn_bfr, rn_bfri1, rn_bfri2, rn_bfeb2, ln_bfr2d, rn_bfrien, ln_bfrimp 
    145150      !!---------------------------------------------------------------------- 
    146  
     151      ! 
     152      IF( nn_timing == 1 )  CALL timing_start('zdf_bfr_init') 
     153      ! 
    147154      REWIND ( numnam )               !* Read Namelist nam_bfr : bottom momentum boundary condition 
    148155      READ   ( numnam, nambfr ) 
     
    272279      ENDIF 
    273280      ! 
     281      IF( nn_timing == 1 )  CALL timing_stop('zdf_bfr_init') 
     282      ! 
    274283   END SUBROUTINE zdf_bfr_init 
    275284 
Note: See TracChangeset for help on using the changeset viewer.