Changeset 4843 for palm/trunk/SOURCE/urban_surface_mod.f90
- Timestamp:
- Jan 15, 2021 3:22:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/urban_surface_mod.f90
r4842 r4843 27 27 ! ----------------- 28 28 ! $Id$ 29 ! local namelist parameter added to switch off the module although the respective module namelist 30 ! appears in the namelist file 31 ! 32 ! 4842 2021-01-14 10:42:28Z raasch 29 33 ! reading of namelist file and actions in case of namelist errors revised so that statement labels 30 34 ! and goto statements are not required any more … … 5821 5825 INTEGER(iwp) :: io_status !< status after reading the namelist file 5822 5826 5827 LOGICAL :: switch_off_module = .FALSE. !< local namelist parameter to switch off the module 5828 !< although the respective module namelist appears in 5829 !< the namelist file 5830 5823 5831 NAMELIST /urban_surface_parameters/ & 5824 5832 building_type, & … … 5827 5835 roughness_concrete, & 5828 5836 soil_inner_temperature, & 5837 switch_off_module, & 5829 5838 urban_surface, & 5830 5839 usm_wall_mod, & … … 5834 5843 5835 5844 5836 5837 5845 ! 5838 5846 !-- Move to the beginning of the namelist file and try to find and read the namelist. … … 5846 5854 !-- urban_surface_parameters namelist was found and read correctly. Set flag that indicates that 5847 5855 !-- the urban surface model is switched on. 5848 urban_surface = .TRUE.5856 IF ( .NOT. switch_off_module ) urban_surface = .TRUE. 5849 5857 5850 5858 ELSEIF ( io_status > 0 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.