Changeset 2170 for trunk/LMDZ.MARS/libf/aeronomars/photolysis.F90
- Timestamp:
- Oct 14, 2019, 11:00:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/aeronomars/photolysis.F90
r2030 r2170 1 1 !========================================================================== 2 2 3 subroutine photolysis(nlayer, 3 subroutine photolysis(nlayer, nb_phot_max, & 4 4 lswitch, press, temp, sza, tauref, & 5 5 zmmean, dist_sol, rmco2, rmo3, v_phot) … … 8 8 9 9 use comcstfi_h 10 use photolysis_mod, only : nb_phot_max11 10 12 11 implicit none … … 18 17 !========================================================================== 19 18 20 integer, intent(in) :: nlayer ! number of atmospheric layers 21 integer :: lswitch ! interface level between chemistries 22 real :: press(nlayer) ! pressure (hPa) 23 real :: temp(nlayer) ! temperature (K) 24 real :: sza ! solar zenith angle (deg) 25 real :: tauref ! optical depth at 7 hpa 26 real :: zmmean(nlayer) ! mean molecular mass (g) 27 real :: dist_sol ! sun distance (AU) 28 real :: rmco2(nlayer) ! co2 mixing ratio 29 real :: rmo3(nlayer) ! ozone mixing ratio 19 integer, intent(in) :: nlayer ! number of atmospheric layers 20 integer, intent(in) :: nb_phot_max ! number of processes treated numerically as photodissociations 21 integer :: lswitch ! interface level between chemistries 22 real :: press(nlayer) ! pressure (hPa) 23 real :: temp(nlayer) ! temperature (K) 24 real :: sza ! solar zenith angle (deg) 25 real :: tauref ! optical depth at 7 hpa 26 real :: zmmean(nlayer) ! mean molecular mass (g) 27 real :: dist_sol ! sun distance (AU) 28 real :: rmco2(nlayer) ! co2 mixing ratio 29 real :: rmo3(nlayer) ! ozone mixing ratio 30 30 31 31 !==========================================================================
Note: See TracChangeset
for help on using the changeset viewer.