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 6154 – NEMO

Changeset 6154


Ignore:
Timestamp:
2015-12-22T12:59:56+01:00 (8 years ago)
Author:
jpalmier
Message:

JPALM -- 22-12-2015 -- add more print statement for restart writing checkings

Location:
branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO/OPA_SRC/IOM/restart.F90

    r6151 r6154  
    8080         IF( nitrst <= nitend .AND. nitrst > 0 ) THEN 
    8181            IF ( ln_rstdate ) THEN 
     82            WRITE(numout,*) 'JPALM - we want all informations for restart file name -- ' 
     83            WRITE(numout,*) 'JPALM - 1 - conditions for openning rst file :' 
    8284            WRITE(numout,*) 'JPALM - oce restart kt = ',kt,'==', nitrst - 1 
    8385            WRITE(numout,*) 'JPALM - oce restart nstock = ',nstock,'== 1 ' 
     
    8587            WRITE(numout,*) 'JPALM - oce restart nitrst = ',nitrst,'<=',nitend,' and > 0' 
    8688            WRITE(numout,*) '-----------------------------' 
     89            CALL ju2ymds( fjulday + rdttra(1) / rday, iyear, imonth, iday, zsec ) 
     90            WRITE(clkt, '(i4.4,2i2.2)') iyear, imonth, iday 
     91            WRITE(numout,*) 'JPALM - 2 - date calculated by ju2ymds: ' 
     92            WRITE(numout,*) 'JPALM - oce restart fjulday = ',fjulday 
     93            WRITE(numout,*) 'JPALM - oce restart rdttra/rday  = ',rdttra(1)/rday 
     94            WRITE(numout,*) 'JPALM - oce restart rdttra  = ',rdttra(1) 
     95            WRITE(numout,*) 'JPALM - oce restart rday = ',rday 
     96            WRITE(numout,*) 'JPALM - oce restart iyear = ',iyear 
     97            WRITE(numout,*) 'JPALM - oce restart imonth = ',imonth 
     98            WRITE(numout,*) 'JPALM - oce restart iday = ',iday 
     99 
    87100            ENDIF 
    88101         ENDIF 
  • branches/NERC/dev_r5518_NOC_MEDUSA_Stable/NEMOGCM/NEMO/TOP_SRC/trcrst.F90

    r6144 r6154  
    8686      IF( kt == nitrst - 2*nn_dttrc .OR. nstock == nn_dttrc .OR. ( kt == nitend - nn_dttrc .AND. .NOT. lrst_trc ) ) THEN 
    8787         IF ( ln_rstdate ) THEN 
     88            WRITE(numout,*) '-----------------------------' 
     89            WRITE(numout,*) 'JPALM - we want all informations for restart file name -- '  
     90            WRITE(numout,*) 'JPALM - 1 - conditions for openning rst file :' 
    8891            WRITE(numout,*) 'JPALM - trc restart kt = ',kt,'==', nitrst - 2*nn_dttrc 
    8992            WRITE(numout,*) 'JPALM - trc restart nstock = ',nstock,'==',nn_dttrc 
     
    9295            CALL ju2ymds( fjulday + rdttra(1) / rday, iyear, imonth, iday, zsec ) 
    9396            WRITE(clkt, '(i4.4,2i2.2)') iyear, imonth, iday 
     97            WRITE(numout,*) 'JPALM - 2 - date calculated by ju2ymds: ' 
     98            WRITE(numout,*) 'JPALM - trc restart fjulday = ',fjulday 
     99            WRITE(numout,*) 'JPALM - trc restart rdttra/rday  = ',rdttra(1)/rday 
     100            WRITE(numout,*) 'JPALM - trc restart rdttra  = ',rdttra(1) 
     101            WRITE(numout,*) 'JPALM - trc restart rday = ',rday 
     102            WRITE(numout,*) 'JPALM - trc restart iyear = ',iyear 
     103            WRITE(numout,*) 'JPALM - trc restart imonth = ',imonth 
     104            WRITE(numout,*) 'JPALM - trc restart iday = ',iday 
    94105         ELSE 
    95106            ! beware of the format used to write kt (default is i8.8, that should be large enough) 
Note: See TracChangeset for help on using the changeset viewer.