Changeset 2273 for trunk/LMDZ.MARS/libf/aeronomars
- Timestamp:
- Apr 2, 2020, 4:23:47 PM (5 years ago)
- Location:
- trunk/LMDZ.MARS/libf/aeronomars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/aeronomars/calchim_mod.F90
r2213 r2273 630 630 ! set number of reactions, depending on ion chemistry or not 631 631 if (ionchem) then 632 nb_reaction_4_max = 6 0! set number of bimolecular reactions632 nb_reaction_4_max = 61 ! set number of bimolecular reactions 633 633 nb_reaction_3_max = 6 ! set number of quadratic reactions 634 634 nquench = 9 ! set number of quenching + heterogeneous reactions -
trunk/LMDZ.MARS/libf/aeronomars/photochemistry.F90
r2170 r2273 592 592 i013, i014, i015, i016, i017, i018, i019, & 593 593 i020, i021, i022, i023, i024, i025, i026, & 594 i027, i028, i029, 594 i027, i028, i029, i030, & 595 595 h001, h002, h003, h004, h005 596 596 … … 1338 1338 !i028: 0.5 (HCO2+ + e-) -> O + CO 1339 1339 1340 i027(:) = 2.38e-7*((300./t_elect(:))**0.5)1340 i027(:) = 8.1e-7*((300./t_elect(:))**0.64) 1341 1341 1342 1342 nb_reaction_4 = nb_reaction_4 + 1 … … 1346 1346 v_4(:,nb_reaction_4) = i027(:) 1347 1347 1348 !--- i029: HCO2+ + e -> H + CO21348 !--- i029: HCO2+ + e -> OH + CO 1349 1349 1350 1350 ! UMIST 1351 1351 1352 i029(:) = 9.45e-8*((300./t_elect(:))**0.5)1352 i029(:) = 3.2e-7*((300./t_elect(:))**0.64) 1353 1353 1354 1354 nb_reaction_4 = nb_reaction_4 + 1 1355 1355 v_4(:,nb_reaction_4) = i029(:) 1356 1357 !--- i030: HCO2+ + e -> H + CO2 1358 1359 i030(:) = 6.0e-8*((300./t_elect(:))**0.64) 1360 nb_reaction_4 = nb_reaction_4 + 1 1361 v_4(:,nb_reaction_4) = i030(:) 1356 1362 1357 1363 end if !ionchem … … 2425 2431 2426 2432 indice_4(nb_reaction_4) = z4spec(1.0, i_hco2plus, 1.0, i_elec, 1.0, i_oh, 1.0, i_co) 2433 2434 2435 !=========================================================== 2436 ! i030 : HCO2+ + e -> H + CO2 2437 !=========================================================== 2438 2439 nb_reaction_4 = nb_reaction_4 + 1 2440 2441 indice_4(nb_reaction_4) = z4spec(1.0, i_hco2plus, 1.0, i_elec, 1.0, i_h, 1.0, i_co2) 2427 2442 2428 2443 end if !ionchem
Note: See TracChangeset
for help on using the changeset viewer.