Changeset 4310 for palm/trunk
- Timestamp:
- Nov 26, 2019 7:01:28 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/indoor_model_mod.f90
r4299 r4310 26 26 ! ----------------- 27 27 ! $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 28 32 ! Output of indoor temperature revised (to avoid non-defined values within 29 33 ! buildings) … … 216 220 INTEGER(iwp) :: solar_protection_on !< Solar protection on 217 221 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 218 224 REAL(wp) :: a_m !< [m2] the effective mass-related area 219 225 REAL(wp) :: air_change !< [1/h] Airflow 220 226 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 application222 227 REAL(wp) :: facade_element_area !< [m2_facade] building surface facade 223 228 REAL(wp) :: floor_area_per_facade !< [m2/m2] floor area per facade area … … 1964 1969 CHARACTER (LEN=80) :: line !< string containing current line of file PARIN 1965 1970 1966 NAMELIST /indoor_parameters/ dt_indoor,initial_indoor_temperature1971 NAMELIST /indoor_parameters/ initial_indoor_temperature 1967 1972 1968 1973 !
Note: See TracChangeset
for help on using the changeset viewer.