1

Zone Component Load Summary Breakdown

If a thermal zone contains 5 rooms, is it possible to get the load summary report for all of the rooms individually? The zone component load summary table does have data for each thermal zone but I wish to know if there is any way we can break it down according to each room within that particular thermal zone. Thank you in advance.

MagicAxe's avatar
53
MagicAxe
asked 2021-12-01 11:28:53 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2021-12-01 12:19:52 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

2

Not as of right now. OpenStudio translates the Space objects inside a ThermalZone as a single EnergyPlus Zone. You need to put each Space into a separate ThermalZone.

Luis Lara's avatar
2.1k
Luis Lara
answered 2021-12-01 11:46:02 -0500, updated 2021-12-01 12:09:38 -0500
edit flag offensive 0 remove flag delete link

Comments

@LuisLara Thank you. This is helpful.

MagicAxe's avatar MagicAxe (2021-12-01 12:58:33 -0500) edit
add a comment see more comments
2

If you just want to get internal loads (plug, lighting) you could use annual equivalent hours method for ruleset schedule along with the installed level for each internal load instance to calculate this. This would just use model input data so it could be done on the fly in the model without needed a simulation; it does not however account for reduction in lighting from daylight sensors, just what is scheduled.

Another approach would be to output timeseries data for individual equipment objects and in reporting measure aggregate them by space. The existing Envelope and Internal gain measure gets hourly surface heat gain and loss, that could also be aggregated by space. https://github.com/NREL/openstudio-co...

It is a relatively unknown measure but has a lot of potential (It would be great if it was extended to represent impact of ventilation and identify beneficial vs. harmful gain/losses). Main charts Look like OpenStudio Results but pie chart is broken down by building components instead of end uses (although some items are light lights are both).

image description

The envelope components are aggregated from hourly data on each surface. I'm aggregating them by surface type bu could be space. Could even add extra table to this report by space.

image description

David Goldwasser's avatar
20.4k
David Goldwasser
answered 2021-12-02 14:40:14 -0500, updated 2021-12-03 08:05:23 -0500
edit flag offensive 0 remove flag delete link

Comments

David, in the first section of your answer, are you saying that there is a method for ScheduleRuleset that returns the EFLH? Or did I mis-interpreted it?

Luis Lara's avatar Luis Lara (2022-01-01 03:43:56 -0500) edit
1

@Luis Lara, yes, but it you do have to require standards gem in the measure, since this code is in standards and not core OpenStudio. The gem is already accessible in the OpenStudio’s Ruby interpreter along with the extension gem as well. https://github.com/NREL/openstudio-st...

Here is it in use in a measure (line 122, not 120) https://github.com/NREL/openstudio-co...

David Goldwasser's avatar David Goldwasser (2022-01-01 11:16:32 -0500) edit

This is very helpful! Thanks!

Luis Lara's avatar Luis Lara (2022-01-01 14:13:05 -0500) edit

I'm forced to use OS 2.9. Is there a way to get a version of this measure that will work with that version of OS? The current BCL version will not download.

Jacob's avatar Jacob (2022-10-11 11:15:04 -0500) edit

@Jacob you might try downloading version 0.1.2 Release from the GitHub repository. It may work. https://github.com/NREL/openstudio-co...

David Goldwasser's avatar David Goldwasser (2022-10-11 14:38:40 -0500) edit
add a comment see more comments