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 8793 for branches/2017/dev_r8600_xios_read_write/NEMOGCM/NEMO/OPA_SRC/DOM/domvvl.F90 – NEMO

Ignore:
Timestamp:
2017-11-23T13:02:23+01:00 (6 years ago)
Author:
andmirek
Message:

#1953 and #1962 change lxios_read to lrxios to be consistent with write branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8600_xios_read_write/NEMOGCM/NEMO/OPA_SRC/DOM/domvvl.F90

    r8770 r8793  
    3333   USE wrk_nemo        ! Memory allocation 
    3434   USE timing          ! Timing 
    35    USE iom_def, ONLY : lxios_read, lwxios 
     35   USE iom_def, ONLY : lrxios, lwxios 
    3636 
    3737   IMPLICIT NONE 
     
    818818         IF( ln_rstart ) THEN                   !* Read the restart file 
    819819            CALL rst_read_open                  !  open the restart file if necessary 
    820             CALL iom_get( numror, jpdom_autoglo, 'sshn'   , sshn, ldxios = lxios_read    ) 
     820            CALL iom_get( numror, jpdom_autoglo, 'sshn'   , sshn, ldxios = lrxios    ) 
    821821            ! 
    822822            id1 = iom_varid( numror, 'e3t_b', ldstop = .FALSE. ) 
     
    829829            !                             ! --------- ! 
    830830            IF( MIN( id1, id2 ) > 0 ) THEN       ! all required arrays exist 
    831                CALL iom_get( numror, jpdom_autoglo, 'e3t_b', e3t_b(:,:,:), ldxios = lxios_read ) 
    832                CALL iom_get( numror, jpdom_autoglo, 'e3t_n', e3t_n(:,:,:), ldxios = lxios_read ) 
     831               CALL iom_get( numror, jpdom_autoglo, 'e3t_b', e3t_b(:,:,:), ldxios = lrxios ) 
     832               CALL iom_get( numror, jpdom_autoglo, 'e3t_n', e3t_n(:,:,:), ldxios = lrxios ) 
    833833               ! needed to restart if land processor not computed  
    834834               IF(lwp) write(numout,*) 'dom_vvl_rst : e3t_b and e3t_n found in restart files' 
     
    844844               IF(lwp) write(numout,*) 'e3t_n set equal to e3t_b.' 
    845845               IF(lwp) write(numout,*) 'neuler is forced to 0' 
    846                CALL iom_get( numror, jpdom_autoglo, 'e3t_b', e3t_b(:,:,:), ldxios = lxios_read ) 
     846               CALL iom_get( numror, jpdom_autoglo, 'e3t_b', e3t_b(:,:,:), ldxios = lrxios ) 
    847847               e3t_n(:,:,:) = e3t_b(:,:,:) 
    848848               neuler = 0 
     
    851851               IF(lwp) write(numout,*) 'e3t_b set equal to e3t_n.' 
    852852               IF(lwp) write(numout,*) 'neuler is forced to 0' 
    853                CALL iom_get( numror, jpdom_autoglo, 'e3t_n', e3t_n(:,:,:), ldxios = lxios_read ) 
     853               CALL iom_get( numror, jpdom_autoglo, 'e3t_n', e3t_n(:,:,:), ldxios = lrxios ) 
    854854               e3t_b(:,:,:) = e3t_n(:,:,:) 
    855855               neuler = 0 
     
    876876               !                          ! ----------------------- ! 
    877877               IF( MIN( id3, id4 ) > 0 ) THEN  ! all required arrays exist 
    878                   CALL iom_get( numror, jpdom_autoglo, 'tilde_e3t_b', tilde_e3t_b(:,:,:), ldxios = lxios_read ) 
    879                   CALL iom_get( numror, jpdom_autoglo, 'tilde_e3t_n', tilde_e3t_n(:,:,:), ldxios = lxios_read ) 
     878                  CALL iom_get( numror, jpdom_autoglo, 'tilde_e3t_b', tilde_e3t_b(:,:,:), ldxios = lrxios ) 
     879                  CALL iom_get( numror, jpdom_autoglo, 'tilde_e3t_n', tilde_e3t_n(:,:,:), ldxios = lrxios ) 
    880880               ELSE                            ! one at least array is missing 
    881881                  tilde_e3t_b(:,:,:) = 0.0_wp 
     
    886886                  !                       ! ------------ ! 
    887887                  IF( id5 > 0 ) THEN  ! required array exists 
    888                      CALL iom_get( numror, jpdom_autoglo, 'hdiv_lf', hdiv_lf(:,:,:), ldxios = lxios_read ) 
     888                     CALL iom_get( numror, jpdom_autoglo, 'hdiv_lf', hdiv_lf(:,:,:), ldxios = lrxios ) 
    889889                  ELSE                ! array is missing 
    890890                     hdiv_lf(:,:,:) = 0.0_wp 
Note: See TracChangeset for help on using the changeset viewer.