Changeset 2213 for trunk/LMDZ.MARS/libf/aeronomars/calchim_mod.F90
- Timestamp:
- Jan 8, 2020, 12:01:49 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/aeronomars/calchim_mod.F90
r2170 r2213 191 191 ! for output: 192 192 193 logical :: output! to issue calls to writediagfi and stats193 logical,save :: output ! to issue calls to writediagfi and stats 194 194 real :: jo3_3d(ngrid,nlayer) ! Photodissociation rate O3->O1D (s-1) 195 195 real :: jh2o_3d(ngrid,nlayer) ! Photodissociation rate H2O->H+OH (s-1) … … 200 200 201 201 !======================================================================= 202 ! initialization of the chemistry (first call only) 203 !======================================================================= 204 205 if (firstcall) then 206 207 !======================================================================= 202 208 ! main dashboard for the chemistry 203 209 !======================================================================= 204 210 205 unichim = .true. ! true : unified chemistry ! false : separate models in lower and upper atmosphere 206 jonline = .true. ! true : on-line calculation of photodissociation rates ! false : lookup table 207 ionchem = .false. ! switch for ionospheric chemistry 208 depos = .false. ! switch for dry deposition 209 output = .false. ! true : triggers writing of specific outputs (photolysis rates, emission rates, etc) 210 211 !======================================================================= 212 ! initialization of the chemistry (first call only) 213 !======================================================================= 214 215 if (firstcall) then 211 unichim = .true. ! true : unified chemistry ! false : separate models in lower and upper atmosphere 212 jonline = .true. ! true : on-line calculation of photodissociation rates ! false : lookup table 213 ionchem = .false. ! switch for ionospheric chemistry 214 depos = .false. ! switch for dry deposition 215 output = .false. ! true : triggers writing of specific outputs (photolysis rates, emission rates, etc) 216 216 217 217 if (photochem) then
Note: See TracChangeset
for help on using the changeset viewer.