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

Revision history [back]

@Saif that looks like an error in the measure specific to CoilCoolingWaterToAirHeatPumpEquationFit objects. I'll file an issue for this. It was failing on this last line

when OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.iddObjectType
    coil = e.to_CoilCoolingWaterToAirHeatPumpEquationFit.get
    coil.isRatedTotalCoolingCapacityAutosized && coil.isRatedSensibleHeatRatioAutosized && coil.isRatedAirFlowRateAutosized ? 'Yes' : 'No'

If you feel comfortable changing line 114 in the measure.rb file you can try changing it to this.

coil.isGrossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevelAutosized && coil.isRatedAirFlowRateAtSelectedNominalSpeedLevelAutosized  && coil.isRatedWaterFlowRateAtSelectedNominalSpeedLevelAutosized ? 'Yes' : 'No'

@Saif that looks like an error in the measure specific to CoilCoolingWaterToAirHeatPumpEquationFit objects. objects, we called invalid methods for this object type. I'll file an issue for this. It was failing on this last line

when OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.iddObjectType
    coil = e.to_CoilCoolingWaterToAirHeatPumpEquationFit.get
    coil.isRatedTotalCoolingCapacityAutosized && coil.isRatedSensibleHeatRatioAutosized && coil.isRatedAirFlowRateAutosized ? 'Yes' : 'No'

If you feel comfortable changing line 114 in the measure.rb file you can try changing it to this.

coil.isGrossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevelAutosized && coil.isRatedAirFlowRateAtSelectedNominalSpeedLevelAutosized  && coil.isRatedWaterFlowRateAtSelectedNominalSpeedLevelAutosized ? 'Yes' : 'No'

@Saif that looks like an error in the measure specific to CoilCoolingWaterToAirHeatPumpEquationFit objects, we called invalid methods for this object type. I'll file an issue for this. It was failing on this the last lineline in code below.

when OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.iddObjectType
    coil = e.to_CoilCoolingWaterToAirHeatPumpEquationFit.get
    coil.isRatedTotalCoolingCapacityAutosized && coil.isRatedSensibleHeatRatioAutosized && coil.isRatedAirFlowRateAutosized ? 'Yes' : 'No'

If you feel comfortable changing line 114 in the measure.rb file you can try changing it to this.

coil.isGrossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevelAutosized && coil.isRatedAirFlowRateAtSelectedNominalSpeedLevelAutosized  && coil.isRatedWaterFlowRateAtSelectedNominalSpeedLevelAutosized ? 'Yes' : 'No'