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.
obc_par_EEL_R5.h90 in trunk/NEMO/OPA_SRC/OBC – NEMO

source: trunk/NEMO/OPA_SRC/OBC/obc_par_EEL_R5.h90 @ 719

Last change on this file since 719 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1   !!----------------------------------------------------------------------
2   !!                  ***  obc_par_EEL_R5.h90  ***
3   !!----------------------------------------------------------------------
4   !! open boundary parameter : EEL5 configuration
5   !!---------------------------------------------------------------------
6   !!----------------------------------------------------------------------
7   !!  OPA 9.0 , LOCEAN-IPSL (2005)
8   !! $Header$
9   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
10   !!----------------------------------------------------------------------
11   INTEGER, PARAMETER ::     &  !: time dimension for the BCS fields on input
12      jptobc  =         2
13
14   !! * EAST open boundary
15   LOGICAL, PARAMETER ::     &  !:
16      lp_obc_east = .TRUE.      !: to active or not the East open boundary
17   INTEGER, PARAMETER ::     &  !:
18      jpieob  = jpiglo-2,    &  !: i-localization of the East open boundary (must be ocean U-point)
19      jpjed   =        2,    &  !: j-starting indice of the East open boundary (must be land T-point)
20      jpjef   = jpjglo-1,    &  !: j-ending   indice of the East open boundary (must be land T-point)
21      jpjedp1 =  jpjed+1,    &  !: first ocean point         "                 "
22      jpjefm1 =  jpjef-1        !: last  ocean point         "                 "
23
24   !! * WEST open boundary
25   LOGICAL, PARAMETER ::     &  !:
26      lp_obc_west = .TRUE.      !: to active or not the West open boundary
27   INTEGER, PARAMETER ::     &
28      jpiwob  =          2,    &  !: i-localization of the West open boundary (must be ocean U-point)
29      jpjwd   =          2,    &  !: j-starting indice of the West open boundary (must be land T-point)
30      jpjwf   = jpjglo-1,    &  !: j-ending   indice of the West open boundary (must be land T-point)
31      jpjwdp1 =  jpjwd+1,    &  !: first ocean point         "                 "
32      jpjwfm1 =  jpjwf-1        !: last  ocean point         "                 "
33
34   !! * NORTH open boundary
35   LOGICAL, PARAMETER ::     &  !:
36      lp_obc_north = .FALSE.    !: to active or not the North open boundary
37   INTEGER, PARAMETER ::     &  !:
38      jpjnob  = jpjglo-2,    &  !: j-localization of the North open boundary (must be ocean V-point)
39      jpind   =        2,    &  !: i-starting indice of the North open boundary (must be land T-point)
40      jpinf   = jpiglo-1,    &  !: i-ending   indice of the North open boundary (must be land T-point)
41      jpindp1 =  jpind+1,    &  !: first ocean point         "                 "
42      jpinfm1 =  jpinf-1        !: last  ocean point         "                 "
43
44   !! * SOUTH open boundary
45   LOGICAL, PARAMETER ::     &  !:
46      lp_obc_south = .FALSE.    !: to active or not the South open boundary
47   INTEGER, PARAMETER ::     &  !:
48      jpjsob  =        2,    &  !: j-localization of the South open boundary (must be ocean V-point)
49      jpisd   =        2,    &  !: i-starting indice of the South open boundary (must be land T-point)
50      jpisf   = jpiglo-1,    &  !: i-ending   indice of the South open boundary (must be land T-point)
51      jpisdp1 =  jpisd+1,    &  !: first ocean point         "                 "
52      jpisfm1 =  jpisf-1        !: last  ocean point         "                 "
53   
54   INTEGER, PARAMETER ::     &  !:
55      jpnic = 2700              !: maximum number of isolated coastlines points
56   !!---------------------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.