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

source: trunk/NEMO/OPA_SRC/par_ORCA_R05.h90 @ 359

Last change on this file since 359 was 359, checked in by opalod, 18 years ago

nemo_v1_update_033 : RB + CT : Add new surface pressure gradient algorithms

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.3 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_ORCA_R05.h90  *** 
3   !!   Ocean Domain : 0.5 degrees resolution global ocean
4   !!                  (0RCA_R05 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   CHARACTER (len=16), PARAMETER ::   &
12      cp_cfg = "orca"           !: name of the configuration
13   INTEGER, PARAMETER ::     &
14      jp_cfg = 05  ,         &  !: resolution of the configuration (degrees)
15
16      ! data size              !!! * size of all the input files *
17      jpidta  = 722,         &  !: 1st lateral dimension > or = to jpiglo
18      jpjdta  = 511,         &  !: 2nd   "         "     > or = to jpjglo
19      jpkdta  =  31             !: number of levels      > or = to jpkglo
20
21#if defined key_antarctic
22   INTEGER, PARAMETER ::     &
23      ! zoom domain size       !!! * antarctic zoom *
24      jpiglo  = jpidta,      &  !: 1st dimension of global domain --> i
25      jpjglo  = 187   ,      &  !: 2nd     "                 "    --> j
26      jpk     = jpkdta,      &  !: number of vertical levels
27      ! starting position of the zoom
28      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
29      jpjzoom =   1   ,      &  !: in data domain indices
30      ! Domain characteristics
31      jperio  =   1   ,      &  !: lateral cond. type (between 0 and 6)
32      jpisl   =   1   ,      &  !: number of islands
33      jpnisl  =   1             !: maximum number of points per island
34
35#elif defined key_arctic
36   INTEGER, PARAMETER ::     &
37      ! zoom domain size       !!! *  arctic zoom  *
38      jpiglo  = 562,         &  !: 1st dimension of global domain --> i
39      jpjglo  = jpjdta-301+1,&  !: 2nd     "                 "    --> j
40      jpk     = jpkdta,      &  !: number of vertical levels
41      ! zoom starting position
42      jpizoom =  81   ,      &  !: left bottom (i,j) indices of the zoom
43      jpjzoom = 301   ,      &  !: in data domain indices
44      ! Domain characteristics
45      jperio  =   5   ,      &  !: lateral cond. type (between 0 and 6)
46      jpisl   =   1   ,      &  !: number of islands
47      jpnisl  =   1             !: maximum number of points per island
48
49#else
50   INTEGER, PARAMETER ::     &
51      ! global domain size     !!! * full domain *
52      jpiglo  = jpidta,      &  !: 1st dimension of global domain --> i
53      jpjglo  = jpjdta,      &  !: 2nd     "                 "    --> j
54      jpk     = jpkdta,      &  !: number of vertical levels
55      ! zoom starting position   
56      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
57      jpjzoom =   1   ,      &  !: in data domain indices
58      ! Domain characteristics
59      jperio  =    6  ,      &  !: lateral cond. type (between 0 and 6)
60      jpisl   =   79  ,      &  !: number of islands
61      jpnisl  = 2000            !: maximum number of points per island
62#endif
63
64   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
65   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
66   REAL(wp), PARAMETER ::   &
67      pp_not_used       = 999999._wp , &  !:
68      pp_to_be_computed = 0._wp          !:
69
70   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
71
72   INTEGER, PARAMETER   ::   & !
73      jphgr_msh = 0            !: type of horizontal mesh
74      !                        !  = 0 curvilinear coordinate on the sphere
75      !                        !      read in coordinate.nc file
76      !                        !  = 1 geographical mesh on the sphere
77      !                        !      with regular grid-spacing
78      !                        !  = 2 f-plane with regular grid-spacing
79      !                        !  = 3 beta-plane with regular grid-spacing
80      !                        !  = 4 Mercator grid with T/U point at the equator  with
81      !                        !      isotropic resolution (e1_deg)
82
83      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
84      !   The mercator grid starts only approximately at gphi0 because
85      !   of the constraint that the equator be a T point.
86   REAL(wp) , PARAMETER ::      &  !
87      ppglam0  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
88      ppgphi0  = pp_not_used,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
89      !                            ! latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
90      ppe1_deg = pp_not_used,   &  !: zonal      grid-spacing (degrees)
91      ppe2_deg = pp_not_used,   &  !: meridional grid-spacing (degrees)
92      !
93      ppe1_m   = pp_not_used,   &  !: zonal      grid-spacing (meters )
94      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
95
96   !!
97   !! Vertical grid parameter for domzgr
98   !! =====================================
99   !!
100   REAL(wp), PARAMETER  ::       &
101      &     ppsur = -4762.96143546300_wp    ,  &  !: ORCA r4, r2 and r05 coefficients
102      &     ppa0  =   255.58049070440_wp    ,  &  !: (default coefficients)
103      &     ppa1  =   245.58132232490_wp    ,  &  !:
104      &     ppkth =    21.43336197938_wp    ,  &  !: (non dimensional): gives the approximate
105      !                                           !: layer number above which  stretching will
106      !                                           !: be maximum. Usually of order jpk/2.
107      &     ppacr =     3.00000000000_wp          !: (non dimensional): stretching factor
108      !                                           !: for the grid. The highest zacr, the smallest
109      !                                           !: the stretching.
110
111   !!
112   !!  If both ppa0 ppa1 and ppsur are specified to 0, then
113   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
114   !!
115   REAL(wp), PARAMETER ::        &
116      &     ppdzmin = pp_not_used           ,  &  !: (meters) vertical thickness of the top layer
117      &     pphmax  = pp_not_used                 !: (meters) Maximum depth of the ocean gdepw(jpk)
118   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.