/[MITgcm]/MITgcm/pkg/generic_advdiff/GAD.h
ViewVC logotype

Annotation of /MITgcm/pkg/generic_advdiff/GAD.h

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


Revision 1.9 - (hide annotations) (download)
Sat Jun 15 03:31:17 2002 UTC (21 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint46l_post, checkpoint46g_pre, checkpoint46f_post, checkpoint46b_post, checkpoint46l_pre, checkpoint46d_pre, checkpoint45d_post, checkpoint46j_pre, checkpoint46a_post, checkpoint46j_post, checkpoint46k_post, checkpoint46e_pre, checkpoint46b_pre, checkpoint46c_pre, checkpoint46, checkpoint46h_pre, checkpoint46m_post, checkpoint46a_pre, checkpoint46g_post, checkpoint46i_post, checkpoint46c_post, checkpoint46e_post, checkpoint46h_post, checkpoint46d_post
Changes since 1.8: +17 -2 lines
File MIME type: text/plain
for each tracer, define an internal flag for multiDimAdvection & A-B

1 jmc 1.9 C $Header: /u/gcmpack/MITgcm/pkg/generic_advdiff/GAD.h,v 1.8 2001/09/28 02:26:57 adcroft Exp $
2 heimbach 1.4 C $Name: $
3 adcroft 1.1
4 adcroft 1.7 CBOP
5     C !ROUTINE: GAD.h
6 adcroft 1.1
7 adcroft 1.7 C !INTERFACE:
8     C #include "GAD.h"
9    
10     C !DESCRIPTION:
11     C Contains enumerated constants for distinguishing between different
12     C advection schemes and tracers.
13     C
14     C Unfortunately, there is no easy way to make use of the
15     C tokens in namelist input so for now we have to enter the
16     C tokens value into "data" (ie. 2 for 2nd order etc.)
17 adcroft 1.8
18     C !USES:
19     #include "GAD_OPTIONS.h"
20 adcroft 1.7
21     C !DEFINED PARAMETERS:
22    
23     C ENUM_CENTERED_2ND :: Centered 2nd order
24 adcroft 1.1 INTEGER ENUM_CENTERED_2ND
25     PARAMETER(ENUM_CENTERED_2ND=2)
26 jmc 1.2
27 adcroft 1.7 C ENUM_UPWIND_3RD :: 3rd order upwind
28 jmc 1.2 INTEGER ENUM_UPWIND_3RD
29     PARAMETER(ENUM_UPWIND_3RD=3)
30 adcroft 1.1
31 adcroft 1.7 C ENUM_CENTERED_4TH :: Centered 4th order
32 adcroft 1.1 INTEGER ENUM_CENTERED_4TH
33     PARAMETER(ENUM_CENTERED_4TH=4)
34    
35 adcroft 1.7 C ENUM_FLUX_LIMIT :: Non-linear flux limiter
36 adcroft 1.1 INTEGER ENUM_FLUX_LIMIT
37     PARAMETER(ENUM_FLUX_LIMIT=77)
38 adcroft 1.6
39 adcroft 1.7 C ENUM_DST3 :: 3-DST
40 adcroft 1.6 INTEGER ENUM_DST3
41     PARAMETER(ENUM_DST3=30)
42    
43 adcroft 1.7 C ENUM_DST3_FLUX_LIMIT :: 3-DST flux limited
44 adcroft 1.6 INTEGER ENUM_DST3_FLUX_LIMIT
45     PARAMETER(ENUM_DST3_FLUX_LIMIT=33)
46 adcroft 1.1
47 adcroft 1.7 C oneSixth :: Third/fourth order interpolation factor
48 adcroft 1.1 _RL oneSixth
49 heimbach 1.4 PARAMETER(oneSixth=1.D0/6.D0)
50 adcroft 1.1
51     C Differentiate between tracers (only needed for KPP - arrgh!!!)
52 adcroft 1.7 C GAD_TEMPERATURE :: temperature
53 adcroft 1.1 INTEGER GAD_TEMPERATURE
54 heimbach 1.3 PARAMETER(GAD_TEMPERATURE=101)
55 jmc 1.9 C GAD_SALINITY :: salinity
56 adcroft 1.1 INTEGER GAD_SALINITY
57 heimbach 1.3 PARAMETER(GAD_SALINITY=102)
58 adcroft 1.7 C GAD_TR1 :: pssive tracer 1
59 heimbach 1.3 INTEGER GAD_TR1
60     PARAMETER(GAD_TR1=103)
61 adcroft 1.7 CEOP
62 jmc 1.9
63     C-- COMMON /GAD_PARM_L/ Logical parameters for GAD pkg routines
64     C tempMultiDimAdvec :: set to T if using multi-dimension advection for Temp
65     C saltMultiDimAdvec :: set to T if using multi-dimension advection for Salt
66     C tempAdamsBashforth :: set to T if using Adams-Bashforth stepping for Temp
67     C saltAdamsBashforth :: set to T if using Adams-Bashforth stepping for Salt
68     LOGICAL tempMultiDimAdvec
69     LOGICAL saltMultiDimAdvec
70     LOGICAL tr1_MultiDimAdvec
71     LOGICAL tempAdamsBashforth
72     LOGICAL saltAdamsBashforth
73     LOGICAL tr1_AdamsBashforth
74     COMMON /GAD_PARM_L/
75     & tempMultiDimAdvec , saltMultiDimAdvec , tr1_MultiDimAdvec,
76     & tempAdamsBashforth, saltAdamsBashforth, tr1_AdamsBashforth

  ViewVC Help
Powered by ViewVC 1.1.22