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 2910 for branches/2011/dev_r2802_TOP_substepping/NEMOGCM/NEMO/OPA_SRC/TRA/traadv_eiv.F90 – NEMO

Ignore:
Timestamp:
2011-10-13T11:41:49+02:00 (13 years ago)
Author:
kpedwards
Message:

Updates from Christian - use kit000 in local TRA code; plus a few style corrections in TRC code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_r2802_TOP_substepping/NEMOGCM/NEMO/OPA_SRC/TRA/traadv_eiv.F90

    r2892 r2910  
    4545CONTAINS 
    4646 
    47    SUBROUTINE tra_adv_eiv( kt,nit000, pun, pvn, pwn, cdtype ) 
     47   SUBROUTINE tra_adv_eiv( kt, kit000, pun, pvn, pwn, cdtype ) 
    4848      !!---------------------------------------------------------------------- 
    4949      !!                  ***  ROUTINE tra_adv_eiv  *** 
     
    6969#endif 
    7070      INTEGER                         , INTENT(in   ) ::   kt       ! ocean time-step index 
    71       INTEGER                         , INTENT(in   ) ::   nit000   ! first time step index 
     71      INTEGER                         , INTENT(in   ) ::   kit000   ! first time step index 
    7272      CHARACTER(len=3)                , INTENT(in   ) ::   cdtype   ! =TRA or TRC (tracer indicator) 
    7373      REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(inout) ::   pun      ! in : 3 ocean velocity components  
     
    9191      ENDIF 
    9292 
    93       IF( kt == nit000 )  THEN 
     93      IF( kt == kit000 )  THEN 
    9494         IF(lwp) WRITE(numout,*) 
    9595         IF(lwp) WRITE(numout,*) 'tra_adv_eiv : eddy induced advection on ', cdtype,' :' 
     
    204204   !!---------------------------------------------------------------------- 
    205205CONTAINS 
    206    SUBROUTINE tra_adv_eiv( kt,nit000, pun, pvn, pwn, cdtype )              ! Empty routine 
     206   SUBROUTINE tra_adv_eiv( kt, kit000, pun, pvn, pwn, cdtype )              ! Empty routine 
    207207      INTEGER  ::   kt     
    208       INTEGER  ::   nit000     
     208      INTEGER  ::   kit000     
    209209      CHARACTER(len=3) ::   cdtype 
    210210      REAL, DIMENSION(:,:,:) ::   pun, pvn, pwn 
Note: See TracChangeset for help on using the changeset viewer.