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

source: branches/2011/dev_r2802_NOCL_prjhpg/NEMOGCM/NEMO/OPA_SRC/par_AMM7.h90 @ 2873

Last change on this file since 2873 was 2873, checked in by hliu, 13 years ago

1). added pressure Jacobian horizontal pressure gradient code, 2) added par_AMM7/12.h90, 3) added two arch files for NOCL mobius and ubuntu linux

File size: 4.7 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_ATLARC_R033.h90  *** 
3   !!   Ocean Domain : 0.33 degrees resolution atlantic and arctic oceans
4   !!                  (ATLARC_R033 configuration)
5   !!---------------------------------------------------------------------
6   CHARACTER (len=16), PARAMETER ::   &
7      cp_cfg = "amm"         !: name of the configuration
8   INTEGER, PARAMETER ::     &
9      jp_cfg = 011  ,        &  !: resolution of the configuration (degrees)
10      ! Original data size
11      jpidta  = 297,        &  !: first horizontal dimension > or = to jpi
12      jpjdta  = 375,        &  !: second                     > or = to jpj
13      jpkdta  = 33,         &  !: number of levels           > or = to jpk
14      ! total domain matrix size
15      jpiglo  = jpidta,      &  !: first  dimension of global domain --> i
16      jpjglo  = jpjdta,      &  !: second dimension of global domain --> j
17      ! starting position of the zoom
18      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
19      jpjzoom =   1   ,      &  !: in data indices
20      ! Domain characteristics
21      jperio  =    0  ,      &  !: lateral cond. type (between 0 and 6)
22      jpisl   =  150  ,      &  !: number of islands (irrelevent)
23      jpnisl  = 3000            !: maximum number of points per island
24
25   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
26   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
27   REAL(wp),PARAMETER      ::  pp_not_used = 999999_wp , &
28      &                        pp_to_be_computed = 0._wp
29   !!
30   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
31   !!
32   INTEGER, PARAMETER ::     & !
33      jphgr_msh = 0            !: type of horizontal mesh
34      !                        !  = 0 curvilinear coordinate on the sphere
35      !                        !      read in coordinate.nc file
36      !                        !  = 1 geographical mesh on the sphere
37      !                        !      with regular grid-spacing
38      !                        !  = 2 f-plane with regular grid-spacing
39      !                        !  = 3 beta-plane with regular grid-spacing
40      !                        !  = 4 Mercator grid with T/U point at the equator  with
41      !                        !      isotropic resolution (e1_deg)
42
43      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
44      !   The mercator grid starts only approximately at gphi0 because
45      !   of the constraint that the equator be a T point.
46   REAL(wp), PARAMETER ::       &  !
47      ppglam0  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
48      ppgphi0  = pp_not_used,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
49      !                            !  latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
50      ppe1_deg = pp_not_used,   &  !: zonal      grid-spacing (degrees)
51      ppe2_deg = pp_not_used,   &  !: meridional grid-spacing (degrees)
52      !
53      ppe1_m   = pp_not_used,   &  !: zonal      grid-spacing (meters )
54      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
55
56   !!  Coefficients associated with the vertical coordinate system
57
58   REAL(wp), PARAMETER  ::       &
59      &     ppsur = pp_to_be_computed ,  &  !: Computed in domzgr, set ppdzmin and pphmax below
60      &     ppa0  = pp_to_be_computed ,  &  !:    "           "
61      &     ppa1  = pp_to_be_computed ,  &  !:    "           "
62      !
63      &     ppkth =  23.563_wp        ,  &  !: (non dimensional): gives the approximate
64      !                                     !: layer number above which  stretching will
65      !                                     !: be maximum. Usually of order jpk/2.
66      &     ppacr =    9.00000000000_wp     !: (non dimensional): stretching factor
67      !                                     !: for the grid. The highest zacr, the smallest
68      !                                     !: the stretching.
69
70   !!
71   !!  If both ppa0 ppa1 and ppsur are specified to 0, then
72   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
73   !!
74   REAL(wp), PARAMETER ::        &
75      &     ppdzmin = 6._wp           ,  &  !: (meters) vertical thickness of the top layer
76      &     pphmax  = 5720._wp              !: (meters) Maximum depth of the ocean gdepw(jpk)
77   LOGICAL, PARAMETER ::         &
78      &     ldbletanh = .FALSE.
79   REAL(wp), PARAMETER ::        &
80      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
81      &     ppkth2  = pp_not_used           ,  &  !:
82      &     ppacr2  = pp_not_used                 !:
83   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.