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 7430 for branches/2016 – NEMO

Changeset 7430 for branches/2016


Ignore:
Timestamp:
2016-12-02T10:31:10+01:00 (7 years ago)
Author:
cbricaud
Message:

correct bugs of merge in dev_merge_2016

Location:
branches/2016/dev_merge_2016/NEMOGCM/NEMO/OPA_SRC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_merge_2016/NEMOGCM/NEMO/OPA_SRC/DIA/diahsb.F90

    r7421 r7430  
    387387      surf_tot  = glob_sum( surf(:,:) )                   ! total ocean surface area 
    388388 
    389       IF( lk_bdy ) CALL ctl_warn( 'dia_hsb_init: heat/salt budget does not consider open boundary fluxes' )          
     389      IF( ln_bdy ) CALL ctl_warn( 'dia_hsb_init: heat/salt budget does not consider open boundary fluxes' )          
    390390      ! 
    391391      ! ---------------------------------- ! 
  • branches/2016/dev_merge_2016/NEMOGCM/NEMO/OPA_SRC/DOM/domvvl.F90

    r7421 r7430  
    875875         ELSE                                   !* Initialize at "rest" 
    876876            ! 
    877             IF( ln_wd .AND. ( cp_cfg == 'wad' ) ) THEN 
     877            IF( ln_wd .AND. ( cn_cfg == 'wad' ) ) THEN 
    878878               ! 
    879879               CALL wad_istate                  ! WAD test configuration : start from  
  • branches/2016/dev_merge_2016/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg_ts.F90

    r7426 r7430  
    615615         ! Update only tidal forcing at open boundaries 
    616616#if defined key_tide 
    617          IF( lk_bdy      .AND. lk_tide )   CALL bdy_dta_tides( kt, kit=jn, time_offset= noffset+1 ) 
    618          IF( ln_tide_pot .AND. lk_tide )   CALL upd_tide     ( kt, kit=jn, time_offset= noffset   ) 
     617         IF( ln_bdy      .AND. ln_tide )   CALL bdy_dta_tides( kt, kit=jn, time_offset= noffset+1 ) 
     618         IF( ln_tide_pot .AND. ln_tide )   CALL upd_tide     ( kt, kit=jn, time_offset= noffset   ) 
    619619#endif 
    620620         ! 
     
    868868         ! 
    869869         ! Add tidal astronomical forcing if defined 
    870          IF ( lk_tide.AND.ln_tide_pot ) THEN 
     870         IF ( ln_tide .AND. ln_tide_pot ) THEN 
    871871            DO jj = 2, jpjm1 
    872872               DO ji = fs_2, fs_jpim1   ! vector opt. 
  • branches/2016/dev_merge_2016/NEMOGCM/NEMO/OPA_SRC/LBC/mppini_2.h90

    r7429 r7430  
    6666         ione  , ionw  , iose  , iosw  ,   &  !    "           " 
    6767         ibne  , ibnw  , ibse  , ibsw         !    "           " 
    68       INTEGER,  DIMENSION(jpiglo,jpjglo) ::   imask        ! global workspace 
    69       REAL(wp), DIMENSION(jpiglo,jpjglo) ::   zbot, ztop   ! global workspace 
     68      INTEGER,  DIMENSION(jpiglo,jpjglo) ::   imask               ! global workspace 
     69      REAL(wp), DIMENSION(jpiglo,jpjglo) ::   zbot, ztop, zdta    ! global workspace 
    7070      REAL(wp) ::   zidom , zjdom          ! local scalars 
    7171      NAMELIST/nambdy/ ln_bdy, nb_bdy, ln_coords_file, cn_coords_file,         & 
Note: See TracChangeset for help on using the changeset viewer.