Skip to content

Commit

Permalink
#5313 - Accept HeatingCoil:Water for supplemental HC for AirLoopHVACU…
Browse files Browse the repository at this point in the history
…nitaryHeatPumpAirToAir
  • Loading branch information
jmarrec committed Dec 18, 2024
1 parent 93c150f commit 1ede1bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions resources/model/OpenStudio.idd
Original file line number Diff line number Diff line change
Expand Up @@ -11569,6 +11569,7 @@ OS:AirLoopHVAC:UnitaryHeatPump:AirToAir,
\type object-list
\required-field
\object-list HeatingCoilsGasElec
\object-list HeatingCoilsWater
N4, \field Maximum Supply Air Temperature from Supplemental Heater
\type real
\required-field
Expand Down
2 changes: 2 additions & 0 deletions src/model/AirLoopHVACUnitaryHeatPumpAirToAir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ namespace model {
isTypeOK = true;
} else if (hvacComponent.optionalCast<CoilHeatingElectric>()) {
isTypeOK = true;
} else if (hvacComponent.optionalCast<CoilHeatingWater>()) {
isTypeOK = true;
}

if (isTypeOK) {
Expand Down

0 comments on commit 1ede1bd

Please sign in to comment.