Ignore:
Timestamp:
Nov 27, 2018 5:03:40 PM (5 years ago)
Author:
kanani
Message:

Fix for biomet output (ticket:757), merge of uv_exposure into biometeorology_mod

File:
1 edited

Legend:

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

    r3525 r3569  
    2525! -----------------
    2626! $Id$
     27! dom_dwd_user, Schrempf:
     28! Changes due to merge of uv exposure model into biometeorology_mod.
     29!
     30! 3525 2018-11-14 16:06:14Z kanani
    2731! Changes related to clean-up of biometeorology (dom_dwd_user)
    2832!
     
    415419
    416420    USE biometeorology_mod,                                                    &
    417         ONLY:  bio_calculate_thermal_index_maps, time_bio_results
     421        ONLY:  bio_calculate_thermal_index_maps, time_bio_results,             &
     422               thermal_comfort, uvem_calc_exposure, uv_exposure
    418423
    419424    USE bulk_cloud_model_mod,                                                  &
     
    468473               turbulent_inflow, turbulent_outflow, urban_surface,             &
    469474               use_initial_profile_as_reference,                               &
    470                use_single_reference_value, uv_exposure, u_gtrans, v_gtrans,    &
     475               use_single_reference_value, u_gtrans, v_gtrans,                 &
    471476               virtual_flight, virtual_measurement, wind_turbine,              &
    472477               ws_scheme_mom, ws_scheme_sca
     
    579584        ONLY:  user_actions
    580585
    581     USE uv_exposure_model_mod,                                                 &
    582         ONLY:  uvem_calc_exposure
    583586
    584587    USE wind_turbine_model_mod,                                                &
     
    12541257          ENDIF
    12551258       ENDIF
    1256 !
    1257 !--    If required, do UV exposure calculations
    1258        IF ( uv_exposure )  THEN
    1259           CALL uvem_calc_exposure
    1260        ENDIF
     1259
    12611260!
    12621261!--    If required, calculate indoor temperature, waste heat, heat flux
     
    13661365!--    Biometeorology calculation of stationary thermal indices
    13671366       IF ( biometeorology  .AND.  time_do3d >= dt_do3d )  THEN
    1368           CALL bio_calculate_thermal_index_maps ( .FALSE. )
    1369           time_bio_results = time_since_reference_point
     1367!
     1368!--       If required, do thermal comfort calculations
     1369          IF ( thermal_comfort )  THEN
     1370             CALL bio_calculate_thermal_index_maps ( .FALSE. )
     1371             time_bio_results = time_since_reference_point
     1372          ENDIF
     1373!
     1374!--       If required, do UV exposure calculations
     1375          IF ( uv_exposure )  THEN
     1376             CALL uvem_calc_exposure
     1377          ENDIF
    13701378       ENDIF
    13711379
Note: See TracChangeset for help on using the changeset viewer.