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 4577 for branches/2012 – NEMO

Changeset 4577 for branches/2012


Ignore:
Timestamp:
2014-03-26T09:45:28+01:00 (10 years ago)
Author:
pabouttier
Message:

Fix wrong calls to lbc_lnk_adj in dyn_nxt_adj, see Ticket #1272

Location:
branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/OPATAM_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/OPATAM_SRC/DOM/istate_tam.F90

    r4572 r4577  
    132132      tsb_ad   (:,:,:,:) = 0.0_wp 
    133133      sshn_ad   (:,:  ) = sshn_ad(:,:  ) + sshb_ad (:,:  ) 
    134       sshb_ad   (:,:  ) = 0.0_wp 
     134      sshb_ad   (:,:  ) = 0.0_wp  
    135135      ! 
    136136      rhd_ad  (:,:,:) = 0.0_wp 
  • branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/OPATAM_SRC/DYN/dynnxt_tam.F90

    r3611 r4577  
    291291      ! 
    292292#else 
    293       ! 
    294       ! Update after velocity on domain lateral boundaries 
    295       ! 
    296293      ! Update after velocity on domain lateral boundaries 
    297294      ! -------------------------------------------------- 
    298       CALL lbc_lnk_adj( va_ad, 'U', -1.0_wp )     !* local domain boundaries 
    299       CALL lbc_lnk_adj( ua_ad, 'V', -1.0_wp ) 
     295      CALL lbc_lnk_adj( va_ad, 'V', -1.0_wp )     !* local domain boundaries 
     296      CALL lbc_lnk_adj( ua_ad, 'U', -1.0_wp ) 
    300297      ! Next velocity :   Leap-frog time stepping 
    301298      ! ------------- 
Note: See TracChangeset for help on using the changeset viewer.