Changeset 3885 for palm/trunk/SOURCE/chem_emissions_mod.f90
- Timestamp:
- Apr 11, 2019 11:29:34 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/chem_emissions_mod.f90
r3831 r3885 15 15 ! PALM. If not, see <http://www.gnu.org/licenses/>. 16 16 ! 17 ! Copyright 2018-201 8Leibniz Universitaet Hannover18 ! Copyright 2018-201 8Freie Universitaet Berlin19 ! Copyright 2018-201 8Karlsruhe Institute of Technology17 ! Copyright 2018-2019 Leibniz Universitaet Hannover 18 ! Copyright 2018-2019 Freie Universitaet Berlin 19 ! Copyright 2018-2019 Karlsruhe Institute of Technology 20 20 !--------------------------------------------------------------------------------! 21 21 ! … … 27 27 ! ----------------- 28 28 ! $Id$ 29 ! Changes related to global restructuring of location messages and introduction 30 ! of additional debug messages 31 ! 32 ! 3831 2019-03-28 09:11:22Z forkel 29 33 ! added nvar to USE chem_gasphase_mod (chem_modules will not include nvar anymore) 30 34 ! … … 112 116 113 117 USE control_parameters, & 114 ONLY: end_time, message_string, initializing_actions, & 118 ONLY: debug_output, & 119 end_time, message_string, initializing_actions, & 115 120 intermediate_timestep_count, dt_3d 116 121 … … 248 253 249 254 250 CALL location_message( 'Matching input emissions and model chemistry species', .FALSE.)255 IF ( debug_output ) CALL debug_message( 'chem_emissions_match', 'start' ) 251 256 252 257 ! … … 696 701 END SELECT 697 702 703 IF ( debug_output ) CALL debug_message( 'chem_emissions_match', 'end' ) 704 698 705 END SUBROUTINE chem_emissions_match 699 706 … … 728 735 729 736 730 CALL location_message( 'Starting initialization of emission arrays', .FALSE.)737 IF ( debug_output ) CALL debug_message( 'chem_emissions_init', 'start' ) 731 738 732 739 ! … … 802 809 803 810 ENDIF 811 812 IF ( debug_output ) CALL debug_message( 'chem_emissions_init', 'end' ) 804 813 805 814 END SUBROUTINE chem_emissions_init
Note: See TracChangeset
for help on using the changeset viewer.