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 14789 for NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU/src/TOP/TRP/trcsbc.F90 – NEMO

Ignore:
Timestamp:
2021-05-05T13:18:04+02:00 (3 years ago)
Author:
mcastril
Message:

[2021/HPC-11_mcastril_HPDAonline_DiagGPU] Update externals

Location:
NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU

    • Property svn:externals
      •  

        old new  
        33^/utils/build/mk@HEAD         mk 
        44^/utils/tools@HEAD            tools 
        5 ^/vendors/AGRIF/dev_r12970_AGRIF_CMEMS      ext/AGRIF 
         5^/vendors/AGRIF/dev@HEAD      ext/AGRIF 
        66^/vendors/FCM@HEAD            ext/FCM 
        77^/vendors/IOIPSL@HEAD         ext/IOIPSL 
         8^/vendors/PPR@HEAD            ext/PPR 
        89 
        910# SETTE 
        10 ^/utils/CI/sette@13559        sette 
         11^/utils/CI/sette@14244        sette 
  • NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU/src/TOP/TRP/trcsbc.F90

    r13295 r14789  
    1616   !!   trc_sbc      : update the tracer trend at ocean surface 
    1717   !!---------------------------------------------------------------------- 
     18   USE par_trc        ! need jptra, number of passive tracers 
    1819   USE oce_trc         ! ocean dynamics and active tracers variables 
    1920   USE trc             ! ocean  passive tracers variables 
     
    121122         ! 
    122123         DO jn = 1, jptra 
    123             DO_2D( 0, 1, 0, 0 ) 
     124            DO_2D( 0, 0, 0, 1 ) 
    124125               sbc_trc(ji,jj,jn) = zsfx(ji,jj) * r1_rho0 * ptr(ji,jj,1,jn,Kmm) 
    125126            END_2D 
     
    129130         ! 
    130131         DO jn = 1, jptra 
    131             DO_2D( 0, 1, 0, 0 ) 
     132            DO_2D( 0, 0, 0, 1 ) 
    132133               sbc_trc(ji,jj,jn) = ( zsfx(ji,jj) + fmmflx(ji,jj) ) * r1_rho0 * ptr(ji,jj,1,jn,Kmm) 
    133134            END_2D 
     
    137138         ! 
    138139         DO jn = 1, jptra 
    139             DO_2D( 0, 1, 0, 0 ) 
     140            DO_2D( 0, 0, 0, 1 ) 
    140141               zse3t = 1. / e3t(ji,jj,1,Kmm) 
    141142               ! tracer flux at the ice/ocean interface (tracer/m2/s) 
     
    161162         IF( l_trdtrc )   ztrtrd(:,:,:) = ptr(:,:,:,jn,Krhs)  ! save trends 
    162163         ! 
    163          DO_2D( 0, 1, 0, 0 ) 
     164         DO_2D( 0, 0, 0, 1 ) 
    164165            zse3t = zfact / e3t(ji,jj,1,Kmm) 
    165166            ptr(ji,jj,1,jn,Krhs) = ptr(ji,jj,1,jn,Krhs) + ( sbc_trc_b(ji,jj,jn) + sbc_trc(ji,jj,jn) ) * zse3t 
Note: See TracChangeset for help on using the changeset viewer.