source: palm/trunk/UTIL/chemistry/gasphase_preproc/kpp4palm/src/expand_decomp.h @ 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: 865 bytes
Line 
1#ifndef EXPDE
2#define EXPDE 1
3
4// ############################################################################
5//
6//     create mz_kpp_module                       
7//
8//     create code from .f90 sources created by KPP to be used in MESSy
9//
10//     COPYRIGHT Klaus Ketelsen and MPI-CH   April 2007
11//
12// ############################################################################
13
14#include <iostream>
15
16#include <string>
17#include <list>
18#include <vector>
19
20#include "fortran_file.h"
21#include "program_line.h"
22
23class expand_decomp {
24
25  int                   NVAR;
26  vector<int>           LU_IROW;
27  vector<int>           LU_ICOL;
28  vector<int>           LU_CROW;
29  vector<int>           LU_DIAG;
30
31  public:
32
33  void create_sparse_info (vector<fortran_file> & include_list, string module_name);
34  void create_routine (vector<fortran_file> & routine_list);
35
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.