Changeset 4873 for palm/trunk/SOURCE/salsa_mod.f90
- Timestamp:
- Feb 12, 2021 5:12:17 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/salsa_mod.f90
r4843 r4873 648 648 (/ 3.0E-9_wp, 5.0E-8_wp, 1.0E-5_wp/) 649 649 ! 650 !-- Initial log-normal size distribution: mode diameter (dpg, metres), standard deviation (sigmag) 651 !-- concentration (n_lognorm, #/m3) and mass fractions of all chemical components (listed in 652 !-- listspec) for both a (soluble) and b (insoluble) bins. 650 !-- Initial log-normal size distribution of aerosol emissions: mode diameter (dpg, metres), 651 !-- standard deviation (sigmag), concentration (n_lognorm, #/m3) and mass fractions of all chemical 652 !-- components (listed in listspec) a (soluble) bins. Currently, non-soluble emissions are not 653 !-- implemented. 653 654 REAL(wp), DIMENSION(nmod) :: aerosol_flux_dpg = & 654 655 (/1.3E-8_wp, 5.4E-8_wp, 8.6E-7_wp, 2.0E-7_wp, 2.0E-7_wp, 2.0E-7_wp, 2.0E-7_wp/) … … 657 658 REAL(wp), DIMENSION(maxspec) :: aerosol_flux_mass_fracs_a = & 658 659 (/1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/) 659 REAL(wp), DIMENSION(maxspec) :: aerosol_flux_mass_fracs_b = &660 (/0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0/)661 660 REAL(wp), DIMENSION(nmod) :: surface_aerosol_flux = & 662 661 (/1.0E+8_wp, 1.0E+9_wp, 1.0E+5_wp, 0.0_wp, 0.0_wp, 0.0_wp, 0.0_wp/) … … 1145 1144 NAMELIST /salsa_parameters/ aerosol_flux_dpg, & 1146 1145 aerosol_flux_mass_fracs_a, & 1147 aerosol_flux_mass_fracs_b, &1148 1146 aerosol_flux_sigmag, & 1149 1147 advect_particle_water, & … … 1509 1507 aerosol_flux_mass_fracs_a 1510 1508 ENDIF 1511 IF ( SUM( aerosol_flux_mass_fracs_b ) > 0.0_wp .OR.salsa_emission_mode == 'read_from_file' ) &1509 IF ( salsa_emission_mode == 'read_from_file' ) & 1512 1510 THEN 1513 1511 WRITE( io, 24 )
Note: See TracChangeset
for help on using the changeset viewer.