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_EEL_R2.h90 in branches/UKMO/CO5_package_branch/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/UKMO/CO5_package_branch/NEMOGCM/NEMO/OPA_SRC/par_EEL_R2.h90 @ 13190

Last change on this file since 13190 was 7367, checked in by deazer, 8 years ago

Contains merged code for CO5 reference.

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