Changeset 3569 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Nov 27, 2018 5:03:40 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r3545 r3569 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Sort chemistry routine calls into list. 28 ! dom_dwd_user, Schrempf: 29 ! remove CALLs to uv exposure model, this is now part of biometeorology_mod 30 ! 31 ! 3545 2018-11-21 11:19:41Z gronemeier 27 32 ! Call tcm_check_parameters before other modules 28 33 ! … … 823 828 USE urban_surface_mod, & 824 829 ONLY: usm_check_data_output, usm_check_parameters 825 826 USE uv_exposure_model_mod, &827 ONLY: uvem_check_data_output828 830 829 831 USE wind_turbine_model_mod, & … … 1507 1509 ENDIF 1508 1510 1509 ! Check for chem_emission_mod parameters setting 1510 ! IF ( air_chemistry ) CALL chem_emissions_check_parameters ! forkel preliminary 1511 1512 1513 ! Check for chemitry_model_mod parameters setting 1514 IF ( air_chemistry ) CALL chem_check_parameters 1515 1516 1517 !-- Check the module settings 1511 ! 1512 !-- Check the module settings: 1513 !-- tcm_check_parameters must be called at first 1518 1514 CALL tcm_check_parameters 1515 1519 1516 IF ( biometeorology ) CALL bio_check_parameters 1520 1517 IF ( bulk_cloud_model ) CALL bcm_check_parameters 1518 IF ( air_chemistry ) CALL chem_check_parameters 1519 ! IF ( air_chemistry ) CALL chem_emissions_check_parameters ! forkel preliminary 1521 1520 IF ( gust_module_enabled ) CALL gust_check_parameters 1522 1521 IF ( large_scale_forcing .OR. nudging ) & … … 1527 1526 IF ( radiation ) CALL radiation_check_parameters 1528 1527 IF ( calculate_spectra ) CALL spectra_check_parameters 1529 CALL stg_check_parameters1528 CALL stg_check_parameters 1530 1529 IF ( urban_surface ) CALL usm_check_parameters 1531 1530 IF ( wind_turbine ) CALL wtm_check_parameters … … 3220 3219 3221 3220 IF ( unit == 'illegal' .AND. biometeorology ) THEN 3222 CALL bio_check_data_output( var, unit )3221 CALL bio_check_data_output( var, unit, i, ilen, k ) 3223 3222 ENDIF 3224 3223 … … 3244 3243 CALL usm_check_data_output( var, unit ) 3245 3244 ENDIF 3246 3247 IF ( unit == 'illegal' .AND. uv_exposure &3248 .AND. var(1:5) == 'uvem_' ) THEN3249 CALL uvem_check_data_output( var, unit, i, ilen, k )3250 ENDIF3251 3252 3245 ! 3253 3246 !-- Finally, check for user-defined quantities
Note: See TracChangeset
for help on using the changeset viewer.