source: trunk/NEMOGCM/NEMO/OPA_SRC/par_PERU12.h90 @ 32

Last change on this file since 32 was 32, checked in by cholod, 12 years ago

par_TROP12.h90 => par_TROP12.h90 + par_depth.h90 (also for BB12,PERU12)

File size: 4.2 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_peru12.h90  ***
3   !!   Ocean Domain : 1/12 degrees resolution Peru/Chile Configuration
4   !!                  (PERU12 configuration)
5   !!---------------------------------------------------------------------
6   !!----------------------------------------------------------------------
7   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
8   !! $Id: par_ORCA_R2.h90 2715 2011-03-30 15:58:35Z rblod $
9   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
10   !!----------------------------------------------------------------------
11
12   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
13   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
14   REAL,PARAMETER      ::  pp_not_used = 999999_wp , &
15      &                    pp_to_be_computed = 0._wp
16
17   !!---------------------------------------------------------------------
18   !!   Vertical Domain
19   !!---------------------------------------------------------------------
20# include "par_depth.h90"
21
22   !!---------------------------------------------------------------------
23   !!   Horizontal Domain
24   !!---------------------------------------------------------------------
25   CHARACTER (len=16)      &
26#if !defined key_agrif
27      , PARAMETER  &
28#endif
29      ::    & 
30      cp_cfg = "peru"         !: name of the configuration
31   INTEGER     &
32#if !defined key_agrif
33      , PARAMETER  &
34#endif
35      :: &
36      jp_cfg = 12  ,        &  !: resolution of the configuration (degrees)
37      !
38      jpidta    = 361,  &
39      jpjdta    = 505 
40
41   INTEGER     &
42#if !defined key_agrif
43      , PARAMETER  &
44#endif
45      :: &
46      ! total domain matrix size
47      jpiglo  = jpidta,      &  !: first  dimension of global domain --> i
48      jpjglo  = jpjdta,      &  !: second dimension of global domain --> j
49      ! starting position of the zoom
50      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
51      jpjzoom =   1   ,      &  !: in data indices
52      ! Domain characteristics
53      jperio  =  0       !: lateral cond. type (between 0 and 6)
54      !                  !  = 0 closed                 ;   = 1 cyclic East-West
55      !                  !  = 2 equatorial symmetric   ;   = 3 North fold T-point pivot
56      !                  !  = 4 cyclic East-West AND North fold T-point pivot
57      !                  !  = 5 North fold F-point pivot
58      !                  !  = 6 cyclic East-West AND North fold F-point pivot
59
60   !!
61   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
62   !!
63   INTEGER, PARAMETER ::     & !
64      jphgr_msh = 0            !: type of horizontal mesh
65      !                        !  = 0 curvilinear coordinate on the sphere
66      !                        !      read in coordinate.nc file
67      !                        !  = 1 geographical mesh on the sphere
68      !                        !      with regular grid-spacing
69      !                        !  = 2 f-plane with regular grid-spacing
70      !                        !  = 3 beta-plane with regular grid-spacing
71      !                        !  = 4 Mercator grid with T/U point at the equator  with
72      !                        !      isotropic resolution (e1_deg)
73
74      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
75      !   The mercator grid starts only approximately at gphi0 because
76      !   of the constraint that the equator be a T point.
77   REAL(wp), PARAMETER ::       &  !
78      ppglam0  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
79      ppgphi0  = pp_not_used,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
80      !                            !  latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
81      ppe1_deg = pp_not_used,   &  !: zonal      grid-spacing (degrees)
82      ppe2_deg = pp_not_used,   &  !: meridional grid-spacing (degrees)
83      !
84      ppe1_m   = pp_not_used,   &  !: zonal      grid-spacing (meters )
85      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
86
87   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.