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 8836 for branches/2017/dev_r8600_xios_read_write_v2/NEMOGCM/NEMO/OPA_SRC/DOM – NEMO

Ignore:
Timestamp:
2017-11-28T15:45:20+01:00 (6 years ago)
Author:
andmirek
Message:

#1953 and #1962 Techinal corrections

Location:
branches/2017/dev_r8600_xios_read_write_v2/NEMOGCM/NEMO/OPA_SRC/DOM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8600_xios_read_write_v2/NEMOGCM/NEMO/OPA_SRC/DOM/daymod.F90

    r8831 r8836  
    347347               CALL iom_get( numror, 'ndastp', zndastp, ldxios = lrxios ) 
    348348               ndastp = NINT( zndastp ) 
    349                CALL iom_get( numror, 'adatrj', adatrj, ldxios = lrxios ) 
    350           CALL iom_get( numror, 'ntime', ktime, ldxios = lrxios ) 
     349               CALL iom_get( numror, 'adatrj', adatrj , ldxios = lrxios ) 
     350          CALL iom_get( numror, 'ntime' , ktime  , ldxios = lrxios ) 
    351351          nn_time0=INT(ktime) 
    352352               ! calculate start time in hours and minutes 
     
    408408         ! calendar control 
    409409         IF( lwxios ) CALL iom_swap(      cwxios_context          ) 
    410          CALL iom_rstput( kt, nitrst, numrow, 'kt'     , REAL( kt    , wp), ldxios = lwxios )   ! time-step 
    411          CALL iom_rstput( kt, nitrst, numrow, 'ndastp' , REAL( ndastp, wp), ldxios = lwxios )   ! date 
    412          CALL iom_rstput( kt, nitrst, numrow, 'adatrj' , adatrj, ldxios = lwxios            )   ! number of elapsed days since 
    413          !                                                                     ! the begining of the run [s] 
     410         CALL iom_rstput( kt, nitrst, numrow, 'kt'     , REAL( kt    , wp)  , ldxios = lwxios )   ! time-step 
     411         CALL iom_rstput( kt, nitrst, numrow, 'ndastp' , REAL( ndastp, wp)  , ldxios = lwxios )   ! date 
     412         CALL iom_rstput( kt, nitrst, numrow, 'adatrj' , adatrj             , ldxios = lwxios            )   ! number of elapsed days since 
     413         !                                                                                                   ! the begining of the run [s] 
    414414    CALL iom_rstput( kt, nitrst, numrow, 'ntime'  , REAL( nn_time0, wp), ldxios = lwxios ) ! time 
    415415         IF( lwxios ) CALL iom_swap(      cxios_context          ) 
  • branches/2017/dev_r8600_xios_read_write_v2/NEMOGCM/NEMO/OPA_SRC/DOM/domain.F90

    r8831 r8836  
    7979      INTEGER ::   iconf = 0    ! local integers 
    8080      CHARACTER (len=64) ::   cform = "(A12, 3(A13, I7))"  
    81       CHARACTER (len=*), INTENT(IN) :: cdstr                  ! model   
     81      CHARACTER (len=*), INTENT(IN) :: cdstr                  ! model: NEMO or SAS. Determines core restart variables 
    8282      INTEGER , DIMENSION(jpi,jpj) ::   ik_top , ik_bot       ! top and bottom ocean level 
    8383      REAL(wp), DIMENSION(jpi,jpj) ::   z1_hu_0, z1_hv_0 
Note: See TracChangeset for help on using the changeset viewer.