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 branches/2013/dev_r3940_CNRS4_IOCRS/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/2013/dev_r3940_CNRS4_IOCRS/NEMOGCM/NEMO/OPA_SRC/par_ORCA_R05.h90 @ 4015

Last change on this file since 4015 was 4015, checked in by cetlod, 11 years ago

2013/dev_r3940_CNRS4_IOCRS: 1st step, add new routines for outputs coarsening

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