/[MITgcm]/MITgcm/pkg/gmredi/GMREDI.h
ViewVC logotype

Diff of /MITgcm/pkg/gmredi/GMREDI.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.18 by jmc, Thu Feb 10 21:24:19 2011 UTC revision 1.19 by jmc, Wed Jul 13 22:59:53 2011 UTC
# Line 15  C--   COMMON /GM_PARAMS_L/ GM/Redi Logic Line 15  C--   COMMON /GM_PARAMS_L/ GM/Redi Logic
15  C     GM_AdvForm       :: use Advective Form (instead of Skew-Flux form)  C     GM_AdvForm       :: use Advective Form (instead of Skew-Flux form)
16  C     GM_AdvSeparate   :: do separately advection by Eulerian and Bolus velocity  C     GM_AdvSeparate   :: do separately advection by Eulerian and Bolus velocity
17  C     GM_useBVP        :: use Boundary-Value-Problem method for Bolus transport  C     GM_useBVP        :: use Boundary-Value-Problem method for Bolus transport
18    C     GM_useSubMeso    :: use parameterization of mixed layer (Sub-Mesoscale) eddies
19  C     GM_ExtraDiag     :: select extra diagnostics  C     GM_ExtraDiag     :: select extra diagnostics
20  C     GM_InMomAsStress :: apply GM as a stress in momentum Eq.  C     GM_InMomAsStress :: apply GM as a stress in momentum Eq.
21  C     GM_MNC           ::  C     GM_MNC           ::
# Line 22  C     GM_MDSIO         :: Line 23  C     GM_MDSIO         ::
23        LOGICAL GM_AdvForm        LOGICAL GM_AdvForm
24        LOGICAL GM_AdvSeparate        LOGICAL GM_AdvSeparate
25        LOGICAL GM_useBVP        LOGICAL GM_useBVP
26          LOGICAL GM_useSubMeso
27        LOGICAL GM_ExtraDiag        LOGICAL GM_ExtraDiag
28        LOGICAL GM_InMomAsStress        LOGICAL GM_InMomAsStress
29        LOGICAL GM_MNC        LOGICAL GM_MNC
30        LOGICAL GM_MDSIO        LOGICAL GM_MDSIO
31        COMMON /GM_PARAMS_L/        COMMON /GM_PARAMS_L/
32       &                   GM_AdvForm, GM_AdvSeparate, GM_useBVP,       &                   GM_AdvForm, GM_AdvSeparate,
33         &                   GM_useBVP,  GM_useSubMeso,
34       &                   GM_ExtraDiag, GM_MNC, GM_MDSIO,       &                   GM_ExtraDiag, GM_MNC, GM_MDSIO,
35       &                   GM_InMomAsStress       &                   GM_InMomAsStress
36    
# Line 60  C     GM_maxSlope      :: maximum slope Line 63  C     GM_maxSlope      :: maximum slope
63  C     GM_Kmin_horiz    :: minimum horizontal diffusivity [m^2/s]  C     GM_Kmin_horiz    :: minimum horizontal diffusivity [m^2/s]
64  C     GM_Small_Number  :: epsilon used in computing the slope  C     GM_Small_Number  :: epsilon used in computing the slope
65  C     GM_slopeSqCutoff :: slope^2 cut-off value  C     GM_slopeSqCutoff :: slope^2 cut-off value
66  C-    transition layer thickness definition:  C-    Transition layer thickness definition:
67  C     GM_facTrL2dz   :: minimum Trans. Layer Thick. as a factor of local dz  C     GM_facTrL2dz   :: minimum Trans. Layer Thick. as a factor of local dz
68  C     GM_facTrL2ML   :: maximum Trans. Layer Thick. as a factor of Mix-Layer Depth  C     GM_facTrL2ML   :: maximum Trans. Layer Thick. as a factor of Mix-Layer Depth
69  C     GM_maxTransLay :: maximum Trans. Layer Thick. [m]  C     GM_maxTransLay :: maximum Trans. Layer Thick. [m]
70    C-    Boundary-Value-Problem method parameters:
71  C     GM_BVP_cMin    :: minimum value for wave speed parameter "c" in BVP [m/s]  C     GM_BVP_cMin    :: minimum value for wave speed parameter "c" in BVP [m/s]
72    C-    mixed layer (Sub-Mesoscale) eddies parameterization:
73    C     subMeso_Ceff   :: efficiency coefficient of Mixed-Layer Eddies [-]
74    C     subMeso_invTau :: inverse of mixing time-scale in sub-meso parameteriz. [s^-1]
75    C     subMeso_LfMin  :: minimum value for length-scale "Lf" [m]
76    C     subMeso_Lmax   :: maximum horizontal grid-scale length [m]
77    
78        _RL GM_isopycK        _RL GM_isopycK
79        _RL GM_background_K        _RL GM_background_K
80        _RL GM_maxSlope        _RL GM_maxSlope
# Line 84  C     GM_BVP_cMin    :: minimum value fo Line 94  C     GM_BVP_cMin    :: minimum value fo
94        _RL GM_Scrit        _RL GM_Scrit
95        _RL GM_Sd        _RL GM_Sd
96        _RL GM_BVP_cMin        _RL GM_BVP_cMin
97        COMMON /GM_PARAMS_R/        _RL subMeso_Ceff
98          _RL subMeso_invTau
99          _RL subMeso_LfMin
100          _RS subMeso_Lmax
101          COMMON /GM_PARAMS_RL/
102       &                   GM_isopycK, GM_background_K,       &                   GM_isopycK, GM_background_K,
103       &                   GM_maxSlope,       &                   GM_maxSlope,
104       &                   GM_Kmin_horiz,       &                   GM_Kmin_horiz,
# Line 94  C     GM_BVP_cMin    :: minimum value fo Line 108  C     GM_BVP_cMin    :: minimum value fo
108       &                   GM_Visbeck_minDepth, GM_Visbeck_maxSlope,       &                   GM_Visbeck_minDepth, GM_Visbeck_maxSlope,
109       &                   GM_Visbeck_minVal_K, GM_Visbeck_maxVal_K,       &                   GM_Visbeck_minVal_K, GM_Visbeck_maxVal_K,
110       &                   GM_facTrL2dz, GM_facTrL2ML, GM_maxTransLay,       &                   GM_facTrL2dz, GM_facTrL2ML, GM_maxTransLay,
111       &                   GM_Scrit, GM_Sd, GM_BVP_cMin       &                   GM_Scrit, GM_Sd, GM_BVP_cMin,
112         &                   subMeso_Ceff, subMeso_invTau, subMeso_LfMin
113          COMMON /GM_PARAMS_RS/
114         &                   subMeso_Lmax
115    
116  C--   COMMON /GM_DERIVED_PAR/ other GM/Redi parameters  C--   COMMON /GM_DERIVED_PAR/ other GM/Redi parameters
117  C     (derived from previous block and not directly user configured)  C     (derived from previous block and not directly user configured)

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

  ViewVC Help
Powered by ViewVC 1.1.22