Changeset 3152 for palm/trunk/SOURCE/urban_surface_mod.f90
- Timestamp:
- Jul 19, 2018 1:26:52 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/urban_surface_mod.f90
r3151 r3152 28 28 ! ----------------- 29 29 ! $Id$ 30 ! Initialize q_surface, which might be used in surface_layer_fluxes 31 ! 32 ! 3151 2018-07-19 08:45:38Z raasch 30 33 ! remaining preprocessor define strings __check removed 31 34 ! … … 313 316 314 317 USE control_parameters, & 315 ONLY: coupling_start_time, topography, dt_3d, 318 ONLY: coupling_start_time, topography, dt_3d, humidity, & 316 319 intermediate_timestep_count, initializing_actions, & 317 320 intermediate_timestep_count_max, simulated_time, end_time, & … … 4706 4709 ENDDO 4707 4710 #endif 4711 ! 4712 !-- For the sake of correct initialization, set also q_surface. 4713 !-- Note, at urban surfaces q_surface is initialized with 0. 4714 IF ( humidity ) THEN 4715 DO m = 1, surf_usm_h%ns 4716 surf_usm_h%q_surface(m) = 0.0_wp 4717 ENDDO 4718 DO l = 0, 3 4719 DO m = 1, surf_usm_v(l)%ns 4720 surf_usm_v(l)%q_surface(m) = 0.0_wp 4721 ENDDO 4722 ENDDO 4723 ENDIF 4708 4724 4709 4725 !-- initial values for t_wall
Note: See TracChangeset
for help on using the changeset viewer.