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_POMME_R025.h90 in branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/OBC – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/OBC/obc_par_POMME_R025.h90 @ 2281

Last change on this file since 2281 was 2281, checked in by smasson, 14 years ago

set proper svn properties to all files...

  • Property svn:keywords set to Id
File size: 4.9 KB
Line 
1   !!----------------------------------------------------------------------
2   !!                  ***  obc_par_POMME_R025.h90  ***
3   !!----------------------------------------------------------------------
4   !! open boundary parameter : POMME configuration
5   !!---------------------------------------------------------------------
6   INTEGER, PARAMETER ::  jptobc  =       14   
7   !: time dimension of the BCS fields on input
8
9   !! * EAST open boundary
10   LOGICAL, PARAMETER ::     &  !:
11      lp_obc_east = .TRUE.      !:
12
13     INTEGER   &
14#if !defined key_agrif
15     , PARAMETER   &
16#endif
17    ::     &
18      ! * default values *
19      !jpieob = jpiglo-2,    &  !: i-localization of the East open boundary (must be ocean U-point)
20      !jpjed  =        2,    &  !: j-starting indice of the East open boundary (must be land T-point)
21      !jpjef  = jpjglo-1,    &  !: j-ending   indice of the East open boundary (must be land T-point)
22      jpieob = jpiglo-2,    &  !: i-localization of the East open boundary (must be ocean U-point)
23      jpjed  =        1,    &  !: j-starting indice of the East open boundary (must be land T-point)
24      jpjef  =   jpjglo,    &  !: j-ending   indice of the East open boundary (must be land T-point)
25      jpjedp1 =  jpjed+1,    &  !: first ocean point         "                 "
26      jpjefm1 =  jpjef-1        !: last  ocean point         "                 "
27
28   !! * WEST open boundary
29   LOGICAL, PARAMETER ::     &  !:
30      lp_obc_west = .TRUE.     !: to active or not the West open boundary
31
32     INTEGER   &
33#if !defined key_agrif
34     , PARAMETER   &
35#endif
36    ::     &
37      ! * default values *
38      !jpiwob  =        2,   &  !: i-localization of the West open boundary (must be ocean U-point)
39      !jpjwd   =        2,   &  !: j-starting indice of the West open boundary (must be land T-point)
40      !jpjwf   = jpjglo-1,   &  !: j-ending   indice of the West open boundary (must be land T-point)
41      jpiwob  =        2,   &  !: i-localization of the West open boundary (must be ocean U-point)
42      jpjwd   =        1,   &  !: j-starting indice of the West open boundary (must be land T-point)
43      jpjwf   =   jpjglo,   &  !: j-ending   indice of the West open boundary (must be land T-point)
44      jpjwdp1 =  jpjwd+1,    &  !: first ocean point         "                 "
45      jpjwfm1 =  jpjwf-1        !: last  ocean point         "                 "
46
47   !! * NORTH open boundary
48   LOGICAL, PARAMETER ::     &  !:
49      lp_obc_north = .TRUE.     !:
50
51     INTEGER   &
52#if !defined key_agrif
53     , PARAMETER   &
54#endif
55    ::     &
56      ! * default values *
57      !jpjnob = jpjglo-2,    &  !: j-localization of the North open boundary (must be ocean V-point)
58      !jpind  =        2,    &  !: i-starting indice of the North open boundary (must be land T-point)
59      !jpinf  = jpiglo-1,    &  !: i-ending   indice of the North open boundary (must be land T-point)
60      jpjnob = jpjglo-2,    &  !: j-localization of the North open boundary (must be ocean V-point)
61      jpind  =        1,    &  !: i-starting indice of the North open boundary (must be land T-point)
62      jpinf  =   jpiglo,    &  !: i-ending   indice of the North open boundary (must be land T-point)
63      jpindp1 =  jpind+1,    &  !: first ocean point         "                 "
64      jpinfm1 =  jpinf-1        !: last  ocean point         "                 "
65
66   !! * SOUTH open boundary
67   LOGICAL, PARAMETER ::     &  !:
68      lp_obc_south = .TRUE.     !: INDICE to active or not the South open boundary
69
70     INTEGER   &
71#if !defined key_agrif
72     , PARAMETER   &
73#endif
74    ::     &
75      ! * default values *
76      !jpjsob =        2,    &  !: j-localization of the South open boundary (must be ocean V-point)
77      !jpisd  =        2,    &  !: i-starting indice of the South open boundary (must be land T-point)
78      !jpisf  = jpiglo-1,    &  !: i-ending   indice of the South open boundary (must be land T-point)
79      jpjsob =        2,    &  !: j-localization of the South open boundary (must be ocean V-point)
80      jpisd  =        1,    &  !: i-starting indice of the South open boundary (must be land T-point)
81      jpisf  =   jpiglo,    &  !: i-ending   indice of the South open boundary (must be land T-point)
82      jpisdp1 =  jpisd+1,    &  !: first ocean point         "                 "
83      jpisfm1 =  jpisf-1        !: last  ocean point         "                 "
84   
85   !! * CHOSE WHERE YOU WANT TO LOCATE THE BAROTROPIC CORRECTION VELOCITY
86   !chd IND025
87   LOGICAL, PARAMETER ::     &  !:
88        lp_obc_east_barotp_corr  = .TRUE.,   & !:
89        lp_obc_west_barotp_corr  = .TRUE.,   & !:
90        lp_obc_north_barotp_corr = .TRUE.,   & !:
91        lp_obc_south_barotp_corr = .TRUE.      !:
92
93   INTEGER, PARAMETER ::     &  !:
94      jpnic = 2700              !: maximum number of isolated coastlines points
95   !!---------------------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.