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_R4.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_R4.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: 5.0 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_ORCA_R4.h90  ***   
3   !!   Ocean Domain : 4 degrees resolution global ocean
4   !!                  (0RCA_R4 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 = 4       !: resolution of the configuration (degrees)
13   INTEGER, PARAMETER ::     &
14      ! data size              !!! * size of all input files *
15      jpidta  =  92   ,      &  !: first horizontal dimension > or = to jpi
16      jpjdta  =  76   ,      &  !: second                     > or = to jpj
17      jpkdta  =  31             !: number of levels           > or = to jpk
18   
19   INTEGER           ::     &
20      ! global domain matrix size
21      jpiglo  = jpidta,      &  !: first  dimension of global domain --> i
22      jpjglo  = jpjdta,      &  !: second dimension of global domain --> j
23      ! starting position of the zoom
24      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
25      jpjzoom =   1   ,      &  !: in data indices
26      ! Domain characteristics
27      jperio  =   4             !: lateral cond. type (between 0 and 6)
28
29   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
30   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
31   REAL(wp), PARAMETER ::   &
32      pp_not_used       = 999999_wp , &  !:
33      pp_to_be_computed = 0._wp          !:
34
35   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
36   INTEGER, PARAMETER ::     & !
37      jphgr_msh = 0            !: type of horizontal mesh
38      !                        ! = 0 curvilinear coordinate on the sphere
39      !                        !     read in coordinate.nc file
40      !                        ! = 1 geographical mesh on the sphere
41      !                        !     with regular grid-spacing
42      !                        ! = 2 f-plane with regular grid-spacing
43      !                        ! = 3 beta-plane with regular grid-spacing
44      !                        ! = 4 Mercator grid with T/U point at the equator  with
45      !                        !     isotropic resolution (e1_deg)
46
47      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
48      !   The mercator grid starts only approximately at gphi0 because
49      !   of the constraint that the equator be a T point.
50   REAL(wp) , PARAMETER ::      &  !
51      ppglam0  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
52      ppgphi0  = pp_not_used,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
53      !                            ! latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
54      ppe1_deg = pp_not_used,   &  !: zonal      grid-spacing (degrees)
55      ppe2_deg = pp_not_used,   &  !: meridional grid-spacing (degrees)
56      !
57      ppe1_m   = pp_not_used,   &  !: zonal      grid-spacing (meters )
58      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
59
60
61   !! Vertical grid parameter for domzgr
62   !! ==================================
63
64   REAL(wp), PARAMETER  ::       &
65      &     ppsur = -4762.96143546300_wp    ,  &  !: ORCA r4, r2 and r05 coefficients
66      &     ppa0  =   255.58049070440_wp    ,  &  !: (default coefficients)
67      &     ppa1  =   245.58132232490_wp    ,  &  !:
68      &     ppkth =    21.43336197938_wp    ,  &  !: (non dimensional): gives the approximate
69      !                                           !: layer number above which  stretching will
70      !                                           !: be maximum. Usually of order jpk/2.
71      &     ppacr =     3.00000000000_wp          !: (non dimensional): stretching factor
72      !                                           !: for the grid. The highest zacr, the smallest
73      !                                           !: the stretching.
74
75   !!  If both ppa0 ppa1 and ppsur are specified to 0, then
76   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
77
78   REAL(wp), PARAMETER ::        &
79      &     ppdzmin = pp_not_used           ,  &  !: (meters) vertical thickness of the top layer
80      &     pphmax  = pp_not_used                 !: (meters) Maximum depth of the ocean gdepw(jpk)
81   LOGICAL,  PARAMETER ::        &
82      &     ldbletanh = .FALSE.                   !: Use/do not use double tanf function for vertical coordinates
83   REAL(wp), PARAMETER ::        &
84      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
85      &     ppkth2  = pp_not_used           ,  &  !:
86      &     ppacr2  = pp_not_used                 !:
87   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.