Changeset 3448 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Oct 29, 2018 6:14:31 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r3421 r3448 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Add biometeorology 28 ! 29 ! 3421 2018-10-24 18:39:32Z gronemeier 27 30 ! Renamed output variables 28 31 ! Add checks for surface data output … … 704 707 USE basic_constants_and_equations_mod 705 708 709 USE biometeorology_mod, & 710 ONLY: biom_check_data_output, biom_check_parameters 711 706 712 USE bulk_cloud_model_mod, & 707 713 ONLY: bulk_cloud_model, bcm_check_parameters, bcm_check_data_output, & … … 769 775 ONLY: radiation, radiation_check_data_output, & 770 776 radiation_check_data_output_pr, radiation_check_parameters 771 772 USE biometeorology_mod, &773 ONLY: biometeorology_check_data_output774 777 775 778 USE spectra_mod, & … … 1488 1491 1489 1492 !-- Check the module settings 1493 IF ( biometeorology ) CALL biom_check_parameters 1490 1494 IF ( bulk_cloud_model ) CALL bcm_check_parameters 1491 1495 IF ( gust_module_enabled ) CALL gust_check_parameters … … 3182 3186 ENDIF 3183 3187 3184 IF ( unit == 'illegal' ) THEN3185 CALL biometeorology_check_data_output( var, unit, i, ilen, k )3186 ENDIF3187 3188 3188 IF ( unit == 'illegal' .AND. gust_module_enabled ) THEN 3189 3189 CALL gust_check_data_output ( var, unit ) 3190 ENDIF 3191 3192 IF ( unit == 'illegal' .AND. biometeorology ) THEN 3193 CALL biom_check_data_output( var, unit ) 3190 3194 ENDIF 3191 3195
Note: See TracChangeset
for help on using the changeset viewer.