Changeset 1888 for trunk/LMDZ.MARS/libf/aeronomars/calchim.F90
- Timestamp:
- Jan 9, 2018, 11:53:29 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/aeronomars/calchim.F90
r1266 r1888 166 166 real :: surfdust1d(nlayer) ! Dust surface area (cm2/cm3) 167 167 real :: jo3(nlayer) ! Photodissociation rate O3->O1D (s-1) 168 real :: em_no(nlayer) ! NO nightglow emission rate 169 real :: em_o2(nlayer) ! O2 nightglow emission rate 168 170 169 171 ! for output: … … 172 174 parameter (output = .true.) 173 175 real :: jo3_3d(ngrid,nlayer) ! Photodissociation rate O3->O1D (s-1) 176 real :: emission_no(ngrid,nlayer) !NO emission rate 177 real :: emission_o2(ngrid,nlayer) !O2 emission rate 174 178 175 179 !======================================================================= … … 665 669 if (thermochem) then 666 670 call chemthermos(ig,nlayer,lswitch,chemthermod,zycol,ztemp,& 667 zdens,zpress,zlocal,szacol,ptimestep,zday) 671 zdens,zpress,zlocal,szacol,ptimestep,zday,& 672 em_no,em_o2) 673 do l=1,nlayer 674 emission_no(ig,l)=em_no(l) 675 emission_o2(ig,l)=em_o2(l) 676 enddo 668 677 end if 669 678 … … 715 724 call writediagfi(ngrid,'jo3','j o3->o1d', & 716 725 's-1',3,jo3_3d(1,1)) 726 call writediagfi(ngrid,'emission_no', & 727 'NO nightglow emission rate','cm-3 s-1',3,emission_no) 728 call writediagfi(ngrid,'emission_o2', & 729 'O2 nightglow emission rate','cm-3 s-1',3,emission_o2) 730 717 731 if (callstats) then 718 732 call wstats(ngrid,'jo3','j o3->o1d', & 719 733 's-1',3,jo3_3d(1,1)) 734 call wstats(ngrid,'emission_no', & 735 'NO nightglow emission rate','cm-3 s-1',3,emission_no) 736 call wstats(ngrid,'emission_o2', & 737 'O2 nightglow emission rate','cm-3 s-1',3,emission_o2) 720 738 endif 721 739 end if ! of if (ngrid.gt.1)
Note: See TracChangeset
for help on using the changeset viewer.