Changeset 3987 for palm/trunk/SOURCE/multi_agent_system_mod.f90
- Timestamp:
- May 22, 2019 9:52:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/multi_agent_system_mod.f90
r3885 r3987 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Introduce alternative switch for debug output during timestepping 28 ! 29 ! 3885 2019-04-11 11:29:34Z kanani 27 30 ! Changes related to global restructuring of location messages and introduction 28 31 ! of additional debug messages … … 114 117 USE control_parameters, & 115 118 ONLY: biometeorology, & 116 debug_output, & 117 debug_string, & 119 debug_output_timestep, & 118 120 dt_3d, & 119 121 dt_write_agent_data, & … … 396 398 LOGICAL :: first_loop_stride !< flag for first loop stride of agent sub-timesteps 397 399 LOGICAL, SAVE :: first_call = .TRUE. !< first call of mas flag for output 398 ! 399 !-- Debug location message 400 IF ( debug_output ) THEN 401 WRITE( debug_string, * ) 'multi_agent_system' 402 CALL debug_message( debug_string, 'start' ) 403 ENDIF 400 401 402 IF ( debug_output_timestep ) CALL debug_message( 'multi_agent_system', 'start' ) 404 403 405 404 CALL cpu_log( log_point(9), 'mas', 'start' ) … … 622 621 623 622 CALL cpu_log( log_point(9), 'mas', 'stop' ) 624 ! 625 !-- Debug location message 626 IF ( debug_output ) THEN 627 WRITE( debug_string, * ) 'multi_agent_system' 628 CALL debug_message( debug_string, 'end' ) 629 ENDIF 623 624 IF ( debug_output_timestep ) CALL debug_message( 'multi_agent_system', 'end' ) 625 630 626 631 627 END SUBROUTINE multi_agent_system
Note: See TracChangeset
for help on using the changeset viewer.