Changeset 3987 for palm/trunk/SOURCE/land_surface_model_mod.f90
- Timestamp:
- May 22, 2019 9:52:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/land_surface_model_mod.f90
r3964 r3987 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Introduce alternative switch for debug output during timestepping 28 ! 29 ! 3964 2019-05-09 09:48:32Z suehring 27 30 ! In a nested child domain, distinguish between soil moisture and temperature 28 31 ! initialization from parent via dynamic input file. Further, initialize soil … … 565 568 USE control_parameters, & 566 569 ONLY: cloud_droplets, coupling_start_time, & 567 debug_output, debug_ string,&570 debug_output, debug_output_timestep, debug_string, & 568 571 dt_3d, & 569 572 end_time, humidity, intermediate_timestep_count, & 570 573 initializing_actions, intermediate_timestep_count_max, & 571 land_surface, max_masks, pt_surface, &574 land_surface, max_masks, pt_surface, & 572 575 rho_surface, spinup, spinup_pt_mean, spinup_time, & 573 576 surface_pressure, timestep_scheme, tsc, & … … 1908 1911 TYPE(surf_type), POINTER :: surf !< surface-date type variable 1909 1912 1910 ! 1911 !-- Debug location message 1912 IF ( debug_output ) THEN 1913 1914 IF ( debug_output_timestep ) THEN 1913 1915 WRITE( debug_string, * ) 'lsm_energy_balance', horizontal, l 1914 1916 CALL debug_message( debug_string, 'start' ) … … 2472 2474 IF ( horizontal .AND. .NOT. constant_roughness ) CALL calc_z0_water_surface 2473 2475 2474 IF ( debug_output ) THEN2476 IF ( debug_output_timestep ) THEN 2475 2477 WRITE( debug_string, * ) 'lsm_energy_balance', horizontal, l 2476 2478 CALL debug_message( debug_string, 'end' ) … … 5338 5340 5339 5341 5340 IF ( debug_output ) THEN5342 IF ( debug_output_timestep ) THEN 5341 5343 WRITE( debug_string, * ) 'lsm_soil_model', horizontal, l, calc_soil_moisture 5342 5344 CALL debug_message( debug_string, 'start' ) … … 5640 5642 ! 5641 5643 !-- Debug location message 5642 IF ( debug_output ) THEN5644 IF ( debug_output_timestep ) THEN 5643 5645 WRITE( debug_string, * ) 'lsm_soil_model', horizontal, l, calc_soil_moisture 5644 5646 CALL debug_message( debug_string, 'end' )
Note: See TracChangeset
for help on using the changeset viewer.