/[MITgcm]/MITgcm/pkg/ggl90/GGL90.h
ViewVC logotype

Annotation of /MITgcm/pkg/ggl90/GGL90.h

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


Revision 1.3 - (hide annotations) (download)
Tue Jun 6 16:18:18 2006 UTC (18 years ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint58l_post, checkpoint58u_post, checkpoint58w_post, checkpoint60, checkpoint61, checkpoint58r_post, checkpoint58n_post, checkpoint58x_post, checkpoint58t_post, checkpoint58h_post, checkpoint58q_post, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint58j_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint59, checkpoint58i_post, checkpoint58g_post, checkpoint58o_post, checkpoint58y_post, checkpoint58k_post, checkpoint58v_post, checkpoint58s_post, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint58p_post, checkpoint61a, checkpoint61h, checkpoint58m_post
Changes since 1.2: +5 -3 lines
File MIME type: text/plain
 add additional parameter following David's suggestion, interestingly
 ggl90 seems to be quite insensitive to any change in parameters ...

1 mlosch 1.3 C $Header: /u/gcmpack/MITgcm/pkg/ggl90/GGL90.h,v 1.2 2004/09/27 08:02:05 mlosch Exp $
2 mlosch 1.1 C $Name: $
3    
4     #ifdef ALLOW_GGL90
5    
6     CBOP
7     C !ROUTINE: GGL90.h
8    
9     C !DESCRIPTION: \bv
10     C /==========================================================\
11     C | GGL90.h |
12     C | o Basic header for Garpar et al. (1990) |
13     C | vertical mixing parameterization. Implementation |
14     C | follows OPA implementation of Blanke+Delecuse (1993) |
15     C | Contains all GGL90 field declarations. |
16     C \==========================================================/
17    
18     C-----------------------------------------------------------------------
19     C
20     C Parameters that can be set in data.ggl90
21     C unless otherwise noted, equation numbers refer to Gaspar et al.
22     C (1990), JGR, 95(C9) pp. 16,179ff.
23     C
24     C GGL90ck - constant in viscosity coefficient (eq.10)
25     C GGL90ceps - dissipation constant according to Kolmogorov (1942)
26     C GGL90m2 - constant relating wind stress to vertical stress of TKE
27     C in K [d(TKE)/dz](0)=m2*ustar^3
28     C GGL90alpha - constant relating viscosity to GGL90 diffusivity
29     C (default=1 in Gaspar etal.)
30 mlosch 1.3 C GGL90TKEsurfmin - minimum of surface kinetic energy boundary condition
31     C (default=GGL90TKEmin)
32 mlosch 1.1 C GGL90TKEmin - minimum kinetic energy, leads to minimum mixing if TKE=0.
33     C GGL90TKEbottom - bottom bounardy condition for kinetic energy
34     C (default=GGL90TKEmin)
35     C GGL90TKEFile - File with initial field of TKE
36     C
37     C GGL90dumpFreq - analogue of dumpFreq (= default)
38     C GGL90taveFreq - analogue of taveFreq (= default)
39     C GGL90mixingMaps - output to standard out (default = .FALSE.)
40     C GGL90writeState - output to files (default = .FALSE.)
41     C
42     C Time varying parameters computed by subroutine ggl90_calc
43     C GGL90TKE - prognostic variable stepped forward in time ((m/s)^2)
44     C GGL90viscAr - Vertical eddy viscosity coefficient (m^2/s)
45     C GGL90diffKr - Vertical diffusion coefficient for heat,
46     C salt and tracers (m^2/s)
47     C
48     C-----------------------------------------------------------------------
49     C \ev
50     CEOP
51     _RL SQRTTWO
52     PARAMETER ( SQRTTWO = 1.41421356237310D0 )
53     _RL GGL90eps
54     PARAMETER ( GGL90eps = 2.23D-16 )
55    
56     CHARACTER*(MAX_LEN_FNAM) GGL90TKEFile
57     COMMON /GGL90_PARMS_C/ GGL90TKEFile
58    
59    
60     _RL GGL90ck, GGL90ceps
61     _RL GGL90alpha, GGL90m2
62 mlosch 1.2 _RL GGL90diffTKEh
63 mlosch 1.1 _RL GGL90mixingLengthMin
64 mlosch 1.3 _RL GGL90TKEmin, GGL90TKEsurfMin, GGL90TKEbottom
65 mlosch 1.1 _RL GGL90viscMax, GGL90diffMax
66     _RL GGL90dumpFreq, GGL90taveFreq
67     COMMON /GGL90_PARMS_R/
68     & GGL90ck, GGL90ceps,
69     & GGL90alpha, GGL90m2,
70 mlosch 1.2 & GGL90diffTKEh,
71 mlosch 1.1 & GGL90mixingLengthMin,
72 mlosch 1.3 & GGL90TKEmin, GGL90TKEsurfMin, GGL90TKEbottom,
73 mlosch 1.1 & GGL90viscMax, GGL90diffMax,
74     & GGL90dumpFreq, GGL90taveFreq
75    
76     _RL GGL90TKE (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
77     _RL GGL90viscAr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
78     _RL GGL90diffKr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
79     _RL recip_hFacI(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
80     COMMON /GGL90_FIELDS/ GGL90TKE,
81     & GGL90viscAr, GGL90diffKr,
82     & recip_hFacI
83    
84     LOGICAL GGL90isOn, GGL90mixingMaps, GGL90writeState
85     COMMON /GGL90_PARMS_L/
86     & GGL90isOn, GGL90mixingMaps, GGL90writeState
87    
88     #endif /* ALLOW_GGL90 */

  ViewVC Help
Powered by ViewVC 1.1.22