Changeset 4843 for palm/trunk/SOURCE/surface_data_output_mod.f90
- Timestamp:
- Jan 15, 2021 3:22:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/surface_data_output_mod.f90
r4842 r4843 25 25 ! ----------------- 26 26 ! $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 27 31 ! reading of namelist file and actions in case of namelist errors revised so that statement labels 28 32 ! and goto statements are not required any more … … 4213 4217 INTEGER(iwp) :: io_status !< status after reading the namelist file 4214 4218 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 4215 4222 4216 4223 NAMELIST /surface_data_output_parameters/ averaging_interval_surf, & … … 4220 4227 skip_time_dosurf, & 4221 4228 skip_time_dosurf_av, & 4229 switch_off_module, & 4222 4230 to_netcdf, & 4223 4231 to_vtk … … 4233 4241 !-- surface_data_output_parameters namelist was found and read correctly. Set flag that indicates 4234 4242 !-- that surface data output is switched on. 4235 surface_output = .TRUE.4243 IF ( .NOT. switch_off_module ) surface_output = .TRUE. 4236 4244 4237 4245 ELSEIF ( io_status > 0 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.