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 2005 for branches/DEV_r1837_MLF/NEMO/OPA_SRC/IOM/restart.F90 – NEMO

Ignore:
Timestamp:
2010-07-09T15:07:02+02:00 (14 years ago)
Author:
mlelod
Message:

ticket: #663 MLF: second part (local compatibility essentially)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DEV_r1837_MLF/NEMO/OPA_SRC/IOM/restart.F90

    r1975 r2005  
    122122      CALL iom_rstput( kt, nitrst, numrow, 'hdivb'  , hdivb   ) 
    123123      CALL iom_rstput( kt, nitrst, numrow, 'sshb'   , sshb    ) 
     124      IF( lk_vvl ) THEN 
     125         CALL iom_rstput( kt, nitrst, numrow, 'fse3t_b', fse3t_b ) 
     126      ENDIF 
    124127      ! 
    125128      CALL iom_rstput( kt, nitrst, numrow, 'un'     , un      )     ! now fields 
     
    191194      CALL iom_get( numror, jpdom_autoglo, 'hdivb', hdivb ) 
    192195      CALL iom_get( numror, jpdom_autoglo, 'sshb' , sshb  ) 
     196      IF( lk_vvl ) THEN 
     197         CALL iom_get( numror, jpdom_autoglo, 'fse3t_b', fse3t_b ) 
     198      ENDIF 
    193199      ! 
    194200      CALL iom_get( numror, jpdom_autoglo, 'un'   , un    )        ! now    fields 
     
    217223         hdivb(:,:,:) = hdivn(:,:,:) 
    218224         sshb (:,:)   = sshn (:,:) 
    219          ! - ML - sshbnc  
     225         IF( lk_vvl ) THEN 
     226            fse3t_b(:,:,:) = fse3t_n(:,:,:) 
     227         ENDIF 
    220228      ENDIF 
    221229      ! 
Note: See TracChangeset for help on using the changeset viewer.