Ignore:
Timestamp:
Jan 15, 2021 3:22:11 PM (3 years ago)
Author:
raasch
Message:

local namelist parameter added to switch off the module although the respective module namelist appears in the namelist file, further copyright updates

File:
1 edited

Legend:

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

    r4828 r4843  
    2626! -----------------
    2727! $Id$
     28! local namelist parameter added to switch off the module although the respective module namelist
     29! appears in the namelist file
     30!
     31! 4828 2021-01-05 11:21:41Z Giersch
    2832! reading of namelist file and actions in case of namelist errors revised so that statement labels
    2933! and goto statements are not required any more
     
    13911395    INTEGER(iwp) ::  io_status   !< Status after reading the namelist file
    13921396
     1397    LOGICAL ::  switch_off_module = .FALSE.  !< local namelist parameter to switch off the module
     1398                                             !< although the respective module namelist appears in
     1399                                             !< the namelist file
     1400
    13931401    NAMELIST /biometeorology_parameters/  clothing,                                                &
    13941402                                          consider_obstructions,                                   &
    13951403                                          orientation_angle,                                       &
    13961404                                          sun_in_south,                                            &
     1405                                          switch_off_module,                                       &
    13971406                                          thermal_comfort,                                         &
    13981407                                          turn_to_sun,                                             &
     
    14101419!--    biometeorology_parameters namelist was found and read correctly. Set flag that
    14111420!--    biometeorology_mod is switched on.
    1412        biometeorology = .TRUE.
     1421       IF ( .NOT. switch_off_module )  biometeorology = .TRUE.
    14131422
    14141423    ELSEIF ( io_status > 0 )  THEN
Note: See TracChangeset for help on using the changeset viewer.