Last change
on this file was
2187,
checked in by flefevre, 6 years ago
|
Nouvelle version du code chimique vénusien, en phase de test. Non activé pour le moment.
|
File size:
769 bytes
|
Line | |
---|
1 | module types_asis |
---|
2 | |
---|
3 | implicit none |
---|
4 | |
---|
5 | integer, parameter :: jpim = 4 |
---|
6 | integer, parameter :: jprb = 8 |
---|
7 | |
---|
8 | type z3spec |
---|
9 | real(kind=jprb) :: z1 |
---|
10 | integer(kind=jpim) :: z2 |
---|
11 | real(kind=jprb) :: z3 |
---|
12 | integer(kind=jpim) :: z4 |
---|
13 | real(kind=jprb) :: z5 |
---|
14 | integer(kind=jpim) :: z6 |
---|
15 | end type z3spec |
---|
16 | type z4spec |
---|
17 | real(kind=jprb) :: z1 |
---|
18 | integer(kind=jpim) :: z2 |
---|
19 | real(kind=jprb) :: z3 |
---|
20 | integer(kind=jpim) :: z4 |
---|
21 | real(kind=jprb) :: z5 |
---|
22 | integer(kind=jpim) :: z6 |
---|
23 | real(kind=jprb) :: z7 |
---|
24 | integer(kind=jpim) :: z8 |
---|
25 | end type z4spec |
---|
26 | |
---|
27 | ! indexes for the jacobian matrix |
---|
28 | |
---|
29 | type(z3spec), allocatable, save :: indice_phot(:) |
---|
30 | type(z3spec), allocatable, save :: indice_3(:) |
---|
31 | type(z4spec), allocatable, save :: indice_4(:) |
---|
32 | |
---|
33 | end module types_asis |
---|
Note: See
TracBrowser
for help on using the repository browser.