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_MERCATOR_UKMO_2013/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/2013/dev_MERCATOR_UKMO_2013/NEMOGCM/NEMO/OPA_SRC/par_ORCA_R05.h90 @ 9088

Last change on this file since 9088 was 4229, checked in by cbricaud, 11 years ago

merge UKMO branch into dev_MERCATOR_UKMO_2013

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