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 3764 for branches/2012/dev_MERGE_2012/NEMOGCM/NEMO/OPA_SRC/DYN/sshwzv.F90 – NEMO

Ignore:
Timestamp:
2013-01-23T15:33:04+01:00 (11 years ago)
Author:
smasson
Message:

dev_MERGE_2012: report bugfixes done in the trunk from r3555 to r3763 into dev_MERGE_2012

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_MERGE_2012/NEMOGCM/NEMO/OPA_SRC/DYN/sshwzv.F90

    r3680 r3764  
    181181#if defined key_bdy 
    182182      ssha(:,:) = ssha(:,:) * bdytmask(:,:) 
    183       CALL lbc_lnk( ssha, 'T', 1. )                 ! absolutly compulsory !! (jmm) 
    184 #endif 
    185  
     183      CALL lbc_lnk( ssha, 'T', 1. )                    ! absolutly compulsory !! (jmm) 
     184#endif 
     185#if defined key_asminc 
     186      !                                                ! Include the IAU weighted SSH increment 
     187      IF( lk_asminc .AND. ln_sshinc .AND. ln_asmiau ) THEN 
     188         CALL ssh_asm_inc( kt ) 
     189         ssha(:,:) = ssha(:,:) + z2dt * ssh_iau(:,:) 
     190      ENDIF 
     191#endif 
    186192      !                                                ! Sea Surface Height at u-,v- and f-points (vvl case only) 
    187193      IF( lk_vvl ) THEN                                ! (required only in key_vvl case) 
     
    198204         CALL lbc_lnk( sshu_a, 'U', 1. )   ;   CALL lbc_lnk( sshv_a, 'V', 1. )      ! Boundaries conditions 
    199205      ENDIF 
    200        
    201 #if defined key_asminc 
    202       !                                                ! Include the IAU weighted SSH increment 
    203       IF( lk_asminc .AND. ln_sshinc .AND. ln_asmiau ) THEN 
    204          CALL ssh_asm_inc( kt ) 
    205          ssha(:,:) = ssha(:,:) + z2dt * ssh_iau(:,:) 
    206       ENDIF 
    207 #endif 
    208206 
    209207      !                                           !------------------------------! 
Note: See TracChangeset for help on using the changeset viewer.