Changeset 3987 for palm/trunk/SOURCE/urban_surface_mod.f90
- Timestamp:
- May 22, 2019 9:52:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/urban_surface_mod.f90
r3943 r3987 28 28 ! ----------------- 29 29 ! $Id$ 30 ! Introduce alternative switch for debug output during timestepping 31 ! 32 ! 3943 2019-05-02 09:50:41Z maronga 30 33 ! Removed qsws_eb. Bugfix in calculation of qsws. 31 34 ! … … 489 492 USE control_parameters, & 490 493 ONLY: coupling_start_time, topography, & 491 debug_output, debug_ string,&494 debug_output, debug_output_timestep, debug_string, & 492 495 dt_3d, humidity, indoor_model, & 493 496 intermediate_timestep_count, initializing_actions, & … … 5267 5270 5268 5271 5269 IF ( debug_output ) THEN5272 IF ( debug_output_timestep ) THEN 5270 5273 WRITE( debug_string, * ) 'usm_material_heat_model | spinup: ', spinup 5271 5274 CALL debug_message( debug_string, 'start' ) … … 5644 5647 !$OMP END PARALLEL 5645 5648 5646 IF ( debug_output ) THEN5649 IF ( debug_output_timestep ) THEN 5647 5650 WRITE( debug_string, * ) 'usm_material_heat_model | spinup: ', spinup 5648 5651 CALL debug_message( debug_string, 'end' ) … … 5682 5685 5683 5686 5684 IF ( debug_output ) CALL debug_message( 'usm_green_heat_model', 'start' )5687 IF ( debug_output_timestep ) CALL debug_message( 'usm_green_heat_model', 'start' ) 5685 5688 5686 5689 drho_l_lv = 1.0_wp / (rho_l * l_v) … … 6012 6015 ENDDO 6013 6016 6014 IF ( debug_output ) CALL debug_message( 'usm_green_heat_model', 'end' )6017 IF ( debug_output_timestep ) CALL debug_message( 'usm_green_heat_model', 'end' ) 6015 6018 6016 6019 END SUBROUTINE usm_green_heat_model … … 7707 7710 7708 7711 7709 IF ( debug_output ) THEN7712 IF ( debug_output_timestep ) THEN 7710 7713 WRITE( debug_string, * ) 'usm_surface_energy_balance | spinup: ', spinup 7711 7714 CALL debug_message( debug_string, 'start' ) … … 8753 8756 ! END SUBROUTINE calc_q_surface_usm 8754 8757 8755 IF ( debug_output ) THEN8758 IF ( debug_output_timestep ) THEN 8756 8759 WRITE( debug_string, * ) 'usm_surface_energy_balance | spinup: ', spinup 8757 8760 CALL debug_message( debug_string, 'end' )
Note: See TracChangeset
for help on using the changeset viewer.