Changeset 3885 for palm/trunk/SOURCE/salsa_mod.f90
- Timestamp:
- Apr 11, 2019 11:29:34 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/salsa_mod.f90
r3876 r3885 15 15 ! PALM. If not, see <http://www.gnu.org/licenses/>. 16 16 ! 17 ! Copyright 2018-201 8University of Helsinki17 ! Copyright 2018-2019 University of Helsinki 18 18 ! Copyright 1997-2019 Leibniz Universitaet Hannover 19 19 !--------------------------------------------------------------------------------! … … 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Changes related to global restructuring of location messages and introduction 29 ! of additional debug messages 30 ! 31 ! 3876 2019-04-08 18:41:49Z knoop 28 32 ! Introduced salsa_actions module interface 29 33 ! … … 1290 1294 INTEGER(iwp) :: j !< 1291 1295 1292 CALL location_message( 'initializing salsa (sectional aerosol module )', .TRUE.)1296 IF ( debug_output ) CALL debug_message( 'salsa_init', 'start' ) 1293 1297 1294 1298 bin_low_limits = 0.0_wp … … 1439 1443 ENDIF 1440 1444 1441 CALL location_message( 'finished', .TRUE.)1445 IF ( debug_output ) CALL debug_message( 'salsa_init', 'end' ) 1442 1446 1443 1447 END SUBROUTINE salsa_init … … 8087 8091 ! 8088 8092 !-- Subrange 2b: 8093 !-- todo: this information should go to HEADER/RUN_CONTROL, it doesn't belong to the job log, 8094 !-- and actually, aerosol_flux_mass_fracs_b is not used anywhere else except for this message, 8095 !-- hence, what do we need it for? 8089 8096 IF ( SUM( aerosol_flux_mass_fracs_b ) > 0.0_wp ) THEN 8090 CALL location_message( ' salsa_emission_setup: emissions are soluble!', .TRUE.)8097 CALL debug_message( ' salsa_emission_setup: emissions are soluble!', 'info' ) 8091 8098 ENDIF 8092 8099 … … 8681 8688 ! 8682 8689 !-- Subrange 2b: 8683 IF ( .NOT. no_insoluble ) THEN 8684 CALL location_message( ' salsa_mass_flux: All emissions are soluble!', .TRUE. ) 8685 ENDIF 8690 !-- todo: this information should go to HEADER/RUN_CONTROL, it doesn't belong to the job log 8691 ! IF ( .NOT. no_insoluble ) THEN 8692 ! CALL location_message( ' salsa_mass_flux: All emissions are soluble!', .TRUE. ) 8693 ! ENDIF 8686 8694 8687 8695 END SUBROUTINE set_mass_flux … … 8776 8784 END SELECT 8777 8785 ENDDO 8778 IF ( SUM( emission_index_chem ) == 0 ) THEN 8779 CALL location_message( ' salsa_gas_emission_setup: no gas emissions', .TRUE. ) 8780 ENDIF 8786 !-- todo: this information should go to HEADER/RUN_CONTROL, it doesn't belong to the job log 8787 ! IF ( SUM( emission_index_chem ) == 0 ) THEN 8788 ! CALL location_message( ' salsa_gas_emission_setup: no gas emissions', .TRUE. ) 8789 ! ENDIF 8781 8790 ! 8782 8791 !-- Inquire the fill value
Note: See TracChangeset
for help on using the changeset viewer.