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 3182 for branches/2011/dev_NEMO_MERGE_2011/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90 – NEMO

Ignore:
Timestamp:
2011-11-25T12:27:22+01:00 (13 years ago)
Author:
davestorkey
Message:

Change dynamic allocation and add timing to BDY module.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_NEMO_MERGE_2011/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90

    r3116 r3182  
    1919   !!   bdy_init       : Initialization of unstructured open boundaries 
    2020   !!---------------------------------------------------------------------- 
     21   USE timing          ! Timing 
    2122   USE oce             ! ocean dynamics and tracers variables 
    2223   USE dom_oce         ! ocean space and time domain 
     
    9495      !!---------------------------------------------------------------------- 
    9596 
     97      IF( nn_timing == 1 ) CALL timing_start('bdy_init') 
     98 
    9699      IF( bdy_oce_alloc() /= 0 )   CALL ctl_stop( 'STOP', 'bdy_init : unable to allocate oce arrays' ) 
    97100 
     
    806809      DEALLOCATE(nbidta, nbjdta, nbrdta) 
    807810 
     811      IF( nn_timing == 1 ) CALL timing_stop('bdy_init') 
     812 
    808813   END SUBROUTINE bdy_init 
    809814 
Note: See TracChangeset for help on using the changeset viewer.