Changeset 2554 for trunk/LMDZ.MARS/libf/aeronomars
- Timestamp:
- Aug 18, 2021, 5:01:18 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/aeronomars/photochemistry.F90
r2490 r2554 175 175 176 176 integer :: ilay 177 integer :: ind_norec 178 integer :: ind_orec 177 179 178 180 real :: ctimestep ! standard timestep for the chemistry (s) … … 380 382 c(:,i_o2), c(:,i_o), c(:,i_n2), press, temp, & 381 383 temp_elect, hetero_dust, hetero_ice, & 382 surfdust1d, surfice1d, v_phot, v_3, v_4) 384 surfdust1d, surfice1d, v_phot, v_3, v_4, ind_norec, & 385 ind_orec) 383 386 384 387 !=================================================================== … … 492 495 493 496 !add calculation of NO and O2 nightglows 494 em_no(:)=c(:,i_o)*c(:,i_n)*v_4(:,26) !2.8e-17*(300./temp(:)))**0.5 495 em_o2(:)=0.75*c(:,i_o)*c(:,i_o)*c(:,i_co2)*v_3(:,1) !2.5*9.46e-34*exp(485./temp(:))*dens(:) 497 498 em_no(:)=c(:,i_o)*c(:,i_n)*v_4(:,ind_norec) !2.8e-17*(300./temp(:)))**0.5 499 em_o2(:)=0.75*c(:,i_o)*c(:,i_o)*c(:,i_co2)*v_3(:,ind_orec) !2.5*9.46e-34*exp(485./temp(:))*dens(:) 496 500 497 501 !=================================================================== … … 635 639 nb_phot_max, nphotion, lswitch, dens, co2, o2, o, & 636 640 n2, press, t, t_elect, hetero_dust, hetero_ice, & 637 surfdust1d, surfice1d, v_phot, v_3, v_4) 641 surfdust1d, surfice1d, v_phot, v_3, v_4,ind_norec, & 642 ind_orec) 638 643 639 644 !================================================================ … … 685 690 real (kind = 8), dimension(nlayer,nb_reaction_3_max) :: v_3 686 691 real (kind = 8), dimension(nlayer,nb_reaction_4_max) :: v_4 692 integer :: ind_norec 693 integer :: ind_orec 687 694 688 695 !---------------------------------------------------------------------- … … 758 765 nb_reaction_3 = nb_reaction_3 + 1 759 766 v_3(:,nb_reaction_3) = a002(:) 767 ind_orec=nb_reaction_3 760 768 761 769 !--- a003: o + o3 -> o2 + o2 … … 1136 1144 nb_reaction_4 = nb_reaction_4 + 1 1137 1145 v_4(:,nb_reaction_4) = d007(:) 1146 ind_norec = nb_reaction_4 1138 1147 1139 1148 !--- d008: n + ho2 -> no + oh
Note: See TracChangeset
for help on using the changeset viewer.