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 13258 for NEMO/branches/2020/dev_r12973_AGRIF_CMEMS/src/OCE/nemogcm.F90 – NEMO

Ignore:
Timestamp:
2020-07-07T12:23:18+02:00 (4 years ago)
Author:
rblod
Message:

#2129 : merge branch CMEMS with trunk r13327

Location:
NEMO/branches/2020/dev_r12973_AGRIF_CMEMS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r12973_AGRIF_CMEMS

    • Property svn:externals
      •  

        old new  
        22^/utils/build/makenemo@HEAD   makenemo 
        33^/utils/build/mk@HEAD         mk 
        4 ^/utils/tools_dev_r12970_AGRIF_CMEMS            tools 
         4^/utils/tools/@HEAD           tools 
        55^/vendors/AGRIF/dev_r12970_AGRIF_CMEMS      ext/AGRIF 
        66^/vendors/FCM@HEAD            ext/FCM 
  • NEMO/branches/2020/dev_r12973_AGRIF_CMEMS/src/OCE/nemogcm.F90

    r13058 r13258  
    6060   USE diacfl         ! CFL diagnostics               (dia_cfl_init routine) 
    6161   USE diamlr         ! IOM context management for multiple-linear-regression analysis 
     62#if defined key_qco 
     63   USE stepMLF        ! NEMO time-stepping               (stp_MLF   routine) 
     64#else 
    6265   USE step           ! NEMO time-stepping                 (stp     routine) 
     66#endif 
    6367   USE isfstp         ! ice shelf                     (isf_stp_init routine) 
    6468   USE icbini         ! handle bergs, initialisation 
     
    178182      ! 
    179183      DO WHILE( istp <= nitend .AND. nstop == 0 ) 
     184#if defined key_qco 
     185         CALL stp_MLF 
     186#else 
    180187         CALL stp 
     188#endif 
    181189         istp = istp + 1 
    182190      END DO 
     
    195203            ENDIF 
    196204             
     205#if defined key_qco 
     206            CALL stp_MLF      ( istp ) 
     207#else 
    197208            CALL stp        ( istp )  
     209#endif 
    198210            istp = istp + 1 
    199211 
     
    362374         WRITE(numout,*) "     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ " 
    363375         WRITE(numout,*) 
     376          
     377         ! Print the working precision to ocean.output 
     378         IF (wp == dp) THEN 
     379            WRITE(numout,*) "Working precision = double-precision" 
     380         ELSE 
     381            WRITE(numout,*) "Working precision = single-precision" 
     382         ENDIF 
     383         WRITE(numout,*) 
    364384         ! 
    365385         WRITE(numout,cform_aaa)                                        ! Flag AAAAAAA 
     
    418438#endif 
    419439                           CALL     dom_init( Nbb, Nnn, Naa, "OPA") ! Domain 
    420  
    421  
    422  
    423440      IF( ln_crs       )   CALL     crs_init(      Nnn )       ! coarsened grid: domain initialization  
    424441      IF( sn_cfctl%l_prtctl )   & 
     
    696713   !!====================================================================== 
    697714END MODULE nemogcm 
    698  
Note: See TracChangeset for help on using the changeset viewer.