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/IOM/in_out_manager.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/IOM/in_out_manager.F90

    r5872 r5980  
    2626   CHARACTER(lc) ::   cn_exp           !: experiment name used for output filename 
    2727   CHARACTER(lc) ::   cn_ocerst_in     !: suffix of ocean restart name (input) 
     28   CHARACTER(lc) ::   cn_ocerst_indir  !: restart input directory 
    2829   CHARACTER(lc) ::   cn_ocerst_out    !: suffix of ocean restart name (output) 
     30   CHARACTER(lc) ::   cn_ocerst_outdir !: restart output directory 
    2931   LOGICAL       ::   ln_rstart        !: start from (F) rest or (T) a restart file 
     32   LOGICAL       ::   ln_rst_list      !: output restarts at list of times (T) or by frequency (F) 
    3033   INTEGER       ::   nn_no            !: job number 
    3134   INTEGER       ::   nn_rstctl        !: control of the time step (0, 1 or 2) 
     
    3942   INTEGER       ::   nn_write         !: model standard output frequency 
    4043   INTEGER       ::   nn_stock         !: restart file frequency 
     44   INTEGER, DIMENSION(10) :: nn_stocklist  !: restart dump times 
    4145   LOGICAL       ::   ln_dimgnnn       !: type of dimgout. (F): 1 file for all proc 
    4246                                                       !:                  (T): 1 file per proc 
    4347   LOGICAL       ::   ln_mskland       !: mask land points in NetCDF outputs (costly: + ~15%) 
     48   LOGICAL       ::   ln_cfmeta        !: output additional data to netCDF files required for compliance with the CF metadata standard 
    4449   LOGICAL       ::   ln_clobber       !: clobber (overwrite) an existing file 
    4550   INTEGER       ::   nn_chunksz       !: chunksize (bytes) for NetCDF file (works only with iom_nf90 routines) 
     
    7984   INTEGER       ::   nwrite                      !: model standard output frequency 
    8085   INTEGER       ::   nstock                      !: restart file frequency 
     86   INTEGER, DIMENSION(10) :: nstocklist           !: restart dump times 
    8187 
    8288   !!---------------------------------------------------------------------- 
     
    8591   INTEGER ::   nitrst                !: time step at which restart file should be written 
    8692   LOGICAL ::   lrst_oce              !: logical to control the oce restart write  
    87    INTEGER ::   numror, numrow        !: logical unit for cean restart (read and write) 
     93   INTEGER ::   numror = 0            !: logical unit for ocean restart (read). Init to 0 is needed for SAS (in daymod.F90) 
     94   INTEGER ::   numrow                !: logical unit for ocean restart (write) 
     95   INTEGER ::   nrst_lst              !: number of restart to output next 
    8896 
    8997   !!---------------------------------------------------------------------- 
     
    143151   LOGICAL       ::   lwp      = .FALSE.    !: boolean : true on the 1st processor only .OR. ln_ctl 
    144152   LOGICAL       ::   lsp_area = .TRUE.     !: to make a control print over a specific area 
     153   CHARACTER(lc) ::   cxios_context         !: context name used in xios 
    145154 
    146155   !!---------------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.