Separating interior equipment loads
I am working on a retail store building that has plug loads, video walls and server loads as interior equipment loads. Is there a way to separate these loads?
First time here? Check out the Help page!
I am working on a retail store building that has plug loads, video walls and server loads as interior equipment loads. Is there a way to separate these loads?
I would create a separate Electric Equipment Definition and a schedule for each one from the OpenStudio Loads tab. If you want to sub-meter these use the End-Use Subcategory field, which is not exposed in the OpenStudio app but can be set using the API. These will show up in the End Uses By Subcategory
table in the EnergyPlus HTML results file. Here's an example using elevators.
# get model objects
objs = model.getElectricEquipments
# do stuff
objs.each do |obj|
eed = obj.electricEquipmentDefinition
if eed.name.to_s.include?('Elevators')
obj.setEndUseSubcategory('Elevators')
end
end
You could write a measure to set up an Output:Meter
that would aggregate all equipment related to a specific end use under the same meter. Otherwise, post process after requesting all appropriate monthly Output:Variable
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2017-02-03 12:27:00 -0600
Seen: 288 times
Last updated: Feb 03 '17
Please tag the simulation engine you are using. If you are using EnergyPlus see this post on reporting electrical and lighting loads individually.
Thanks David. Yes, I am using EnergyPlus. I want to separate the electrical loads as Server load, video wall load and plug load. Is that possible?