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 2062 for branches – NEMO

Changeset 2062 for branches


Ignore:
Timestamp:
2010-08-19T15:50:43+02:00 (14 years ago)
Author:
djlea
Message:

Two minor fixes. One to correct a typo in the output of asm namelist variables. The other to put missing if defined key control around code which calls asm.

Location:
branches/dev_1784_ASM/NEMO/OPA_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_1784_ASM/NEMO/OPA_SRC/ASM/asminc.F90

    r2002 r2062  
    246246            &            ' nittrjfrq = ', nittrjfrq 
    247247         WRITE(numout,*) '             Logical switch for ensuring that the sa > salfixmin     ', & 
    248             &            ' ln_salinc = ', ln_salfix 
     248            &            ' ln_salfix = ', ln_salfix 
    249249         WRITE(numout,*) '             Minimum salinity after applying the increments          ', & 
    250250            &            ' salfixmin = ', salfixmin 
  • branches/dev_1784_ASM/NEMO/OPA_SRC/DYN/sshwzv.F90

    r2002 r2062  
    2828   USE diaar5, ONLY :   lk_diaar5 
    2929   USE iom 
     30#if defined key_asminc    
    3031   USE asminc          ! Assimilation increment 
     32#endif 
    3133 
    3234   IMPLICIT NONE 
     
    190192 
    191193! Include the IAU weighted SSH increment 
     194#if defined key_asminc 
    192195      IF( ( lk_asminc ).AND.( ln_sshinc ).AND.( ln_asmiau ) ) THEN 
    193196         CALL ssh_asm_inc( kt ) 
    194197         ssha(:,:) = ssha(:,:) + z2dt * ssh_iau(:,:) 
    195198      ENDIF 
     199#endif 
    196200 
    197201      !                                           !------------------------------! 
Note: See TracChangeset for help on using the changeset viewer.