source: palm/trunk/UTIL/chemistry/gasphase_preproc/tmp_kpp4palm/chem_gasphase_mod_Initialize.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: 1.8 KB
Line 
1! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2!
3! Initialization 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_Initialize.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_Initialize
26
27  USE chem_gasphase_mod_Parameters, ONLY: dp, NVAR, NFIX
28  IMPLICIT NONE
29
30CONTAINS
31
32
33! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34!
35! Initialize - function to initialize concentrations
36!   Arguments :
37!
38! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
39
40SUBROUTINE Initialize ( )
41
42
43  USE chem_gasphase_mod_Global
44
45  INTEGER :: i
46  REAL(kind=dp) :: x
47
48  CFACTOR = 1.000000e+00_dp
49
50  x = (0.)*CFACTOR
51  DO i = 1, NVAR
52    VAR(i) = x
53  END DO
54
55  x = (0.)*CFACTOR
56  DO i = 1, NFIX
57    FIX(i) = x
58  END DO
59
60! constant rate coefficients
61! END constant rate coefficients
62
63! INLINED initializations
64
65! End INLINED initializations
66
67     
68END SUBROUTINE Initialize
69
70! End of Initialize function
71! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
72
73
74
75END MODULE chem_gasphase_mod_Initialize
76
Note: See TracBrowser for help on using the repository browser.