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

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

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


Revision 1.5 - (hide annotations) (download)
Sun Feb 4 14:38:49 2001 UTC (23 years, 4 months ago) by cnh
Branch: MAIN
CVS Tags: checkpoint40pre3, checkpoint40pre1, checkpoint40pre7, checkpoint40pre6, checkpoint40pre9, checkpoint40pre8, release1_b1, checkpoint43, checkpoint38, checkpoint40pre2, checkpoint40pre4, pre38tag1, c37_adj, pre38-close, checkpoint39, checkpoint37, checkpoint36, checkpoint35, checkpoint40pre5, ecco-branch-mod1, release1_beta1, checkpoint42, checkpoint40, checkpoint41
Branch point for: release1, ecco-branch, pre38, release1_coupled
Changes since 1.4: +2 -1 lines
File MIME type: text/plain
Made sure each .F and .h file had
the CVS keywords Header and Name at its start.
Most had header but very few currently have Name, so
lots of changes!

1 cnh 1.5 C $Header: /u/gcmpack/models/MITgcmUV/pkg/gmredi/GMREDI.h,v 1.4 2001/02/02 21:36:29 adcroft Exp $
2     C $Name: $
3 adcroft 1.1
4     #ifdef ALLOW_GMREDI
5 heimbach 1.2
6     C Package flag
7 adcroft 1.4 logical GMREDIisON
8     COMMON /GM_PACKAGE/ GMREDIisON
9 adcroft 1.1
10     C GM/Redi parameters
11     _RL GM_background_K
12     _RL GM_maxSlope
13     _RL GM_Visbeck_alpha
14     _RL GM_Visbeck_length
15     _RL GM_Visbeck_depth
16     _RL GM_Visbeck_maxval_K
17     CHARACTER*(MAX_LEN_FNAM) GM_taper_scheme
18     _RL GM_Scrit
19     _RL GM_Sd
20     COMMON /GM_PARAMS/ GM_background_K,
21     & GM_maxSlope,
22     & GM_Visbeck_alpha,
23     & GM_Visbeck_length,
24     & GM_Visbeck_depth,
25     & GM_Visbeck_maxval_K,
26     & GM_taper_scheme,
27     & GM_Scrit,
28     & GM_Sd
29    
30    
31     C More GM/Redi parameters diagnosed from previous block
32     C (not directly user configured)
33     _RL GM_rMaxSlope
34     COMMON /GM_PARAMS2/ GM_rMaxSlope
35    
36    
37     C GM/Redi tensor elements
38    
39     C Bottom row of tensor corresponds to W points
40     C Kwx is K_31 element, X direction at W point
41     C Kwy is K_32 element, Y direction at W point
42     C Kwz is K_33 element, Z direction at W point
43 heimbach 1.3 _RL Kwx(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
44     _RL Kwy(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
45     _RL Kwz(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
46 adcroft 1.1 COMMON /GM_Wtensor/ Kwx,Kwy,Kwz
47    
48     #ifdef GM_NON_UNITY_DIAGONAL
49     C First/second rows of tensor corresponds to U/V points
50     C Kux is K_11 element, X direction at U point
51     C Kvy is K_22 element, Y direction at V point
52 heimbach 1.3 _RL Kux(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
53     _RL Kvy(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
54 adcroft 1.1 COMMON /GM_UVtensor/ Kux,Kvy
55     #else
56     _RL Kux,Kvy
57     PARAMETER(Kux=1.,Kvy=1.)
58     #endif
59    
60     #ifdef GM_VISBECK_VARIABLE_K
61     C GM mixing/stirring coefficient (spatially variable in horizontal
62     C for Visbeck et al. parameterization)
63 heimbach 1.3 _RL VisbeckK(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
64 adcroft 1.1 COMMON /GM_Visbeck/ VisbeckK
65     #endif
66    
67     #endif /* ALLOW_GMREDI */

  ViewVC Help
Powered by ViewVC 1.1.22