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_R1.h90 in branches/2011/dev_r2802_NOCL_bfrimp/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/2011/dev_r2802_NOCL_bfrimp/NEMOGCM/NEMO/OPA_SRC/par_ORCA_R1.h90 @ 2872

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

First attempt to put dynamic allocation on the trunk

File size: 7.0 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_ORCA_R1.h90  *** 
3   !!   Ocean Domain : 1 degrees resolution global ocean
4   !!                  (0RCA_R1 configuration)
5   !!---------------------------------------------------------------------
6   !!----------------------------------------------------------------------
7   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
8   !! $Id: par_ORCA_R1.h90 2379 2010-11-12 14:51:18Z acc $
9   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
10   !! Andrew Coward, 12/11/2010.
11   !! Parameters appropriate to ORCA1
12   !! Use: key_orca_r1=75 to set 75 levels
13   !!----------------------------------------------------------------------
14   CHARACTER (len=16)      &
15#if !defined key_agrif
16      , PARAMETER  &
17#endif
18      ::    & 
19      cp_cfg = "orca"           !: name of the configuration
20   INTEGER     &
21#if !defined key_agrif
22      , PARAMETER  &
23#endif
24      :: &
25      jp_cfg = 1    ,        &  !: resolution of the configuration (degrees)
26      ! Original data size
27      jpidta  =  362,        &  !: first horizontal dimension > or = to jpi
28      jpjdta  =  292,        &  !: second                     > or = to jpj
29#if key_orca_r1==75
30      jpkdta  = 75 ,         &  !: number of levels           > or = to jpk
31#else
32      jpkdta  = 46 ,         &  !: number of levels           > or = to jpk
33#endif
34      ! total domain matrix size
35      jpiglo  = jpidta,      &  !: first  dimension of global domain --> i
36      jpjglo  = jpjdta,      &  !: second dimension of global domain --> j
37      ! starting position of the zoom
38      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
39      jpjzoom =   1   ,      &  !: in data indices
40      ! Domain characteristics
41      jperio  =   6             !: lateral cond. type (between 0 and 6)
42
43   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
44   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
45   REAL,PARAMETER      ::  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 = 0            !: 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  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
66      ppgphi0  = pp_not_used,   &  !: 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   = pp_not_used,   &  !: zonal      grid-spacing (meters )
72      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
73
74   !!  Coefficients associated with the vertical coordinate system
75
76#if key_orca_r1==75
77   REAL(wp), PARAMETER  ::       &
78      &     ppsur =  -3958.951371276829_wp  ,  &  !: ORCA r1 coefficients
79      &     ppa0  =   103.9530096000000_wp  ,  &  !: (75 levels case)
80      &     ppa1  =   2.415951269000000_wp  ,  &  !:
81      &     ppkth =   15.35101370000000_wp  ,  &  !: (non dimensional): gives the approximate
82      !                                           !: layer number above which  stretching will
83      !                                           !: be maximum. Usually of order jpk/2.
84      &     ppacr =       7.00000000000_wp        !: (non dimensional): stretching factor
85      !                                           !: for the grid. The higher zacr, the smaller
86      !                                           !: the stretching.
87   !!
88   !!  If both ppa0 ppa1 and ppsur are specified to pp_to_be_computed, then
89   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
90   !!
91   REAL(wp), PARAMETER ::                      &
92      &     ppdzmin = pp_not_used           ,  &  !: (meters) vertical thickness of the top layer
93      &     pphmax  = pp_not_used                 !: (meters) Maximum depth of the ocean gdepw(jpk)
94   !!
95   LOGICAL,  PARAMETER ::                      &
96      &     ldbletanh = .TRUE.                    !: Use/do not use double tanf function for vertical coordinates
97   REAL(wp), PARAMETER ::                      &
98      &     ppa2  =   100.7609285000000_wp  ,  &  !: Double tanh function parameters
99      &     ppkth2=   48.02989372000000_wp  ,  &  !:
100      &     ppacr2=    13.00000000000_wp          !:
101      !
102#else
103   REAL(wp), PARAMETER  ::       &
104      &     ppsur = pp_to_be_computed ,        &  !: Computed in domzgr, set ppdzmin and pphmax below
105      &     ppa0  = pp_to_be_computed ,        &  !:    "           "
106      &     ppa1  = pp_to_be_computed ,        &  !:    "           "
107      !
108      &     ppkth =  23.563_wp        ,        &  !: (non dimensional): gives the approximate
109      !                                           !: layer number above which  stretching will
110      !                                           !: be maximum. Usually of order jpk/2.
111      &     ppacr =   9.00000000000_wp            !: (non dimensional): stretching factor
112      !                                           !: for the grid. The highest zacr, the smallest
113      !                                           !: the stretching.
114   !!
115   !!  If both ppa0 ppa1 and ppsur are specified to pp_to_be_computed, then
116   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
117   !!
118   REAL(wp), PARAMETER ::                      &
119      &     ppdzmin = 6._wp           ,        &  !: (meters) vertical thickness of the top layer
120      &     pphmax  = 5750._wp                    !: (meters) Maximum depth of the ocean gdepw(jpk)
121   !!
122   LOGICAL,  PARAMETER ::                      &
123      &     ldbletanh = .FALSE.                   !: Use/do not use double tanf function for vertical coordinates
124   REAL(wp), PARAMETER ::                      &
125      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
126      &     ppkth2  = pp_not_used           ,  &  !:
127      &     ppacr2  = pp_not_used                 !:
128#endif
129   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.