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 2690 for branches/dev_r2586_dynamic_mem/NEMOGCM/NEMO/OPA_SRC/DYN/divcur.F90 – NEMO

Ignore:
Timestamp:
2011-03-15T16:27:46+01:00 (13 years ago)
Author:
gm
Message:

dynamic mem: #785 ; homogeneization of the coding style associated with dyn allocation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_r2586_dynamic_mem/NEMOGCM/NEMO/OPA_SRC/DYN/divcur.F90

    r2636 r2690  
    9797         IF(lwp) WRITE(numout,*) '~~~~~~~   NOT optimal for auto-tasking case' 
    9898         ! 
    99          ALLOCATE( zwu( jpi, 1:jpj+2) , zwv(-1:jpi+2, jpj) , Stat=ierr ) 
     99         ALLOCATE( zwu( jpi, 1:jpj+2) , zwv(-1:jpi+2, jpj) , STAT=ierr ) 
    100100         IF( lk_mpp    )   CALL mpp_sum( ierr ) 
    101101         IF( ierr /= 0 )   CALL ctl_stop( 'STOP', 'div_cur : unable to allocate arrays' ) 
     
    273273      !!              - update rotb , rotn , the before & now rel. vorticity 
    274274      !!---------------------------------------------------------------------- 
    275       INTEGER, INTENT( in ) ::   kt     ! ocean time-step index 
    276       ! 
    277       INTEGER  ::   ji, jj, jk          ! dummy loop indices 
    278       REAL(wp) ::  zraur, zdep 
     275      INTEGER, INTENT(in) ::   kt   ! ocean time-step index 
     276      ! 
     277      INTEGER  ::   ji, jj, jk    ! dummy loop indices 
     278      REAL(wp) ::   zraur, zdep   ! local scalars 
    279279      !!---------------------------------------------------------------------- 
    280280 
Note: See TracChangeset for help on using the changeset viewer.