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 15512 for NEMO/branches/2021/dev_r14318_RK3_stage1/src/OCE/TRA/traadv.F90 – NEMO

Ignore:
Timestamp:
2021-11-15T18:22:03+01:00 (3 years ago)
Author:
techene
Message:

#2605 RK3 : add logicals to deactivate trends, dianogstics and outputs at stages 1 & 2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r14318_RK3_stage1/src/OCE/TRA/traadv.F90

    r15193 r15512  
    173173         ! 
    174174         ! TEMP: [tiling] This change not necessary if using XIOS (subdomain support) 
    175          IF( ntile == 0 .OR. ntile == nijtile )  THEN                ! Do only on the last tile 
    176             CALL iom_put( "uocetr_eff", zuu )                                        ! output effective transport 
    177             CALL iom_put( "vocetr_eff", zvv ) 
    178             CALL iom_put( "wocetr_eff", zww ) 
     175         IF( l_iom ) 
     176            IF( ntile == 0 .OR. ntile == nijtile )  THEN                ! Do only on the last tile 
     177               CALL iom_put( "uocetr_eff", zuu )                                        ! output effective transport 
     178               CALL iom_put( "vocetr_eff", zvv ) 
     179               CALL iom_put( "wocetr_eff", zww ) 
     180            ENDIF 
    179181         ENDIF 
    180182         ! 
    181183   !!gm ??? 
    182184         ! TEMP: [tiling] This change not necessary if using XIOS (subdomain support) 
    183          CALL dia_ptr( kt, Kmm, zvv(A2D(nn_hls),:) )                                    ! diagnose the effective MSF 
     185         IF( l_diaptr ) CALL dia_ptr( kt, Kmm, zvv(A2D(nn_hls),:) )                                    ! diagnose the effective MSF 
    184186   !!gm ??? 
    185187         ! 
Note: See TracChangeset for help on using the changeset viewer.