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 12660 for NEMO/branches/UKMO/NEMO_4.0.2_GO8_package/src/ICE/icerst.F90 – NEMO

Ignore:
Timestamp:
2020-04-03T13:09:33+02:00 (4 years ago)
Author:
cguiavarch
Message:

UKMO/NEMO_4.0.2_GO8_package: copy over changes from NEMO_4.0.1_GO8_package branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.2_GO8_package/src/ICE/icerst.F90

    r12658 r12660  
    2323   USE in_out_manager ! I/O manager 
    2424   USE iom            ! I/O manager library 
     25   USE ioipsl, ONLY : ju2ymds    ! for calendar 
    2526   USE lib_mpp        ! MPP library 
    2627   USE lib_fortran    ! fortran utilities (glob_sum + no signed zero) 
     
    4849      INTEGER, INTENT(in) ::   kt       ! number of iteration 
    4950      ! 
     51      INTEGER             ::   iyear, imonth, iday 
     52      REAL (wp)           ::   zsec 
     53      REAL (wp)           ::   zfjulday 
    5054      CHARACTER(len=20)   ::   clkt     ! ocean time-step define as a character 
    5155      CHARACTER(len=50)   ::   clname   ! ice output restart file name 
     
    6367         IF( nitrst <= nitend .AND. nitrst > 0 ) THEN 
    6468            ! beware of the format used to write kt (default is i8.8, that should be large enough...) 
    65             IF( nitrst > 99999999 ) THEN   ;   WRITE(clkt, *       ) nitrst 
    66             ELSE                           ;   WRITE(clkt, '(i8.8)') nitrst 
     69            IF ( ln_rstdate ) THEN 
     70               zfjulday = fjulday + (2*nn_fsbc+1)*rdt / rday 
     71               IF( ABS(zfjulday - REAL(NINT(zfjulday),wp)) < 0.1 / rday )   zfjulday = REAL(NINT(zfjulday),wp)   ! avoid truncation error 
     72               CALL ju2ymds( zfjulday, iyear, imonth, iday, zsec )            
     73               WRITE(clkt, '(i4.4,2i2.2)') iyear, imonth, iday 
     74            ELSE 
     75               IF( nitrst > 99999999 ) THEN   ;   WRITE(clkt, *       ) nitrst 
     76               ELSE                           ;   WRITE(clkt, '(i8.8)') nitrst 
     77               ENDIF 
    6778            ENDIF 
    6879            ! create the file 
Note: See TracChangeset for help on using the changeset viewer.