You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ChillerAbsorption doesn't have tertiary nodes implemented to be able to connect the Generator loop. Connecting the Chilled Water and Condenser loop is now possible, but not the generator.
A very similar object, ChillerAbsorptionIndirect does have these connections defined (see here), and there is no override of the addToNode nor addToTertiaryNode methods currently.
After implementing the tertiaryInletPort and tertiaryOutletPort for ChillerAbsorption, in both ChillerAbsorption and ChillerAbsorptionIndirect I suggest overwriting the addToNode and addToTertiaryNode like I did in CentralHeatPumpSystem so that it'll work in the OS App.
Basically in the addToNode, you check if the object is trying to be connected to the *demand side of a plant loop, and its already connected to the *condenser water loop but without a tertiary loop, then you connect it to the tertiary loop. See docstrings
ChillerAbsorption
doesn't have tertiary nodes implemented to be able to connect the Generator loop. Connecting the Chilled Water and Condenser loop is now possible, but not the generator.A very similar object,
ChillerAbsorptionIndirect
does have these connections defined (see here), and there is no override of theaddToNode
noraddToTertiaryNode
methods currently.After implementing the tertiaryInletPort and tertiaryOutletPort for
ChillerAbsorption
, in bothChillerAbsorption
andChillerAbsorptionIndirect
I suggest overwriting theaddToNode
andaddToTertiaryNode
like I did in CentralHeatPumpSystem so that it'll work in the OS App.Basically in the addToNode, you check if the object is trying to be connected to the *demand side of a plant loop, and its already connected to the *condenser water loop but without a tertiary loop, then you connect it to the tertiary loop. See docstrings
OpenStudio/openstudiocore/src/model/CentralHeatPumpSystem_Impl.hpp
Lines 86 to 94 in 8de135f
and a note I left in
OpenStudio/openstudiocore/src/openstudio_lib/HVACSystemsController.cpp
Lines 600 to 609 in 8de135f
The text was updated successfully, but these errors were encountered: