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/TRA/traadv.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/TRA/traadv.F90

    r2636 r2690  
    6363      !!---------------------------------------------------------------------- 
    6464      USE wrk_nemo, ONLY:   wrk_in_use, wrk_not_released 
    65       USE wrk_nemo, ONLY:   zun => wrk_3d_1, zvn => wrk_3d_2, zwn => wrk_3d_3   ! 3D workspace 
     65      USE wrk_nemo, ONLY:   zun => wrk_3d_1 , zvn => wrk_3d_2 , zwn => wrk_3d_3   ! 3D workspace 
    6666      ! 
    6767      INTEGER, INTENT( in ) ::   kt   ! ocean time-step index 
     
    7070      !!---------------------------------------------------------------------- 
    7171      ! 
    72       IF(wrk_in_use(3, 1,2,3) ) THEN 
     72      IF( wrk_in_use(3, 1,2,3) ) THEN 
    7373         CALL ctl_stop('tra_adv: requested workspace arrays unavailable')   ;   RETURN 
    74       END IF 
     74      ENDIF 
    7575      !                                          ! set time step 
    7676      IF( neuler == 0 .AND. kt == nit000 ) THEN     ! at nit000 
     
    132132         &                       tab3d_2=tsa(:,:,:,jp_sal), clinfo2=       ' Sa: ', mask2=tmask, clinfo3='tra' ) 
    133133      ! 
    134       IF(wrk_not_released(3,1,2,3) )   CALL ctl_stop('tra_adv: failed to release workspace arrays') 
     134      IF( wrk_not_released(3,1,2,3) )   CALL ctl_stop('tra_adv: failed to release workspace arrays') 
    135135      ! 
    136136   END SUBROUTINE tra_adv 
Note: See TracChangeset for help on using the changeset viewer.