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 8800 for branches/2017/dev_r8600_xios_read_write_v2/NEMOGCM/NEMO/OPA_SRC/IOM/iom_def.F90 – NEMO

Ignore:
Timestamp:
2017-11-23T16:48:37+01:00 (6 years ago)
Author:
andmirek
Message:

#1953 and #1962 merged dev_r8600_xios_read beanch r8668

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8600_xios_read_write_v2/NEMOGCM/NEMO/OPA_SRC/IOM/iom_def.F90

    r7646 r8800  
    4646!$AGRIF_DO_NOT_TREAT 
    4747   INTEGER, PUBLIC            ::   iom_open_init = 0   !: used to initialize iom_file(:)%nfid to 0 
     48!XIOS read restart    
     49   LOGICAL, PUBLIC            ::   lxios_read          !: read single file restart using XIOS 
     50   LOGICAL, PUBLIC            ::   lxios_sini = .FALSE. ! is restart in a single file 
     51   LOGICAL, PUBLIC            ::   lxios_set  = .FALSE.  
    4852 
    4953   TYPE, PUBLIC ::   file_descriptor 
     
    6670   END TYPE file_descriptor 
    6771   TYPE(file_descriptor), DIMENSION(jpmax_files), PUBLIC ::   iom_file !: array containing the info for all opened files 
     72 
     73   INTEGER, PARAMETER, PUBLIC                   :: max_rst_fields = 95   
     74 
    6875!$AGRIF_END_DO_NOT_TREAT 
     76 
     77   TYPE, PUBLIC :: RST_FIELD   
     78    CHARACTER(len=30) :: vname ! names of variables in restart file 
     79    CHARACTER(len=30) :: grid 
     80   END TYPE RST_FIELD 
     81   TYPE(RST_FIELD), PUBLIC :: rst_fields(max_rst_fields) 
    6982 
    7083   !!===================================================================== 
Note: See TracChangeset for help on using the changeset viewer.