:city_sunrise: The Urban Weather Generator (uwg) is a Python application for modeling the urban heat island effect.
GNU General Public License v3.0
56
stars
26
forks
source link
Possible bug on Sensible Cooling/Heating demand calculation #259
Closed
gianlucamaracchini closed 3 years ago
Hi, in building.py I found this:
` # Heat/Cooling load (W/m^2 of bld footprint), if any self.sensCoolDemand = max( wallArea zac_in_wall (T_wall - T_cool) + # wall load massArea zac_in_mass (T_mass-T_cool) + # mass load
window load due to temp delta
As you can see the ceiling load is not multiplied by the roof area. This seems a bug to me,
Thanks in advance for your answer and work.