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

OpenStudio SDK Heat Recovery Chiller

asked 2015-04-28 13:48:17 -0500

updated 2015-11-10 21:28:19 -0500

Is there a specific way that the Chiller:EIR:Electric is placed on the hot water loop to use it as a heat recovery chiller? I'm using the Python SDK bindings and I can use:

node = openstudio.model.toNode(hotWaterPlant.supplySplitter().lastOutletModelObject().get()).get()
chiller.addToNode(node)

to add it to the hot water loop, but the node names are not written to Heat Recovery Inlet Node Name and Heat Recovery Outlet Node Name in the Chiller:Electric:EIR inputs.

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
4

answered 2015-05-15 11:23:40 -0500

I was able to get the heat recovery chiller to work in the openstudio bindings by manually editing the chiller in the workspace object.

First I created a temporary pipe on the heat recovery loop to set up the nodes and branches on the supply splitter/mixer.

Then I added the node values from the temporary pipe object manually in the chiller workspace object.

    chiller_object = workspace.getObjectsByName(str(chiller.name()))[0]
    chiller_object.setString(24, str(temp_pipe_inlet_node.name()))
    chiller_object.setString(25, str(temp_pipe_outlet_node.name()))

I edited the branch that contained the temporary pipe to point to the chiller and then deleted the temporary pipe from the workspace. I added the other relevant inputs and objects through the workspace that are necessary for the heat recovery chiller object to operate properly.

edit flag offensive delete link more
4

answered 2015-04-30 12:40:24 -0500

The heat recovery function of ChillerElectricEIR is not supported by OpenStudio. You could write an IDF Measure to make the necessary changes to the idf file produced by OpenStudio.

The more technical answer is that ChillerElectricEIR is a WaterToWaterComponent in OpenStudio that is designed to communicate between a chilled water system, and optionally a condenser system, but not a third heat recovery system.

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-04-28 13:48:17 -0500

Seen: 1,445 times

Last updated: May 15 '15