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 tags/nemo_v1_01/NEMO/OPA_SRC/OBC – NEMO

source: tags/nemo_v1_01/NEMO/OPA_SRC/OBC/obc_par_EEL_R5.h90 @ 6027

Last change on this file since 6027 was 247, checked in by opalod, 19 years ago

CL : Add CVS Header and CeCILL licence information

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 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
12   !! * EAST open boundary
13   LOGICAL, PARAMETER ::     &  !:
14      lp_obc_east = .TRUE.      !: to active or not the East open boundary
15   INTEGER, PARAMETER ::     &  !:
16      jpieob  = jpiglo-2,    &  !: i-localization of the East open boundary (must be ocean U-point)
17      jpjed   =        2,    &  !: j-starting indice of the East open boundary (must be land T-point)
18      jpjef   = jpjglo-1,    &  !: j-ending   indice of the East open boundary (must be land T-point)
19      jpjedp1 =  jpjed+1,    &  !: first ocean point         "                 "
20      jpjefm1 =  jpjef-1        !: last  ocean point         "                 "
21
22   !! * WEST open boundary
23   LOGICAL, PARAMETER ::     &  !:
24      lp_obc_west = .TRUE.      !: to active or not the West open boundary
25   INTEGER, PARAMETER ::     &
26      jpiwob  =          2,    &  !: i-localization of the West open boundary (must be ocean U-point)
27      jpjwd   =          2,    &  !: j-starting indice of the West open boundary (must be land T-point)
28      jpjwf   = jpjglo-1,    &  !: j-ending   indice of the West open boundary (must be land T-point)
29      jpjwdp1 =  jpjwd+1,    &  !: first ocean point         "                 "
30      jpjwfm1 =  jpjwf-1        !: last  ocean point         "                 "
31
32   !! * NORTH open boundary
33   LOGICAL, PARAMETER ::     &  !:
34      lp_obc_north = .FALSE.    !: to active or not the North open boundary
35   INTEGER, PARAMETER ::     &  !:
36      jpjnob  = jpjglo-2,    &  !: j-localization of the North open boundary (must be ocean V-point)
37      jpind   =        2,    &  !: i-starting indice of the North open boundary (must be land T-point)
38      jpinf   = jpiglo-1,    &  !: i-ending   indice of the North open boundary (must be land T-point)
39      jpindp1 =  jpind+1,    &  !: first ocean point         "                 "
40      jpinfm1 =  jpinf-1        !: last  ocean point         "                 "
41
42   !! * SOUTH open boundary
43   LOGICAL, PARAMETER ::     &  !:
44      lp_obc_south = .FALSE.    !: to active or not the South open boundary
45   INTEGER, PARAMETER ::     &  !:
46      jpjsob  =        2,    &  !: j-localization of the South open boundary (must be ocean V-point)
47      jpisd   =        2,    &  !: i-starting indice of the South open boundary (must be land T-point)
48      jpisf   = jpiglo-1,    &  !: i-ending   indice of the South open boundary (must be land T-point)
49      jpisdp1 =  jpisd+1,    &  !: first ocean point         "                 "
50      jpisfm1 =  jpisf-1        !: last  ocean point         "                 "
51   
52   INTEGER, PARAMETER ::     &  !:
53      jpnic = 2700              !: maximum number of isolated coastlines points
54   !!---------------------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.