source: palm/trunk/UTIL/chemistry/gasphase_preproc/tmp_kpp4palm/chem_gasphase_mod_Global.f90 @ 2696

Last change on this file since 2696 was 2696, checked in by kanani, 6 years ago

Merge of branch palm4u into trunk

File size: 2.4 KB
Line 
1! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2!
3! Global Data Module File
4!
5! Generated by KPP-2.2.3 symbolic chemistry Kinetics PreProcessor
6!       (http://www.cs.vt.edu/~asandu/Software/KPP)
7! KPP is distributed under GPL, the general public licence
8!       (http://www.gnu.org/copyleft/gpl.html)
9! (C) 1995-1997, V. Damian & A. Sandu, CGRER, Univ. Iowa
10! (C) 1997-2005, A. Sandu, Michigan Tech, Virginia Tech
11!     With important contributions from:
12!        M. Damian, Villanova University, USA
13!        R. Sander, Max-Planck Institute for Chemistry, Mainz, Germany
14!
15! File                 : chem_gasphase_mod_Global.f90
16! Time                 : Fri Dec  1 18:10:53 2017
17! Working directory    : /data/kanani/branches/palm4u/GASPHASE_PREPROC/tmp_kpp4palm
18! Equation file        : chem_gasphase_mod.kpp
19! Output root filename : chem_gasphase_mod
20!
21! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22
23
24
25MODULE chem_gasphase_mod_Global
26
27  USE chem_gasphase_mod_Parameters, ONLY: dp, NSPEC, NVAR, NFIX, NREACT
28  PUBLIC
29  SAVE
30
31
32! Declaration of global variables
33
34! C - Concentration of all species
35  REAL(kind=dp) :: C(NSPEC)
36! VAR - Concentrations of variable species (global)
37  REAL(kind=dp) :: VAR(NVAR)
38! FIX - Concentrations of fixed species (global)
39  REAL(kind=dp) :: FIX(NFIX)
40! VAR, FIX are chunks of array C
41      EQUIVALENCE( C(1),VAR(1) )
42! RCONST - Rate constants (global)
43  REAL(kind=dp) :: RCONST(NREACT)
44! TIME - Current integration time
45  REAL(kind=dp) :: TIME
46! SUN - Sunlight intensity between [0,1]
47  REAL(kind=dp) :: SUN
48! TEMP - Temperature
49  REAL(kind=dp) :: TEMP
50! RTOLS - (scalar) Relative tolerance
51  REAL(kind=dp) :: RTOLS
52! TSTART - Integration start time
53  REAL(kind=dp) :: TSTART
54! TEND - Integration end time
55  REAL(kind=dp) :: TEND
56! DT - Integration step
57  REAL(kind=dp) :: DT
58! ATOL - Absolute tolerance
59  REAL(kind=dp) :: ATOL(NVAR)
60! RTOL - Relative tolerance
61  REAL(kind=dp) :: RTOL(NVAR)
62! STEPMIN - Lower bound for integration step
63  REAL(kind=dp) :: STEPMIN
64! STEPMAX - Upper bound for integration step
65  REAL(kind=dp) :: STEPMAX
66! CFACTOR - Conversion factor for concentration units
67  REAL(kind=dp) :: CFACTOR
68! DDMTYPE - DDM sensitivity w.r.t.: 0=init.val., 1=params
69  INTEGER :: DDMTYPE
70
71! INLINED global variable declarations
72
73  !   Declaration of global variable declarations for photolysis will come from
74
75! INLINED global variable declarations
76
77
78END MODULE chem_gasphase_mod_Global
79
Note: See TracBrowser for help on using the repository browser.