Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
2

Setting 'use' and 'source' sides of WaterHeater:Mixed

asked 2015-09-17 05:32:42 -0500

updated 2016-04-23 17:57:01 -0500

I want to use a WaterHeater:Mixed as a DHW storage tank. I need to be able to put this object on the demand side of my boiler loop, and on the supply side of my DHW.

Is it doable in OpenStudio App aside from using a measure?

edit retag flag offensive close merge delete

Comments

I don't see a way to do this know but can follow up with @Kyle Benne to see if there is any reason we can't add this.

David Goldwasser's avatar David Goldwasser  ( 2015-09-17 09:11:49 -0500 )edit

2 Answers

Sort by ยป oldest newest most voted
1

answered 2015-09-17 09:52:35 -0500

FYI - filed an issue for this. If not fixed for 1.9.0 should be fixed soon after https://github.com/NREL/OpenStudio/is...

edit flag offensive delete link more

Comments

Issue should be fixed for 1.9.0

macumber's avatar macumber  ( 2015-09-17 16:12:54 -0500 )edit
1

answered 2015-09-17 10:07:48 -0500

updated 2015-09-18 10:20:50 -0500

Here's how to do it in the meantime in case anyone has an urgent matter:

  • Create a boiler plant loop with the boiler on the supply side and the WaterHeater:Mixed (called tank) on the demand side
  • Create a secondary loop, where we want to put the tank on the supply side. Let's call this DHW Plant Loop

Once your model is loaded

# Get storage tank
tank = model.getWaterHeaterMixedByName('Storage Tank').get

# Get Secondary loop
dhw_loop = model.getPlantLoopByName('DHW Plant Loop').get

# Add the tank on the supply side of the secondary loop
dhw_loop.addSupplyBranchForComponent(tank)

Then save your model, and when you reopen it the tank will be properly connected.

image description

Edit

Here is a link to a measure on BCL that creates a WaterHeater:Mixed and sets the source and use sides.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2015-09-17 05:32:42 -0500

Seen: 191 times

Last updated: Sep 18 '15