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 14118 – NEMO

Changeset 14118


Ignore:
Timestamp:
2020-12-07T11:31:48+01:00 (3 years ago)
Author:
techene
Message:

#2385 bug fixes for qco

Location:
NEMO/trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/DYN/dynhpg.F90

    r14064 r14118  
    756756      ! 4. a) Upper half of top-most grid box, compute and store 
    757757      !------------------------------------------------------------- 
    758 ! *** AY note: ssh(ji,jj,Kmm) + gde3w(ji,jj,1) = e3w(ji,jj,1) 
     758! *** AY note: ssh(ji,jj,Kmm) + gde3w(ji,jj,1) = e3w(ji,jj,1,Kmm) 
    759759      DO_2D( 0, 1, 0, 1) 
    760760         z_rho_k(ji,jj,1) =  grav * ( ssh(ji,jj,Kmm) + gde3w(ji,jj,1) )                        &  
  • NEMO/trunk/src/OCE/ICB/icbutl.F90

    r14030 r14118  
    5757   PUBLIC   icb_utl_heat          ! routine called in icbdia module 
    5858 
     59   !! * Substitutions 
     60#  include "domzgr_substitute.h90" 
    5961   !!---------------------------------------------------------------------- 
    6062   !! NEMO/OCE 4.0 , NEMO Consortium (2018) 
     
    127129            CALL lbc_lnk_icb( 'icbutl', ztmp, 'V', -1._wp, 1, 1 ) 
    128130            voce_e(:,:,jk) = ztmp(:,:) 
     131            ! 
     132            e3t_e(1:jpi,1:jpj,jk) = e3t(:,:,jk,Kmm) 
    129133         END DO 
    130          toce_e(1:jpi,1:jpj,1:jpk) = ts(:,:,:,1,Kmm) 
    131          e3t_e (1:jpi,1:jpj,1:jpk) = e3t(:,:,:,Kmm) 
     134         toce_e(1:jpi,1:jpj,:) = ts(:,:,:,1,Kmm) 
    132135      END IF 
    133136      ! 
  • NEMO/trunk/src/OCE/nemogcm.F90

    r14086 r14118  
    5757   USE diacfl         ! CFL diagnostics               (dia_cfl_init routine) 
    5858   USE diamlr         ! IOM context management for multiple-linear-regression analysis 
    59 #if defined key_qco 
    60    USE stepMLF        ! NEMO time-stepping               (stp_MLF   routine) 
    61 #else 
    62    USE step           ! NEMO time-stepping                 (stp     routine) 
    63 #endif 
    6459   USE isfstp         ! ice shelf                     (isf_stp_init routine) 
    6560   USE icbini         ! handle bergs, initialisation 
  • NEMO/trunk/src/OCE/stpmlf.F90

    r14053 r14118  
    367367      IF( kstp == nitend .OR. indic < 0 ) THEN 
    368368                      CALL iom_context_finalize(      cxios_context          ) ! needed for XIOS+AGRIF 
    369          IF( lrxios ) CALL iom_context_finalize(      crxios_context          ) 
    370369         IF( ln_crs ) CALL iom_context_finalize( trim(cxios_context)//"_crs" ) ! 
    371370      ENDIF 
  • NEMO/trunk/src/TOP/trcais.F90

    r14032 r14118  
    3838   !! * Substitutions 
    3939#  include "do_loop_substitute.h90" 
     40#  include "domzgr_substitute.h90" 
    4041   !!---------------------------------------------------------------------- 
    4142   !! NEMO/TOP 4.0 , NEMO Consortium (2018) 
Note: See TracChangeset for help on using the changeset viewer.