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 5980 for branches/2014/dev_r4650_UKMO7_STARTHOUR/NEMOGCM/NEMO/OPA_SRC/DOM/domain.F90 – NEMO

Ignore:
Timestamp:
2015-12-02T16:20:47+01:00 (8 years ago)
Author:
timgraham
Message:

Upgraded to v3.6 revision of trunk (r5518)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2014/dev_r4650_UKMO7_STARTHOUR/NEMOGCM/NEMO/OPA_SRC/DOM/domain.F90

    r5872 r5980  
    135135      !!---------------------------------------------------------------------- 
    136136      USE ioipsl 
    137       NAMELIST/namrun/ nn_no   , cn_exp  , cn_ocerst_in, cn_ocerst_out, ln_rstart , nn_rstctl ,  & 
     137      NAMELIST/namrun/ cn_ocerst_indir, cn_ocerst_outdir, nn_stocklist, ln_rst_list,               & 
     138                       nn_no   , cn_exp  , cn_ocerst_in, cn_ocerst_out, ln_rstart , nn_rstctl ,  & 
    138139         &             nn_it000, nn_itend, nn_date0    , nn_time0     , nn_leapy  , nn_istate ,  & 
    139140         &             nn_stock, nn_write, ln_dimgnnn  , ln_mskland   , ln_clobber, nn_chunksz,  & 
     
    170171         WRITE(numout,*) '      experiment name for output      cn_exp     = ', cn_exp 
    171172         WRITE(numout,*) '      file prefix restart input       cn_ocerst_in= ', cn_ocerst_in 
     173         WRITE(numout,*) '      restart input directory         cn_ocerst_indir= ', cn_ocerst_indir 
    172174         WRITE(numout,*) '      file prefix restart output      cn_ocerst_out= ', cn_ocerst_out 
     175         WRITE(numout,*) '      restart output directory        cn_ocerst_outdir= ', cn_ocerst_outdir 
    173176         WRITE(numout,*) '      restart logical                 ln_rstart  = ', ln_rstart 
    174177         WRITE(numout,*) '      start with forward time step    nn_euler   = ', nn_euler 
     
    180183         WRITE(numout,*) '      leap year calendar (0/1)        nn_leapy   = ', nn_leapy 
    181184         WRITE(numout,*) '      initial state output            nn_istate  = ', nn_istate 
    182          WRITE(numout,*) '      frequency of restart file       nn_stock   = ', nn_stock 
     185         IF( ln_rst_list ) THEN 
     186            WRITE(numout,*) '      list of restart dump times      nn_stocklist   =', nn_stocklist 
     187         ELSE 
     188            WRITE(numout,*) '      frequency of restart file       nn_stock   = ', nn_stock 
     189         ENDIF 
    183190         WRITE(numout,*) '      frequency of output file        nn_write   = ', nn_write 
    184191         WRITE(numout,*) '      multi file dimgout              ln_dimgnnn = ', ln_dimgnnn 
    185192         WRITE(numout,*) '      mask land points                ln_mskland = ', ln_mskland 
     193         WRITE(numout,*) '      additional CF standard metadata ln_cfmeta  = ', ln_cfmeta 
    186194         WRITE(numout,*) '      overwrite an existing file      ln_clobber = ', ln_clobber 
    187195         WRITE(numout,*) '      NetCDF chunksize (bytes)        nn_chunksz = ', nn_chunksz 
     
    197205      ninist = nn_istate 
    198206      nstock = nn_stock 
     207      nstocklist = nn_stocklist 
    199208      nwrite = nn_write 
    200209      neuler = nn_euler 
    201       IF ( neuler == 1 .AND. .NOT.ln_rstart ) THEN 
     210      IF ( neuler == 1 .AND. .NOT. ln_rstart ) THEN 
    202211         WRITE(ctmp1,*) 'ln_rstart =.FALSE., nn_euler is forced to 0 ' 
    203212         CALL ctl_warn( ctmp1 ) 
Note: See TracChangeset for help on using the changeset viewer.