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 3867 for branches/2013/dev_r3858_NOC_ZTC – NEMO

Ignore:
Timestamp:
2013-04-11T14:49:42+02:00 (11 years ago)
Author:
acc
Message:

Branch 2013/dev_r3858_NOC_ZTC, #863. Typo correction to diawri.F90 and removal of duplicate io from restat.F90 (now done in domvvl.F90)

Location:
branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/DIA/diawri.F90

    r3865 r3867  
    629629      ENDIF 
    630630      IF( lk_vvl ) THEN 
    631          z3d(:,:,:) = ( ( fse3t_n(:,:,:) - e3t_0(:,:,:) ) / e3t_0(:,:,:) * 100 * tmask(:,:,:) ) ** 2 
     631         zw3d(:,:,:) = ( ( fse3t_n(:,:,:) - e3t_0(:,:,:) ) / e3t_0(:,:,:) * 100 * tmask(:,:,:) ) ** 2 
    632632         CALL histwrite( nid_T, "vovvle3t", it, fse3t_n (:,:,:) , ndim_T , ndex_T  )   ! level thickness 
    633633         CALL histwrite( nid_T, "vovvldep", it, fsdept_n(:,:,:) , ndim_T , ndex_T  )   ! t-point depth 
    634          CALL histwrite( nid_T, "vovvldef", it, z3d             , ndim_T , ndex_T  )   ! level thickness deformation 
     634         CALL histwrite( nid_T, "vovvldef", it, zw3d             , ndim_T , ndex_T  )   ! level thickness deformation 
    635635      ENDIF 
    636636      CALL histwrite( nid_T, "sossheig", it, sshn          , ndim_hT, ndex_hT )   ! sea surface height 
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/IOM/restart.F90

    r3680 r3867  
    119119                     CALL iom_rstput( kt, nitrst, numrow, 'hdivb'  , hdivb     ) 
    120120                     CALL iom_rstput( kt, nitrst, numrow, 'sshb'   , sshb      ) 
    121       IF( lk_vvl )   CALL iom_rstput( kt, nitrst, numrow, 'fse3t_b', fse3t_b(:,:,:) ) 
    122121                     ! 
    123122                     CALL iom_rstput( kt, nitrst, numrow, 'un'     , un        )     ! now fields 
     
    189188         CALL iom_get( numror, jpdom_autoglo, 'hdivb'  , hdivb   ) 
    190189         CALL iom_get( numror, jpdom_autoglo, 'sshb'   , sshb    ) 
    191          IF( lk_vvl )   CALL iom_get( numror, jpdom_autoglo, 'fse3t_b', fse3t_b(:,:,:) ) 
    192190      ELSE 
    193191         neuler = 0 
     
    225223         hdivb(:,:,:)   = hdivn(:,:,:) 
    226224         sshb (:,:)     = sshn (:,:) 
    227          IF( lk_vvl ) THEN 
    228             DO jk = 1, jpk 
    229                fse3t_b(:,:,jk) = fse3t_n(:,:,jk) 
    230             END DO 
    231          ENDIF 
    232225      ENDIF 
    233226      ! 
Note: See TracChangeset for help on using the changeset viewer.