We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 winArea * self.u_value * (T_can - T_cool) + zac_in_ceil * (T_ceil-T_cool) + # ceiling load self.int_heat + # internal load volInfil * dens * parameter.cp * (T_can - T_cool) + # m3 s-1 volVent * dens * parameter.cp * (T_can-T_cool) + # m3 s-1 winTrans, # solar load through window 0.)
self.sensHeatDemand = max( -(wallArea * zac_in_wall * (T_wall-T_heat) + # wall load massArea * zac_in_mass * (T_mass-T_heat) + # mass load winArea * self.u_value * (T_can - T_heat) + # window load zac_in_ceil * (T_ceil-T_heat) + # ceiling load self.int_heat + # internal load volInfil * dens * parameter.cp * (T_can-T_heat) + # m3 s-1 volVent * dens * parameter.cp * (T_can-T_heat) + # m3 s-1 winTrans), # solar load through window 0.)`
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.
The text was updated successfully, but these errors were encountered:
Solved. Areas are normalized per building footprint.
Sorry, something went wrong.
No branches or pull requests
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
winArea * self.u_value * (T_can - T_cool) +
zac_in_ceil * (T_ceil-T_cool) + # ceiling load
self.int_heat + # internal load
volInfil * dens * parameter.cp * (T_can - T_cool) + # m3 s-1
volVent * dens * parameter.cp * (T_can-T_cool) + # m3 s-1
winTrans, # solar load through window
0.)
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.
The text was updated successfully, but these errors were encountered: