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/SBC/sbcmod.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/SBC/sbcmod.F90

    r3116 r3229  
    4949   USE in_out_manager   ! I/O manager 
    5050   USE lib_mpp          ! MPP library 
     51   USE timing           ! Timing 
    5152   USE sbcwave          ! Wave module 
    5253 
     
    222223      INTEGER, INTENT(in) ::   kt       ! ocean time step 
    223224      !!--------------------------------------------------------------------- 
    224  
     225      ! 
     226      IF( nn_timing == 1 )  CALL timing_start('sbc') 
     227      ! 
    225228      !                                            ! ---------------------------------------- ! 
    226229      IF( kt /= nit000 ) THEN                      !          Swap of forcing fields          ! 
     
    363366      IF( kt == nitend )   CALL sbc_final         ! Close down surface module if necessary 
    364367      ! 
     368      IF( nn_timing == 1 )  CALL timing_stop('sbc') 
     369      ! 
    365370   END SUBROUTINE sbc 
    366371 
Note: See TracChangeset for help on using the changeset viewer.