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/surface_data_output_mod.f90

    r4842 r4843  
    2525! -----------------
    2626! $Id$
     27! local namelist parameter added to switch off the module although the respective module namelist
     28! appears in the namelist file
     29!
     30! 4842 2021-01-14 10:42:28Z raasch
    2731! reading of namelist file and actions in case of namelist errors revised so that statement labels
    2832! and goto statements are not required any more
     
    42134217    INTEGER(iwp) ::  io_status   !< status after reading the namelist file
    42144218
     4219    LOGICAL ::  switch_off_module = .FALSE.  !< local namelist parameter to switch off the module
     4220                                             !< although the respective module namelist appears in
     4221                                             !< the namelist file
    42154222
    42164223    NAMELIST /surface_data_output_parameters/  averaging_interval_surf,                            &
     
    42204227                                               skip_time_dosurf,                                   &
    42214228                                               skip_time_dosurf_av,                                &
     4229                                               switch_off_module,                                  &
    42224230                                               to_netcdf,                                          &
    42234231                                               to_vtk
     
    42334241!--    surface_data_output_parameters namelist was found and read correctly. Set flag that indicates
    42344242!--    that surface data output is switched on.
    4235        surface_output = .TRUE.
     4243       IF ( .NOT. switch_off_module )  surface_output = .TRUE.
    42364244
    42374245    ELSEIF ( io_status > 0 )  THEN
Note: See TracChangeset for help on using the changeset viewer.