Ignore:
Timestamp:
Oct 29, 2018 6:14:31 PM (5 years ago)
Author:
kanani
Message:

Implementation of human thermal indices (from branch biomet_p2 at r3444)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/check_parameters.f90

    r3421 r3448  
    2525! -----------------
    2626! $Id$
     27! Add biometeorology
     28!
     29! 3421 2018-10-24 18:39:32Z gronemeier
    2730! Renamed output variables
    2831! Add checks for surface data output
     
    704707    USE basic_constants_and_equations_mod
    705708
     709    USE biometeorology_mod,                                                    &
     710        ONLY:  biom_check_data_output, biom_check_parameters
     711
    706712    USE bulk_cloud_model_mod,                                                  &
    707713        ONLY:  bulk_cloud_model, bcm_check_parameters, bcm_check_data_output,  &
     
    769775        ONLY:  radiation, radiation_check_data_output,                         &
    770776               radiation_check_data_output_pr, radiation_check_parameters
    771 
    772     USE biometeorology_mod,                                                    &
    773         ONLY:  biometeorology_check_data_output
    774777
    775778    USE spectra_mod,                                                           &
     
    14881491
    14891492!-- Check the module settings
     1493    IF ( biometeorology )       CALL biom_check_parameters
    14901494    IF ( bulk_cloud_model )     CALL bcm_check_parameters
    14911495    IF ( gust_module_enabled )  CALL gust_check_parameters
     
    31823186             ENDIF
    31833187
    3184              IF ( unit == 'illegal' )  THEN
    3185                 CALL biometeorology_check_data_output( var, unit, i, ilen, k )
    3186              ENDIF
    3187 
    31883188             IF ( unit == 'illegal'  .AND.  gust_module_enabled  )  THEN
    31893189                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 )
    31903194             ENDIF
    31913195
Note: See TracChangeset for help on using the changeset viewer.