Changeset 4843 for palm/trunk/SOURCE/radiation_model_mod.f90
- Timestamp:
- Jan 15, 2021 3:22:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/radiation_model_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, … … 4116 4120 INTEGER(iwp) :: io_status !< status after reading the namelist file 4117 4121 4122 LOGICAL :: switch_off_module = .FALSE. !< local namelist parameter to switch off the module 4123 !< although the respective module namelist appears in 4124 !< the namelist file 4118 4125 4119 4126 NAMELIST /radiation_parameters/ albedo, & … … 4148 4155 surface_reflections, & 4149 4156 svfnorm_report_thresh, & 4157 switch_off_module, & 4150 4158 sw_radiation, & 4151 4159 unscheduled_radiation_calls … … 4162 4170 !-- radiation_parameters namelist was found and read correctly. Set flag that indicates that the 4163 4171 !-- radiation model is switched on. 4164 radiation = .TRUE.4172 IF ( .NOT. switch_off_module ) radiation = .TRUE. 4165 4173 4166 4174 ELSEIF ( io_status > 0 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.