[3] | 1 | !!--------------------------------------------------------------------- |
---|
| 2 | !! *** par_ORCA_R4.h90 *** |
---|
| 3 | !! Ocean Domain : 4 degrees resolution global ocean |
---|
| 4 | !! (0RCA_R4 configuration) |
---|
| 5 | !!--------------------------------------------------------------------- |
---|
[247] | 6 | !!---------------------------------------------------------------------- |
---|
| 7 | !! OPA 9.0 , LOCEAN-IPSL (2005) |
---|
[1152] | 8 | !! $Id$ |
---|
[247] | 9 | !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt |
---|
| 10 | !!---------------------------------------------------------------------- |
---|
[389] | 11 | CHARACTER (len=16) & |
---|
[392] | 12 | #if !defined key_agrif |
---|
[389] | 13 | , PARAMETER & |
---|
| 14 | #endif |
---|
| 15 | :: & |
---|
| 16 | cp_cfg = "orca" !: name of the configuration |
---|
| 17 | INTEGER & |
---|
[392] | 18 | #if !defined key_agrif |
---|
[389] | 19 | , PARAMETER & |
---|
| 20 | #endif |
---|
| 21 | :: & |
---|
[3] | 22 | jp_cfg = 4 , & !: resolution of the configuration (degrees) |
---|
| 23 | ! Original data size |
---|
| 24 | jpidta = 92 , & !: first horizontal dimension > or = to jpi |
---|
| 25 | jpjdta = 76 , & !: second > or = to jpj |
---|
| 26 | jpkdta = 31 , & !: number of levels > or = to jpk |
---|
| 27 | ! global domain matrix size |
---|
| 28 | jpiglo = jpidta, & !: first dimension of global domain --> i |
---|
| 29 | jpjglo = jpjdta, & !: second dimension of global domain --> j |
---|
| 30 | jpk = jpkdta, & !: number of vertical levels |
---|
| 31 | ! starting position of the zoom |
---|
| 32 | jpizoom = 1 , & !: left bottom (i,j) indices of the zoom |
---|
| 33 | jpjzoom = 1 , & !: in data indices |
---|
| 34 | ! Domain characteristics |
---|
[1528] | 35 | jperio = 4 !: lateral cond. type (between 0 and 6) |
---|
[3] | 36 | |
---|
| 37 | !! Values set to pp_not_used indicates that this parameter is not used in THIS config. |
---|
| 38 | !! Values set to pp_to_be_computed indicates that variables will be computed in domzgr |
---|
| 39 | REAL(wp), PARAMETER :: & |
---|
| 40 | pp_not_used = 999999_wp , & !: |
---|
| 41 | pp_to_be_computed = 0._wp !: |
---|
| 42 | |
---|
| 43 | !! Coefficients associated with the horizontal coordinate system (jphgr_msh /= 0 ) |
---|
| 44 | INTEGER, PARAMETER :: & ! |
---|
| 45 | jphgr_msh = 0 !: type of horizontal mesh |
---|
| 46 | ! ! = 0 curvilinear coordinate on the sphere |
---|
| 47 | ! ! read in coordinate.nc file |
---|
| 48 | ! ! = 1 geographical mesh on the sphere |
---|
| 49 | ! ! with regular grid-spacing |
---|
| 50 | ! ! = 2 f-plane with regular grid-spacing |
---|
| 51 | ! ! = 3 beta-plane with regular grid-spacing |
---|
| 52 | ! ! = 4 Mercator grid with T/U point at the equator with |
---|
| 53 | ! ! isotropic resolution (e1_deg) |
---|
| 54 | |
---|
| 55 | ! ppglam0 , ppgphi0: coordinates of the lower leftmost T point of the grid. |
---|
| 56 | ! The mercator grid starts only approximately at gphi0 because |
---|
| 57 | ! of the constraint that the equator be a T point. |
---|
| 58 | REAL(wp) , PARAMETER :: & ! |
---|
| 59 | ppglam0 = pp_not_used, & !: longitude of first raw and column T-point (jphgr_msh = 1) |
---|
| 60 | ppgphi0 = pp_not_used, & !: latitude of first raw and column T-point (jphgr_msh = 1) |
---|
| 61 | ! ! latitude for the Coriolis or Beta parameter (jphgr_msh = 2 or 3) |
---|
| 62 | ppe1_deg = pp_not_used, & !: zonal grid-spacing (degrees) |
---|
| 63 | ppe2_deg = pp_not_used, & !: meridional grid-spacing (degrees) |
---|
| 64 | ! |
---|
| 65 | ppe1_m = pp_not_used, & !: zonal grid-spacing (meters ) |
---|
| 66 | ppe2_m = pp_not_used !: meridional grid-spacing (meters ) |
---|
| 67 | |
---|
| 68 | |
---|
| 69 | !! Vertical grid parameter for domzgr |
---|
| 70 | !! ================================== |
---|
| 71 | |
---|
| 72 | REAL(wp), PARAMETER :: & |
---|
| 73 | & ppsur = -4762.96143546300_wp , & !: ORCA r4, r2 and r05 coefficients |
---|
| 74 | & ppa0 = 255.58049070440_wp , & !: (default coefficients) |
---|
[56] | 75 | & ppa1 = 245.58132232490_wp , & !: |
---|
| 76 | & ppkth = 21.43336197938_wp , & !: (non dimensional): gives the approximate |
---|
| 77 | ! !: layer number above which stretching will |
---|
| 78 | ! !: be maximum. Usually of order jpk/2. |
---|
| 79 | & ppacr = 3.00000000000_wp !: (non dimensional): stretching factor |
---|
| 80 | ! !: for the grid. The highest zacr, the smallest |
---|
| 81 | ! !: the stretching. |
---|
[3] | 82 | |
---|
| 83 | !! If both ppa0 ppa1 and ppsur are specified to 0, then |
---|
| 84 | !! they are computed from ppdzmin, pphmax , ppkth, ppacr in dom_zgr |
---|
| 85 | |
---|
| 86 | REAL(wp), PARAMETER :: & |
---|
[56] | 87 | & ppdzmin = pp_not_used , & !: (meters) vertical thickness of the top layer |
---|
| 88 | & pphmax = pp_not_used !: (meters) Maximum depth of the ocean gdepw(jpk) |
---|
[3] | 89 | !!--------------------------------------------------------------------- |
---|