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 12616 for NEMO/branches/2020/dev_r12377_KERNEL-06_techene_e3/src/OCE/CRS/crsini.F90 – NEMO

Ignore:
Timestamp:
2020-03-26T19:24:53+01:00 (4 years ago)
Author:
techene
Message:

all: add e3 substitute (sometimes it requires to add ze3t/u/v/w) and limit precompiled files lines to about 130 character, OCE/ASM/asminc.F90, OCE/DOM/domzgr_substitute.h90, OCE/ISF/isfcpl.F90, OCE/SBC/sbcice_cice, OCE/CRS/crsini.F90 : add key_LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r12377_KERNEL-06_techene_e3/src/OCE/CRS/crsini.F90

    r12377 r12616  
    3333   !! Software governed by the CeCILL license (see ./LICENSE) 
    3434   !!---------------------------------------------------------------------- 
     35#  include "domzgr_substitute.h90" 
     36 
    3537CONTAINS 
    3638    
     
    174176      
    175177     ! 
     178#if ! defined key_LF 
    176179     ze3t(:,:,:) = e3t(:,:,:,Kmm) 
    177180     ze3u(:,:,:) = e3u(:,:,:,Kmm) 
    178181     ze3v(:,:,:) = e3v(:,:,:,Kmm) 
    179182     ze3w(:,:,:) = e3w(:,:,:,Kmm) 
     183#else 
     184     DO jk = 1, jpk 
     185        ze3t(:,:,jk) = e3t(:,:,jk,Kmm) 
     186        ze3u(:,:,jk) = e3u(:,:,jk,Kmm) 
     187        ze3v(:,:,jk) = e3v(:,:,jk,Kmm) 
     188        ze3w(:,:,jk) = e3w(:,:,jk,Kmm) 
     189     END DO  
     190#endif  
    180191 
    181192     !    3.d.2   Surfaces  
Note: See TracChangeset for help on using the changeset viewer.