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 951 for branches/dev_001_GM/NEMO/OFF_SRC/IOM/iom_def.F90 – NEMO

Ignore:
Timestamp:
2008-05-14T18:42:10+02:00 (16 years ago)
Author:
cetlod
Message:

phasing the OFFLINE module to the new version of NEMO, see ticket 146

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_GM/NEMO/OFF_SRC/IOM/iom_def.F90

    r719 r951  
    55   !!==================================================================== 
    66   !! History :  9.0  ! 06 09  (S. Masson) Original code 
     7   !!             "   ! 07 07  (D. Storkey) Add uldname 
    78   !!-------------------------------------------------------------------- 
    89   !!--------------------------------------------------------------------------------- 
    910   !! OPA 9.0 , LOCEAN-IPSL (2006)  
    10    !! $Header$  
     11   !! $Header: /home/opalod/NEMOCVSROOT/NEMO/OPA_SRC/IOM/iom_def.F90,v 1.7 2007/06/05 10:33:38 opalod Exp $  
    1112   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    1213   !!--------------------------------------------------------------------------------- 
     
    2425   INTEGER, PARAMETER, PUBLIC ::   jpdom_local_noovlap = 6   !: (nldi:nlei  ,nldj:nlej  ) 
    2526   INTEGER, PARAMETER, PUBLIC ::   jpdom_unknown       = 7   !: No dimension checking 
     27   INTEGER, PARAMETER, PUBLIC ::   jpdom_autoglo       = 8   !:  
     28   INTEGER, PARAMETER, PUBLIC ::   jpdom_autodta       = 9   !:  
    2629 
    2730   INTEGER, PARAMETER, PUBLIC ::   jpioipsl    = 100      !: Use ioipsl (fliocom only) library 
     
    4144 
    4245   INTEGER, PARAMETER, PUBLIC ::   jpmax_files  = 20   !: maximum number of simultaneously opened file 
    43    INTEGER, PARAMETER, PUBLIC ::   jpmax_vars   = 60   !: maximum number of variables in one file 
     46   INTEGER, PARAMETER, PUBLIC ::   jpmax_vars   = 360  !: maximum number of variables in one file 
    4447   INTEGER, PARAMETER, PUBLIC ::   jpmax_dims   =  4   !: maximum number of dimensions for one variable 
    4548   INTEGER, PARAMETER, PUBLIC ::   jpmax_digits =  5   !: maximum number of digits for the cpu number in the file name 
    4649 
     50!$AGRIF_DO_NOT_TREAT 
    4751   INTEGER, PUBLIC            ::   iom_init = 0        !: used to initialize iom_file(:)%nfid to 0 
    48 !$AGRIF_DO_NOT_TREAT 
     52 
    4953   TYPE, PUBLIC ::   file_descriptor 
    5054      CHARACTER(LEN=240)                        ::   name     !: name of the file 
     
    5458      INTEGER                                   ::   iduld    !: id of the unlimited dimension 
    5559      INTEGER                                   ::   irec     !: writing record position   
    56       CHARACTER(LEN=16), DIMENSION(jpmax_vars)  ::   cn_var   !: names of the variables 
     60      CHARACTER(LEN=32)                         ::   uldname  !: name of the unlimited dimension 
     61      CHARACTER(LEN=32), DIMENSION(jpmax_vars)  ::   cn_var   !: names of the variables 
    5762      INTEGER, DIMENSION(jpmax_vars)            ::   nvid     !: id of the variables 
    5863      INTEGER, DIMENSION(jpmax_vars)            ::   ndims    !: number of dimensions of the variables 
Note: See TracChangeset for help on using the changeset viewer.