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_SEABASS.h90 in branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/OPA_SRC/par_SEABASS.h90 @ 5196

Last change on this file since 5196 was 5196, checked in by pabouttier, 9 years ago

Add SEABASS reference configuration for this NEMO version for now; See Ticket #1505

  • Property svn:executable set to *
File size: 5.4 KB
Line 
1   !!---------------------------------------------------------------------
2   !!                     ***  par_SEABASS.h90  ***
3   !!   Ocean Domain : SEA Box for ASSimilation configuration
4   !!---------------------------------------------------------------------
5   !!----------------------------------------------------------------------
6   !!  OPA 9.0 , LOCEAN-IPSL (2005)
7   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
8   !!----------------------------------------------------------------------
9   CHARACTER (len=16), PARAMETER ::   &  !:
10      cp_cfg = "seabass"          !: name of the configuration
11   INTEGER, PARAMETER ::     &  !:
12      jp_cfg =  4   ,        &  !: 4 = 1/4 of a degree
13                                 !: 6  = 1/6 of a degree
14                                 !: 12 = 1/12 of a degree
15      ! data size              !!! * size of all the input files *
16      jpidta  = 30*jp_cfg+1,         &  !: 1st horizontal dimension ( >= jpi )
17      jpjdta  = 20*jp_cfg+1,          &  !: 2nd    "            "    ( >= jpj )
18      jpkdta  = 11,          &  !: number of levels         ( >= jpk )
19
20      ! global domain size     !!! * full domain *
21      jpiglo  = jpidta,      &  !: 1st dimension of global domain --> i
22      jpjglo  = jpjdta,      &  !: 2nd    "                  "    --> j
23      ! zoom starting position
24      jpizoom =   1   ,      &  !: left bottom (i,j) indices of the zoom
25      jpjzoom =   1   ,      &  !: in data indices
26
27      ! Domain characteristics
28      jperio  =     0 ,      &  !: lateral cond. type (between 0 and 6). 0 : closed
29      jpisl   =     0 ,      &  !: number of islands
30      jpnisl  = jpiglo          !: maximum number of points per island
31
32   !!  Values set to pp_not_used indicates that this parameter is not used in THIS config.
33   !!  Values set to pp_to_be_computed  indicates that variables will be computed in domzgr
34   REAL(wp), PARAMETER ::   &  !:
35      pp_not_used       = 999999._wp  , & !: ???
36      pp_to_be_computed =      0._wp      !: ???
37   !!
38   !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 )
39   !!
40   INTEGER,PARAMETER   ::    & !:
41      jphgr_msh = 1            !: type of horizontal mesh
42      !                        ! = 0 curvilinear coordinate on the sphere
43      !                        !     read in coordinate.nc file
44      !                        ! = 1 geographical mesh on the sphere
45      !                        !     with regular grid-spacing
46      !                        ! = 2 f-plane with regular grid-spacing
47      !                        ! = 3 beta-plane with regular grid-spacing
48      !                        ! = 4 Mercator grid with T/U point at the equator  with
49      !                        !     isotropic resolution (e1_deg)
50      !                        ! =5  beta-plane with regular grid-spacing and rotated domain (GYRE configuration)
51
52      !   ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid.
53      !   The mercator grid starts only approximately at gphi0 because
54      !   of the constraint that the equator be a T point.
55   REAL(wp) ,PARAMETER ::     &  !:
56      ppglam0  =   -60.0_wp,   &  !: longitude of first raw and column T-point (jphgr_msh = 1)
57      ppgphi0  =   24.0_wp,   &  !: latitude  of first raw and column T-point (jphgr_msh = 1)
58      !                          ! latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3)
59      ppe1_deg = 1./jp_cfg ,     &  !: zonal      grid-spacing (degrees)
60      ppe2_deg = 1./jp_cfg ,     &  !: meridional grid-spacing (degrees)
61      !
62      ppe1_m   = 111.319543153E3/jp_cfg,    &  !: zonal      grid-spacing (meters )
63      ppe2_m   = 111.319543153E3/jp_cfg        !: meridional grid-spacing (meters )
64   !!
65   !!  Coefficients associated with the vertical coordinate system
66   !!
67
68   REAL(wp), PARAMETER  ::       &  !:
69      &     ppsur = 0.e0      ,  &  !: Computed in domzgr
70      &     ppa0  = 0.e0      ,  &  !:
71      &     ppa1  = 0.e0      ,  &  !:
72      !
73      &     ppkth =  17.28520372419791_wp   ,  &  !: (non dimensional): gives the approximate
74      !                                           !    layer number above which  stretching will
75      !                                           !    be maximum. Usually of order jpk/2.
76      &     ppacr =  5.000000000000000_wp         !: (non dimensional): stretching factor
77      !                                           !    for the grid. The highest zacr, the smallest
78      !                                           !    the stretching.
79
80   !!
81   !!  If all ppa0 ppa1 and ppsur are specified to 0, then
82   !!  they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr
83   !!
84   REAL(wp), PARAMETER ::        &  !:
85      &     ppdzmin = 303.0e0 ,  &  !: (meters): depth of the top (first) model layer
86      !                             !            depth of second "w" level
87      &     pphmax  = 4195.         !: (meters): maximum depth of the ocean
88      !                             !            depth of the last "w" level
89   LOGICAL,  PARAMETER ::        &
90      &     ldbletanh = .FALSE.                   !: Use/do not use double tanf function for vertical coordinates
91   REAL(wp), PARAMETER ::        &
92      &     ppa2    = pp_not_used           ,  &  !: Double tanh function parameters
93      &     ppkth2  = pp_not_used           ,  &  !:
94      &     ppacr2  = pp_not_used                 !:
95
96   !!---------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.