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_R5.h90 in branches/2012/dev_r3309_LOCEAN12_Ediag/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/2012/dev_r3309_LOCEAN12_Ediag/NEMOGCM/NEMO/OPA_SRC/par_EEL_R5.h90 @ 3317

Last change on this file since 3317 was 2715, checked in by rblod, 13 years ago

First attempt to put dynamic allocation on the trunk

  • Property svn:keywords set to Id
File size: 5.1 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_EEL_R5.h90  ***   
3   !!   Ocean Domain : 5 km resolution Channel (EEL_R5 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 = 5      ,      &  !: resolution of the configuration (km)
22
23      ! data size              !!! * size of all the input files
24      jpidta  =  66   ,      &  !: first horizontal dimension > or = to jpi
25      jpjdta  =  66   ,      &  !: second                     > or = to jpj
26      jpkdta  =  31   ,      &  !: number of levels           > or = to jpk
27
28      ! total domain size      !!! * full domain *
29      jpiglo  = jpidta,      &  !: first  dimension of global domain --> i
30      jpjglo  = jpjdta,      &  !: second dimension of global domain --> j
31      ! zoom starting position
32      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
33      jpjzoom =   1   ,      &  !: in data indices
34
35      ! Domain characteristics
36      jperio  =   1             !: lateral cond. type (between 0 and 6)
37
38   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
39   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
40   REAL(wp), PARAMETER ::   &  !:
41      pp_not_used       = 999999._wp ,  &  !:
42      pp_to_be_computed =      0._wp       !:
43
44   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
45
46   INTEGER,PARAMETER   ::    & !:
47      jphgr_msh = 2            !: type of horizontal mesh
48      !                        ! = 0 curvilinear coordinate on the sphere
49      !                        !     read in coordinate.nc file
50      !                        ! = 1 geographical mesh on the sphere
51      !                        !     with regular grid-spacing
52      !                        ! = 2 f-plane with regular grid-spacing
53      !                        ! = 3 beta-plane with regular grid-spacing
54      !                        ! = 4 Mercator grid with T/U point at the equator  with
55      !                        !     isotropic resolution (e1_deg)
56
57      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
58      !   The mercator grid starts only approximately at gphi0 because
59      !   of the constraint that the equator be a T point.
60   REAL(wp) &
61#if !defined key_agrif
62      , PARAMETER  &
63#endif
64      ::     &  !:
65      ppglam0  =    0.0_wp,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
66      ppgphi0  = 43.436430714_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   = 8000.0_wp,   &  !: zonal      grid-spacing (meters)
72      ppe2_m   = 8000.0_wp       !: meridional grid-spacing (meters)
73   !!
74   !!  Coefficients associated with the vertical coordinate system
75   !!
76   REAL(wp), PARAMETER  ::       &   !:
77      &     ppsur = -4762.96143546300_wp    ,  &  !: Computed in domzgr, set ppdzmin, pphmax below
78      &     ppa0  =   255.58049070440_wp    ,  &  !:
79      &     ppa1  =   245.58132232490_wp    ,  &  !:
80      !
81      &     ppkth =    21.43336197938_wp    ,  &  !: (non dimensional): gives the approximate
82      !                                           !: layer number above which  stretching will
83      !                                           !: be maximum. Usually of order jpk/2.
84      &     ppacr =     3.00000000000_wp          !: (non dimensional): stretching factor
85      !                                           !: for the grid. The highest zacr, the smallest
86      !                                           !: the stretching.
87
88   !!
89   !!  If both ppa0 ppa1 and ppsur are specified to 0, then
90   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
91   !!
92   REAL(wp), PARAMETER ::        &  !:
93      &     ppdzmin = pp_not_used           ,  &  !: (meters) vertical thickness of the top layer
94      &     pphmax  = pp_not_used                 !: (meters) Maximum depth of the ocean gdepw(jpk)
95   LOGICAL,  PARAMETER ::        &
96      &     ldbletanh = .FALSE.                   !: Use/do not use double tanf function for vertical coordinates
97   REAL(wp), PARAMETER ::        &
98      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
99      &     ppkth2  = pp_not_used           ,  &  !:
100      &     ppacr2  = pp_not_used                 !:
101   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.