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 4015 for branches/2013/dev_r3940_CNRS4_IOCRS/NEMOGCM/NEMO/OPA_SRC/par_oce.F90 – NEMO

Ignore:
Timestamp:
2013-09-09T12:13:17+02:00 (11 years ago)
Author:
cetlod
Message:

2013/dev_r3940_CNRS4_IOCRS: 1st step, add new routines for outputs coarsening

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3940_CNRS4_IOCRS/NEMOGCM/NEMO/OPA_SRC/par_oce.F90

    r3294 r4015  
    77   !!   NEMO     1.0  !  2004-01  (G. Madec, J.-M. Molines)  Free form and module 
    88   !!            3.3  !  2010-09  (C. Ethe) TRA-TRC merge: add jpts, jp_tem & jp_sal 
     9   !!            3.5  !  2012-07  (J. Simeon) online coarsening of outputs 
     10   !!                             renounced parameter status for jpiglo, jpjglo  
    911   !!---------------------------------------------------------------------- 
    1012   USE par_kind          ! kind parameters 
     
    9092   !!   default option  :                               small closed basin 
    9193   !!--------------------------------------------------------------------- 
    92    CHARACTER(len=16), PUBLIC, PARAMETER ::   cp_cfg = "default"   !: name of the configuration 
    93    INTEGER          , PUBLIC, PARAMETER ::   jp_cfg = 0           !: resolution of the configuration 
     94   CHARACTER(len=16), PUBLIC ::   cp_cfg = "default"   !: name of the configuration 
     95   INTEGER          , PUBLIC ::   jp_cfg = 0           !: resolution of the configuration 
    9496 
    9597   ! data size                                       !!! * size of all input files * 
     
    98100   INTEGER, PUBLIC, PARAMETER ::   jpkdta  = 31       !: number of levels      ( >= jpk ) 
    99101 
    100    ! global or zoom domain size                     !!! * computational domain * 
    101    INTEGER, PUBLIC, PARAMETER ::   jpiglo  = jpidta   !: 1st dimension of global domain --> i 
    102    INTEGER, PUBLIC, PARAMETER ::   jpjglo  = jpjdta   !: 2nd    -                  -    --> j 
     102   ! global or zoom domain size (formerly parameters) !!! * computational domain * 
     103   INTEGER, PUBLIC            ::   jpiglo  = jpidta   !: 1st dimension of global domain --> i 
     104   INTEGER, PUBLIC            ::   jpjglo  = jpjdta   !: 2nd    -                  -    --> j 
    103105 
    104106   ! zoom starting position  
    105    INTEGER, PUBLIC, PARAMETER ::   jpizoom =   1      !: left bottom (i,j) indices of the zoom 
    106    INTEGER, PUBLIC, PARAMETER ::   jpjzoom =   1      !: in data domain indices 
     107   INTEGER, PUBLIC ::   jpizoom =   1      !: left bottom (i,j) indices of the zoom 
     108   INTEGER, PUBLIC ::   jpjzoom =   1      !: in data domain indices 
    107109 
    108110   ! Domain characteristics 
    109    INTEGER, PUBLIC, PARAMETER ::   jperio  =  0       !: lateral cond. type (between 0 and 6) 
     111   INTEGER, PUBLIC ::   jperio  =  0       !: lateral cond. type (between 0 and 6) 
    110112   !                                                  !  = 0 closed                 ;   = 1 cyclic East-West 
    111113   !                                                  !  = 2 equatorial symmetric   ;   = 3 North fold T-point pivot 
Note: See TracChangeset for help on using the changeset viewer.