Changeset 3788 for palm/trunk/SOURCE/chem_emissions_mod.f90
- Timestamp:
- Mar 7, 2019 11:40:09 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/chem_emissions_mod.f90
r3772 r3788 27 27 ! ----------------- 28 28 ! $Id$ 29 ! Removed unused variables from chem_emissions_mod 30 ! 31 !3772 2019-02-28 15:51:57Z suehring 29 32 ! - In case of parametrized emissions, assure that emissions are only on natural 30 33 ! surfaces (i.e. streets) and not on urban surfaces. 31 34 ! - some unnecessary if clauses removed 32 ! 33 ! 3685 2019-01-21 01:02:11Z knoop35 ! 36 !3685 2019 -01-21 01:02:11Z knoop 34 37 ! Some interface calls moved to module_interface + cleanup 35 38 ! … … 204 207 IMPLICIT NONE 205 208 206 INTEGER(iwp) :: tmp207 208 209 TYPE(chem_emis_att_type) :: emt 209 210 … … 703 704 SUBROUTINE chem_emissions_init 704 705 705 USE surface_mod, &706 ONLY: surf_def_h, surf_lsm_h, surf_usm_h707 708 706 USE netcdf_data_input_mod, & 709 707 ONLY: chem_emis, chem_emis_att … … 711 709 IMPLICIT NONE 712 710 713 CHARACTER (LEN=80) :: units !< units of inputs714 715 711 INTEGER(iwp) :: ispec !< running index 716 712 … … 814 810 815 811 SUBROUTINE chem_emissions_setup( emt_att, emt, nspec_out ) 816 817 USE arrays_3d, & 818 ONLY: dzw 819 USE grid_variables, & 820 ONLY: dx, dy 821 USE indices, & 822 ONLY: nnx, nny, nnz 812 823 813 USE surface_mod, & 824 814 ONLY: surf_def_h, surf_lsm_h, surf_usm_h … … 839 829 INTEGER,INTENT(IN) :: nspec_out !< Output of matching routine with number 840 830 !< of matched species 841 842 CHARACTER(LEN=80) :: units !< Units of the emission data843 831 844 832 INTEGER(iwp) :: i !< running index for grid in x-direction … … 851 839 INTEGER(iwp) :: i_pm_comp !< index for number of PM components 852 840 INTEGER(iwp) :: ivoc !< Index for number of VOCs 853 INTEGER(iwp) :: time_index !< Index for time854 841 855 842 REAL(wp), ALLOCATABLE, DIMENSION(:,:) :: delta_emis
Note: See TracChangeset
for help on using the changeset viewer.