Changeset 3458 for palm/trunk/SOURCE/netcdf_data_input_mod.f90
- Timestamp:
- Oct 30, 2018 2:51:23 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r3429 r3458 25 25 ! ----------------- 26 26 ! $Id$ 27 ! from chemistry branch r3443, banzhafs, Russo: 28 ! Uncommented lines on dimension of surface_fractions 29 ! Removed par_emis_time_factor variable, moved to chem_emissions_mod 30 ! Initialized nspec and other emission variables at time of declaration 31 ! Modified EXPERT mode to PRE-PROCESSED mode 32 ! Introduced Chemistry static netcdf file 33 ! Added the routine for reading-in netcdf data for chemistry 34 ! Added routines to get_variable interface specific for chemistry files 35 ! 36 ! 3429 2018-10-25 13:04:23Z knoop 27 37 ! add default values of origin_x/y/z 28 38 ! … … 368 378 369 379 !-DIMENSIONS 370 INTEGER(iwp) :: nspec 371 INTEGER(iwp) :: ncat 372 INTEGER(iwp) :: nvoc 373 INTEGER(iwp) :: npm 380 INTEGER(iwp) :: nspec=0 !< number of chem species for which emission values are provided 381 INTEGER(iwp) :: ncat=0 !< number of emission categories 382 INTEGER(iwp) :: nvoc=0 !< number of VOCs components 383 INTEGER(iwp) :: npm=0 !< number of PMs components 374 384 INTEGER(iwp) :: nnox=2 !< number of NOx components: NO and NO2 375 385 INTEGER(iwp) :: nsox=2 !< number of SOx components: SO and SO4 … … 391 401 INTEGER(iwp),ALLOCATABLE, DIMENSION(:) :: species_index !< Index of emission chem species 392 402 393 REAL(wp), DIMENSION(24) :: par_emis_time_factor !< time factors394 ! for the parameterized mode: these are fixed for each hour395 ! of a single day.396 403 REAL(wp),ALLOCATABLE, DIMENSION(:) :: xm !< Molecular masses of emission chem species 397 404 … … 928 935 ENDDO 929 936 930 !Assign Constant Values of time factors:931 emt_att%par_emis_time_factor( : ) = (/ 0.01, 0.01, 0.01, 0.02, 0.03, 0.07, 0.09, 0.09, 0.05, 0.03, 0.03, 0.03, &932 0.03, 0.03, 0.03, 0.04, 0.05, 0.09, 0.09, 0.09, 0.04, 0.02, 0.01, 0.01 /)933 937 934 938 !> DEFAULT AND PRE-PROCESSED MODE
Note: See TracChangeset
for help on using the changeset viewer.