Ignore:
Timestamp:
Feb 19, 2021 10:05:08 PM (3 years ago)
Author:
forkel
Message:

removed unused parameters and write statements in chemistry

File:
1 edited

Legend:

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

    r4828 r4881  
    2121! Current revisions:
    2222! -----------------
    23 ! 
    24 ! 
     23!
     24!
    2525! Former revisions:
    2626! -----------------
    2727! $Id$
     28! removed unnecessarty namelist parameters
     29!
     30!
     31! 4828 2021-01-05 11:21:41Z Giersch
    2832! Enable output of vertical fluxes of chemical species.
    2933!
     
    224228    LOGICAL ::  bc_radiation_cs_s         = .FALSE.  !< flag for indicating a radiation/neumann
    225229                                                     !< condition at the south boundary
    226     LOGICAL ::  constant_top_csflux(99)   = .TRUE.   !< internal flag, set to .FALSE. if no
    227                                                      !< top_csflux is prescribed
    228230    LOGICAL ::  constant_csflux(99)       = .TRUE.   !< internal flag, set to .FALSE. if no
    229231                                                     !< surface_csflux is prescribed
    230     LOGICAL ::  call_chem_at_all_substeps = .FALSE.  !< namelist parameter: ....???
    231     LOGICAL ::  chem_debug0               = .FALSE.  !< namelist parameter: flag for minimum print
    232                                                      !< output
    233     LOGICAL ::  chem_debug1               = .FALSE.  !< namelist parameter: flag for print output
    234     LOGICAL ::  chem_debug2               = .FALSE.  !< namelist parameter: flag for further print
    235                                                      !< output
     232    LOGICAL ::  call_chem_at_all_substeps = .FALSE.  !< namelist parameter: Never set true
     233                                                     !< except for tests
    236234    LOGICAL ::  chem_gasphase_on          = .TRUE.   !< namelist parameter: flag to switch off
    237235                                                     !< chemical reactions
     
    248246                                                     !< model
    249247
    250     REAL(wp) ::  cs_surface_initial_change(99)     = 0.0_wp        !< namelist parameter: ...???
    251     REAL(wp) ::  cs_vertical_gradient(99,10)       = 0.0_wp        !< namelist parameter: ...???
    252     REAL(wp) ::  cs_vertical_gradient_level(99,10) = -999999.9_wp  !< namelist parameter: ...???
    253     REAL(wp) ::  emiss_factor_main(99)             = -9999.0_wp    !< namelist parameter: ...???
    254     REAL(wp) ::  emiss_factor_side(99)             = -9999.0_wp    !< namelist parameter: ...???
    255     REAL(wp) ::  surface_csflux(99)                = 0.0_wp        !< namelist parameter: ...???
    256     REAL(wp) ::  top_csflux(99)                    = 0.0_wp        !< namelist parameter: ...???
    257     REAL(wp) ::  wall_csflux(99,0:5)               = 0.0_wp        !< namelist parameter: ...???
     248    REAL(wp) ::  emiss_factor_main(99)             = -9999.0_wp  !< namelist parameter: weighting  factor
     249                                                                 !< for LOD 0 parameterized emissions
     250    REAL(wp) ::  emiss_factor_side(99)             = -9999.0_wp  !< namelist parameter: weighting  factor
     251                                                                 !< for LOD 0 parameterized emissions
     252    REAL(wp) ::  surface_csflux(99)                = 0.0_wp      !< namelist parameter: surface emission
     253                                                                 !< flux or LOD 0 parameterized emissions
     254    REAL(wp) ::  wall_csflux(99,0:5)               = 0.0_wp      !< namelist parameter: ...???
    258255
    259256    REAL(wp), DIMENSION(99)     ::  cs_surface = 0.0_wp        !< namelist parameter: chem species
Note: See TracChangeset for help on using the changeset viewer.