1 | |
---|
2 | module tracer_h |
---|
3 | |
---|
4 | implicit none |
---|
5 | |
---|
6 | integer, save :: nqtot ! total number of tracers |
---|
7 | integer, save :: nesp ! number of species in the chemistry |
---|
8 | integer, save :: ngt ! number of generic tracers |
---|
9 | integer, save :: n_rgcs ! number of Radiative Generic Condensable Species |
---|
10 | !$OMP THREADPRIVATE(nqtot,nesp,ngt,n_rgcs) |
---|
11 | |
---|
12 | logical :: moderntracdef=.false. ! Standard or modern traceur.def |
---|
13 | !$OMP THREADPRIVATE(moderntracdef) |
---|
14 | |
---|
15 | character*30, save, allocatable :: noms(:) ! name of the tracer |
---|
16 | real, save, allocatable :: mmol(:) ! mole mass of tracer (g/mol) |
---|
17 | real, save, allocatable :: aki(:) ! to compute coefficient of thermal concduction if photochem |
---|
18 | real, save, allocatable :: cpi(:) ! to compute cpnew in concentration.F if photochem |
---|
19 | real, save, allocatable :: radius(:) ! dust and ice particle radius (m) |
---|
20 | real, save, allocatable :: rho_q(:) ! tracer densities (kg.m-3) |
---|
21 | real, save, allocatable :: qext(:) ! Single Scat. Extinction coeff at 0.67 um |
---|
22 | real, save, allocatable :: alpha_lift(:) ! saltation vertical flux/horiz flux ratio (m-1) |
---|
23 | real, save, allocatable :: alpha_devil(:) ! lifting coeeficient by dust devil |
---|
24 | real, save, allocatable :: qextrhor(:) ! Intermediate for computing opt. depth from q |
---|
25 | |
---|
26 | real,save :: varian ! Characteristic variance of log-normal distribution |
---|
27 | real,save :: r3n_q ! used to compute r0 from number and mass mixing ratio |
---|
28 | real,save :: rho_dust ! Mars dust density (kg.m-3) |
---|
29 | real,save :: rho_ice ! Water ice density (kg.m-3) |
---|
30 | real,save :: rho_co2 ! CO2 ice density (kg.m-3) |
---|
31 | real,save :: ref_r0 ! for computing reff=ref_r0*r0 (in log.n. distribution) |
---|
32 | !$OMP THREADPRIVATE(noms,mmol,aki,cpi,radius,rho_q,qext,alpha_lift,alpha_devil,qextrhor, & |
---|
33 | !$OMP varian,r3n_q,rho_dust,rho_ice,rho_co2,ref_r0) |
---|
34 | |
---|
35 | integer, save, allocatable :: is_chim(:) ! 1 if tracer used in chemistry, else 0 |
---|
36 | integer, save, allocatable :: is_rad(:) ! 1 if "" "" in radiative transfer, else 0 |
---|
37 | !$OMP THREADPRIVATE(is_chim,is_rad) |
---|
38 | |
---|
39 | integer, save, allocatable :: is_recomb(:) ! 1 if tracer used in recombining scheme, else 0 (if 1, must have is_rad=1) |
---|
40 | integer, save, allocatable :: is_recomb_qset(:) ! 1 if tracer k-corr assume predefined vmr, else 0 (if 1, must have is_recomb=1) |
---|
41 | integer, save, allocatable :: is_recomb_qotf(:) ! 1 if tracer recombination is done on-the-fly, else 0 (if 1, must have is_recomb_qset=0) |
---|
42 | !$OMP THREADPRIVATE(is_recomb,is_recomb_qset,is_recomb_qotf) |
---|
43 | integer, save, allocatable :: is_condensable(:) ! 1 if tracer is generic, else 0 (added LT) |
---|
44 | integer,save,allocatable :: is_rgcs(:) ! 1 if tracer is a radiative generic condensable specie, else 0 (added LT 2022) |
---|
45 | ! Lists of constants for condensable tracers |
---|
46 | integer, save, allocatable :: constants_mass(:) ! molecular mass of the specie (g/mol) |
---|
47 | integer, save, allocatable :: constants_delta_vapH(:) ! Enthalpy of vaporization (J/mol) |
---|
48 | integer, save, allocatable :: constants_Tref(:) ! Ref temperature for Clausis-Clapeyron (K) |
---|
49 | integer, save, allocatable :: constants_Pref(:) ! Reference pressure for Clausius Clapeyron (Pa) |
---|
50 | integer, save, allocatable :: constants_epsi_generic(:) ! fractionnal molecular mass (m/mugaz) |
---|
51 | integer, save, allocatable :: constants_RLVTT_generic(:) ! Latent heat of vaporization (J/kg) |
---|
52 | integer, save, allocatable :: constants_metallicity_coeff(:) ! Coefficient to take into account the metallicity |
---|
53 | !$OMP THREADPRIVATE(constants_mass,constants_delta_vapH,constants_Tref) |
---|
54 | !$OMP THREADPRIVATE(constants_Pref,constants_epsi_generic) |
---|
55 | !$OMP THREADPRIVATE(constants_RLVTT_generic,constants_metallicity_coeff) |
---|
56 | |
---|
57 | !$OMP THREADPRIVATE(is_condensable,is_rgcs) !also added by LT |
---|
58 | ! tracer indexes: these are initialized in initracer and should be 0 if the |
---|
59 | ! corresponding tracer does not exist |
---|
60 | ! dust |
---|
61 | integer,save,allocatable :: igcm_dustbin(:) ! for dustbin 'dust' tracers |
---|
62 | ! dust, special doubleq case |
---|
63 | integer,save :: igcm_dust_mass ! dust mass mixing ratio (for transported dust) |
---|
64 | integer,save :: igcm_dust_number ! dust number mixing ratio (transported dust) |
---|
65 | ! water |
---|
66 | integer,save :: igcm_h2o_vap ! water vapour |
---|
67 | integer,save :: igcm_h2o_ice ! water ice |
---|
68 | ! chemistry: |
---|
69 | integer,save :: igcm_co2 |
---|
70 | integer,save :: igcm_co |
---|
71 | integer,save :: igcm_o |
---|
72 | integer,save :: igcm_o1d |
---|
73 | integer,save :: igcm_o2 |
---|
74 | integer,save :: igcm_o3 |
---|
75 | integer,save :: igcm_h |
---|
76 | integer,save :: igcm_h2 |
---|
77 | integer,save :: igcm_oh |
---|
78 | integer,save :: igcm_ho2 |
---|
79 | integer,save :: igcm_h2o2 |
---|
80 | integer,save :: igcm_n2 |
---|
81 | integer,save :: igcm_ar |
---|
82 | integer,save :: igcm_n |
---|
83 | integer,save :: igcm_no |
---|
84 | integer,save :: igcm_no2 |
---|
85 | integer,save :: igcm_n2d |
---|
86 | integer,save :: igcm_ch4 |
---|
87 | |
---|
88 | integer,save :: igcm_ch3 |
---|
89 | integer,save :: igcm_ch |
---|
90 | integer,save :: igcm_3ch2 |
---|
91 | integer,save :: igcm_1ch2 |
---|
92 | integer,save :: igcm_cho |
---|
93 | integer,save :: igcm_ch2o |
---|
94 | integer,save :: igcm_ch3o |
---|
95 | integer,save :: igcm_c |
---|
96 | integer,save :: igcm_c2 |
---|
97 | integer,save :: igcm_c2h |
---|
98 | integer,save :: igcm_c2h2 |
---|
99 | integer,save :: igcm_c2h3 |
---|
100 | integer,save :: igcm_c2h4 |
---|
101 | integer,save :: igcm_c2h6 |
---|
102 | integer,save :: igcm_ch2co |
---|
103 | integer,save :: igcm_ch3co |
---|
104 | integer,save :: igcm_hcaer |
---|
105 | |
---|
106 | ! other tracers |
---|
107 | integer,save :: igcm_ar_n2 ! for simulations using co2 +neutral gaz |
---|
108 | integer,save :: igcm_co2_ice ! CO2 ice |
---|
109 | !$OMP THREADPRIVATE(igcm_dustbin,igcm_dust_mass,igcm_dust_number,igcm_h2o_vap,igcm_h2o_ice, & |
---|
110 | !$OMP igcm_co2,igcm_co,igcm_o,igcm_o1d,igcm_o2,igcm_o3,igcm_h,igcm_h2,igcm_oh, & |
---|
111 | !$OMP igcm_ho2,igcm_h2o2,igcm_n2,igcm_ar,igcm_ar_n2,igcm_co2_ice, & |
---|
112 | !$OMP igcm_n,igcm_no,igcm_no2,igcm_n2d,igcm_ch4,igcm_ch3,igcm_ch,igcm_3ch2, & |
---|
113 | !$OMP igcm_1ch2,igcm_cho,igcm_ch2o,igcm_ch3o,igcm_c,igcm_c2,igcm_c2h,igcm_c2h2, & |
---|
114 | !$OMP igcm_c2h3,igcm_c2h4,igcm_c2h6,igcm_ch2co,igcm_ch3co,igcm_hcaer) |
---|
115 | |
---|
116 | end module tracer_h |
---|
117 | |
---|