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_AMM_12km.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_AMM_12km.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

File size: 4.7 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_AMM_12km.h90  *** 
3   !!   Ocean Domain : 12km resolution atlantic  margin model
4   !!                  (AMM_12km configuration VN3.3)
5   !!---------------------------------------------------------------------
6   CHARACTER (len=16) :: cp_cfg = "amm"  !: name of the configuration
7   INTEGER            :: jp_cfg = 011    !: resolution of the configuration (degrees)
8   INTEGER, PARAMETER ::     &
9      ! Original data size
10      jpidta  = 198,        &  !: first horizontal dimension > or = to jpi
11      jpjdta  = 224,        &  !: second                     > or = to jpj
12      jpkdta  = 33             !: number of levels           > or = to jpk
13   INTEGER            ::     &
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
23   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
24   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
25   REAL,PARAMETER      ::  pp_not_used = 999999_wp , &
26      &                    pp_to_be_computed = 0._wp
27   !!
28   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
29   !!
30   INTEGER, PARAMETER ::     & !
31      jphgr_msh = 0            !: type of horizontal mesh
32      !                        !  = 0 curvilinear coordinate on the sphere
33      !                        !      read in coordinate.nc file
34      !                        !  = 1 geographical mesh on the sphere
35      !                        !      with regular grid-spacing
36      !                        !  = 2 f-plane with regular grid-spacing
37      !                        !  = 3 beta-plane with regular grid-spacing
38      !                        !  = 4 Mercator grid with T/U point at the equator  with
39      !                        !      isotropic resolution (e1_deg)
40
41      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
42      !   The mercator grid starts only approximately at gphi0 because
43      !   of the constraint that the equator be a T point.
44   REAL(wp), PARAMETER ::       &  !
45      ppglam0  = pp_not_used,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
46      ppgphi0  = pp_not_used,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
47      !                            !  latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
48      ppe1_deg = pp_not_used,   &  !: zonal      grid-spacing (degrees)
49      ppe2_deg = pp_not_used,   &  !: meridional grid-spacing (degrees)
50      !
51      ppe1_m   = pp_not_used,   &  !: zonal      grid-spacing (meters )
52      ppe2_m   = pp_not_used       !: meridional grid-spacing (meters )
53
54   !!
55   !! Vertical grid parameter for domzgr
56   !! ==================================
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   !!
78   LOGICAL,  PARAMETER ::                      &
79      &     ldbletanh = .FALSE.                   !: Use/do not use double tanf function for vertical coordinates
80   REAL(wp), PARAMETER ::                      &
81      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
82      &     ppkth2  = pp_not_used           ,  &  !:
83      &     ppacr2  = pp_not_used                 !:
84
85   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.