Changeset 2563 for trunk/LMDZ.MARS/libf/aeronomars
- Timestamp:
- Sep 21, 2021, 1:55:55 PM (3 years ago)
- Location:
- trunk/LMDZ.MARS/libf/aeronomars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/aeronomars/calchim_mod.F90
r2559 r2563 31 31 use photolysis_mod, only: init_photolysis, nphot 32 32 use iono_h, only: temp_elect 33 use wstats_mod, only: callstats,wstats33 use wstats_mod, only: wstats 34 34 35 35 implicit none … … 953 953 ! endif 954 954 955 if (callstats) then956 955 call wstats(ngrid,'jo3','j o3->o1d', & 957 956 's-1',3,jo3_3d(1,1)) … … 962 961 call wstats(ngrid,'mmean','mean molecular mass', & 963 962 'g.mole-1',3,mmean(1,1)) 964 endif965 963 end if ! of if (ngrid.gt.1) 966 964 end if ! of if (output) -
trunk/LMDZ.MARS/libf/aeronomars/surfacearea.F
r2559 r2563 9 9 use conc_mod, only: rnew 10 10 use comcstfi_h, only: pi 11 use wstats_mod, only: callstats,wstats11 use wstats_mod, only: wstats 12 12 implicit none 13 13 … … 114 114 ! write diagnostics in micron2/cm3 115 115 116 if (callstats) then 117 call wstats(ngrid,"surfdust", "Dust surface area", 116 call wstats(ngrid,"surfdust", "Dust surface area", 118 117 $ "micron2 cm-3",3,surfdust*1.e6) 119 118 call wstats(ngrid,"surfice", "Ice cloud surface area", 120 119 $ "micron2 cm-3",3,surfice*1.e6) 121 endif 120 122 121 call writediagfi(ngrid,"surfdust", "Dust surface area", 123 122 $ "micron2 cm-3",3,surfdust*1.e6) … … 125 124 $ "micron2 cm-3",3,surfice*1.e6) 126 125 127 return128 126 end
Note: See TracChangeset
for help on using the changeset viewer.