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 7037 for branches/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/TOP_SRC/TRP/trcadv.F90 – NEMO

Ignore:
Timestamp:
2016-10-18T15:32:04+02:00 (8 years ago)
Author:
mocavero
Message:

ORCA2_LIM_PISCES hybrid version update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/TOP_SRC/TRP/trcadv.F90

    r6140 r7037  
    9494      ENDIF 
    9595      !                                               !==  effective transport  ==! 
     96!$OMP PARALLEL DO schedule(static) private(jk) 
    9697      DO jk = 1, jpkm1 
    9798         zun(:,:,jk) = e2u  (:,:) * e3u_n(:,:,jk) * un(:,:,jk)                   ! eulerian transport 
     
    101102      ! 
    102103      IF( ln_vvl_ztilde .OR. ln_vvl_layer ) THEN                                 ! add z-tilde and/or vvl corrections 
     104!$OMP PARALLEL WORKSHARE 
    103105         zun(:,:,:) = zun(:,:,:) + un_td(:,:,:) 
    104106         zvn(:,:,:) = zvn(:,:,:) + vn_td(:,:,:) 
     107!$OMP END PARALLEL WORKSHARE 
    105108      ENDIF 
    106109      ! 
     
    110113      IF( ln_mle    )   CALL tra_adv_mle( kt, nittrc000, zun, zvn, zwn, 'TRC' )  ! add the mle transport 
    111114      ! 
     115!$OMP PARALLEL WORKSHARE 
    112116      zun(:,:,jpk) = 0._wp                                                       ! no transport trough the bottom 
    113117      zvn(:,:,jpk) = 0._wp 
    114118      zwn(:,:,jpk) = 0._wp 
     119!$OMP END PARALLEL WORKSHARE 
    115120      ! 
    116121      ! 
Note: See TracChangeset for help on using the changeset viewer.