Skip to content
New issue

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

Possible bug on Sensible Cooling/Heating demand calculation #259

Closed
gianlucamaracchini opened this issue Nov 9, 2021 · 1 comment
Closed

Comments

@gianlucamaracchini
Copy link

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.

@gianlucamaracchini
Copy link
Author

Solved. Areas are normalized per building footprint.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant