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

source: trunk/NEMO/OPA_SRC/par_ORCA_R2.h90 @ 3

Last change on this file since 3 was 3, checked in by opalod, 20 years ago

Initial revision

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