Ignore:
Timestamp:
Oct 30, 2018 2:51:23 PM (6 years ago)
Author:
kanani
Message:

Reintegrated fixes/changes from branch chemistry

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/netcdf_data_input_mod.f90

    r3429 r3458  
    2525! -----------------
    2626! $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
    2737! add default values of origin_x/y/z
    2838!
     
    368378
    369379       !-DIMENSIONS
    370        INTEGER(iwp)                                 :: nspec                     !< number of chem species for which emission values are provided
    371        INTEGER(iwp)                                 :: ncat                      !< number of emission categories
    372        INTEGER(iwp)                                 :: nvoc                      !< number of VOCs components
    373        INTEGER(iwp)                                 :: npm                       !< number of PMs components
     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
    374384       INTEGER(iwp)                                 :: nnox=2                    !< number of NOx components: NO and NO2
    375385       INTEGER(iwp)                                 :: nsox=2                    !< number of SOx components: SO and SO4
     
    391401       INTEGER(iwp),ALLOCATABLE, DIMENSION(:)       :: species_index             !< Index of emission chem species
    392402
    393        REAL(wp), DIMENSION(24)                      :: par_emis_time_factor      !< time factors
    394                                                                                  !  for the parameterized mode: these are fixed for each hour
    395                                                                                  !  of a single day.
    396403       REAL(wp),ALLOCATABLE, DIMENSION(:)           :: xm                        !< Molecular masses of emission chem species
    397404
     
    928935         ENDDO
    929936
    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 /)
    933937
    934938       !> DEFAULT AND PRE-PROCESSED MODE
Note: See TracChangeset for help on using the changeset viewer.