Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ protected override void RegisterInputParams(GH_Component.GH_InputParamManager pM

protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
{
pManager.AddGenericParameter("HeatPumpPlantLoopEIRCooling", "ClnHP", "Connect to hot water loop's supply side.", GH_ParamAccess.item);
pManager.AddGenericParameter("HeatPumpPlantLoopEIRCooling", "ClnHP", "Connect to chilled water loop's supply side.", GH_ParamAccess.item);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The description currently says "Connect to chilled water loop's supply side." but this component is for heating, not cooling. This should be corrected to say "Connect to hot water loop's supply side."

pManager.AddGenericParameter("HeatPumpPlantLoopEIRCooling", "ClnHP", "Connect to hot water loop's supply side.", GH_ParamAccess.item);

}


protected override void SolveInstance(IGH_DataAccess DA)
{
IB_HeatPumpPlantLoopEIRHeating hp = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public Ironbug_HeatPumpPlantLoopEIRHeating_Air()
}

public override GH_Exposure Exposure => GH_Exposure.quarternary;

protected override void RegisterInputParams(GH_Component.GH_InputParamManager pManager)
{
pManager.AddGenericParameter("CompanionCoolingHeatPump", "CompanionClnHP", "CompanionCoolingHeatPump", GH_ParamAccess.item);
Expand All @@ -24,10 +24,10 @@ protected override void RegisterInputParams(GH_Component.GH_InputParamManager pM

protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
{
pManager.AddGenericParameter("HeatPumpPlantLoopEIRHeating", "HtnHP", "Connect to chilled water loop's supply side.", GH_ParamAccess.item);
pManager.AddGenericParameter("HeatPumpPlantLoopEIRHeating", "HtnHP", "Connect to hot water loop's supply side.", GH_ParamAccess.item);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The description currently says "Connect to hot water loop's supply side." but this component is for cooling, not heating. This should be corrected to say "Connect to chilled water loop's supply side."

pManager.AddGenericParameter("HeatPumpPlantLoopEIRHeating", "HtnHP", "Connect to chilled water loop's supply side.", GH_ParamAccess.item);

}


protected override void SolveInstance(IGH_DataAccess DA)
{
IB_HeatPumpPlantLoopEIRCooling hp = null;
Expand Down