First time here? Check out the Help page!
1 | initial version |
Yes, you can do it in the OpenStudio Application.
addToNode
is that if you try to connect a ChillerElectricEIR
to the demand side of a loop, if it's already connected on the demand side and does not have a Heat Recovery yet, then addToTertiaryNode
is called. (see C++ source here)addToTertiaryNode is still perfectly valid. ChillerElectricEIR
is a WaterToWaterComponent
, and the method is there (and functional, I just tested). https://s3.amazonaws.com/openstudio-sdk-documentation/cpp/OpenStudio-3.7.0-doc/model/html/classopenstudio_1_1model_1_1_water_to_water_component.html
ChillerElectricEIR
or a WaterToWaterComponent
but probably as an HVACComponent or a ModelObject. You need to cast it, via modelObject.to_ChillerElectricEIR.get
2 | No.2 Revision |
Yes, you can do it in the OpenStudio Application.
addToNode
is that if you try to connect a ChillerElectricEIR
to the demand side of a loop, if it's already connected on the demand side and does not have a Heat Recovery yet, then addToTertiaryNode
is called. (see C++ source here)addToTertiaryNode is still perfectly valid. ChillerElectricEIR
is a WaterToWaterComponent
, and the method is there (and functional, I just tested). https://s3.amazonaws.com/openstudio-sdk-documentation/cpp/OpenStudio-3.7.0-doc/model/html/classopenstudio_1_1model_1_1_water_to_water_component.html
ChillerElectricEIR
or a WaterToWaterComponent
but probably as an HVACComponent or a ModelObject. You need to cast it, via modelObject.to_ChillerElectricEIR.get