Changeset 4310 for palm


Ignore:
Timestamp:
Nov 26, 2019 7:01:28 PM (4 years ago)
Author:
suehring
Message:

Remove dt_indoor from namelist input. The indoor model is an hourly-based model, calling it more/less often lead to inaccurate results.

File:
1 edited

Legend:

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

    r4299 r4310  
    2626! -----------------
    2727! $Id$
     28! Remove dt_indoor from namelist input. The indoor model is an hourly-based
     29! model, calling it more/less often lead to inaccurate results.
     30!
     31! 4299 2019-11-22 10:13:38Z suehring
    2832! Output of indoor temperature revised (to avoid non-defined values within
    2933! buildings)
     
    216220    INTEGER(iwp) ::  solar_protection_on     !< Solar protection on
    217221
     222    REAL(wp), PARAMETER ::  dt_indoor = 3600.0_wp    !< [s] time interval for indoor-model application, fixed to 3600.0 due to model requirements
     223
    218224    REAL(wp) ::  a_m                                 !< [m2] the effective mass-related area
    219225    REAL(wp) ::  air_change                          !< [1/h] Airflow
    220226    REAL(wp) ::  c_m                                 !< [J/K] internal heat storage capacity
    221     REAL(wp) ::  dt_indoor = 3600.0_wp               !< [s] namelist parameter: time interval for indoor-model application
    222227    REAL(wp) ::  facade_element_area                 !< [m2_facade] building surface facade
    223228    REAL(wp) ::  floor_area_per_facade               !< [m2/m2] floor area per facade area
     
    19641969    CHARACTER (LEN=80) ::  line  !< string containing current line of file PARIN
    19651970
    1966     NAMELIST /indoor_parameters/  dt_indoor, initial_indoor_temperature
     1971    NAMELIST /indoor_parameters/  initial_indoor_temperature
    19671972
    19681973!
Note: See TracChangeset for help on using the changeset viewer.