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_R025.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_R025.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.8 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_ORCA_R025.h90  *** 
3   !!   Ocean Domain : 0.25 degrees resolution global ocean
4   !!                  (0RCA_R025 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 = 025       !: resolution of the configuration (degrees)
13   INTEGER, PARAMETER ::     &
14      ! Original data size
15      jpidta  = 1442,        &  !: first horizontal dimension > or = to jpi
16      jpjdta  = 1021,        &  !: second                     > or = to jpj
17#if key_orca_r025==75
18      jpkdta  = 75              !: number of levels           > or = to jpk
19#else
20      jpkdta  = 46              !: number of levels           > or = to jpk
21#endif
22   INTEGER  ::     &
23      ! total domain matrix size
24      jpiglo  = jpidta,      &  !: first  dimension of global domain --> i
25      jpjglo  = jpjdta,      &  !: second dimension of global domain --> j
26      ! starting position of the zoom
27      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
28      jpjzoom =   1   ,      &  !: in data indices
29      ! Domain characteristics
30      jperio  =    4            !: lateral cond. type (between 0 and 6)
31
32   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
33   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
34   REAL,PARAMETER      ::  pp_not_used = 999999_wp , &
35      &                    pp_to_be_computed = 0._wp
36   !!
37   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
38   !!
39   INTEGER, PARAMETER ::     & !
40      jphgr_msh = 0            !: type of horizontal mesh
41      !                        !  = 0 curvilinear coordinate on the sphere
42      !                        !      read in coordinate.nc file
43      !                        !  = 1 geographical mesh on the sphere
44      !                        !      with regular grid-spacing
45      !                        !  = 2 f-plane with regular grid-spacing
46      !                        !  = 3 beta-plane with regular grid-spacing
47      !                        !  = 4 Mercator grid with T/U point at the equator  with
48      !                        !      isotropic resolution (e1_deg)
49
50      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
51      !   The mercator grid starts only approximately at gphi0 because
52      !   of the constraint that the equator be a T point.
53   REAL(wp), PARAMETER ::       &  !
54      ppglam0  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
55      ppgphi0  = pp_not_used,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
56      !                            !  latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
57      ppe1_deg = pp_not_used,   &  !: zonal      grid-spacing (degrees)
58      ppe2_deg = pp_not_used,   &  !: meridional grid-spacing (degrees)
59      !
60      ppe1_m   = pp_not_used,   &  !: zonal      grid-spacing (meters )
61      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
62
63   !!  Coefficients associated with the vertical coordinate system
64
65#if key_orca_r025==75
66   REAL(wp), PARAMETER  ::       &
67      &     ppsur =  -3958.951371276829_wp  ,  &  !: ORCA r025 coefficients
68      &     ppa0  =   103.9530096000000_wp  ,  &  !: (75 levels case)
69      &     ppa1  =   2.415951269000000_wp  ,  &  !:
70      &     ppkth =   15.35101370000000_wp  ,  &  !: (non dimensional): gives the approximate
71      !                                           !: layer number above which  stretching will
72      !                                           !: be maximum. Usually of order jpk/2.
73      &     ppacr =       7.00000000000_wp        !: (non dimensional): stretching factor
74      !                                           !: for the grid. The higher zacr, the smaller
75      !                                           !: the stretching.
76   !!
77   !!  If both ppa0 ppa1 and ppsur are specified to pp_to_be_computed, then
78   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
79   !!
80   REAL(wp), PARAMETER ::                      &
81      &     ppdzmin = pp_not_used           ,  &  !: (meters) vertical thickness of the top layer
82      &     pphmax  = pp_not_used                 !: (meters) Maximum depth of the ocean gdepw(jpk)
83   !!
84   LOGICAL,  PARAMETER ::                      &
85      &     ldbletanh = .TRUE.                    !: Use/do not use double tanf function for vertical coordinates
86   REAL(wp), PARAMETER ::                      &
87      &     ppa2  =   100.7609285000000_wp  ,  &  !: Double tanh function parameters
88      &     ppkth2=   48.02989372000000_wp  ,  &  !:
89      &     ppacr2=    13.00000000000_wp          !:
90      !
91#else
92   REAL(wp), PARAMETER  ::       &
93      &     ppsur = pp_to_be_computed ,        &  !: Computed in domzgr, set ppdzmin and pphmax below
94      &     ppa0  = pp_to_be_computed ,        &  !:    "           "
95      &     ppa1  = pp_to_be_computed ,        &  !:    "           "
96      !
97      &     ppkth =  23.563_wp        ,        &  !: (non dimensional): gives the approximate
98      !                                           !: layer number above which  stretching will
99      !                                           !: be maximum. Usually of order jpk/2.
100      &     ppacr =   9.00000000000_wp            !: (non dimensional): stretching factor
101      !                                           !: for the grid. The highest zacr, the smallest
102      !                                           !: the stretching.
103   !!
104   !!  If both ppa0 ppa1 and ppsur are specified to pp_to_be_computed, then
105   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
106   !!
107   REAL(wp), PARAMETER ::                      &
108      &     ppdzmin = 6._wp           ,        &  !: (meters) vertical thickness of the top layer
109      &     pphmax  = 5750._wp                    !: (meters) Maximum depth of the ocean gdepw(jpk)
110   !!
111   LOGICAL,  PARAMETER ::                      &
112      &     ldbletanh = .FALSE.                   !: Use/do not use double tanf function for vertical coordinates
113   REAL(wp), PARAMETER ::                      &
114      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
115      &     ppkth2  = pp_not_used           ,  &  !:
116      &     ppacr2  = pp_not_used                 !:
117#endif
118   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.