First time here? Check our help page!
2

Zone Load Measure OpenStudio

Hi,

I am trying to get the zones load break down using "Zone Report" measure, but every time I use the measure I get the the below error. I tried different versions of the measure, also tried to download the measure and add it to "my measures" and use it from there. I am not sure if this is because the measure is not compatible with the OpenStudio version 2.6 that I am using, or if there is something should be done before using this measure?

Thank you,

image description

Saif's avatar
626
Saif
asked 2018-12-04 11:30:28 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2018-12-04 11:40:52 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

@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 the last line 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'
David Goldwasser's avatar
20.4k
David Goldwasser
answered 2018-12-04 13:42:22 -0500, updated 2018-12-04 13:49:06 -0500
edit flag offensive 0 remove flag delete link

Comments

@David Goldwasser I replaced line 114, but still getting error.

measure update

Error

Saif's avatar Saif (2018-12-04 14:27:15 -0500) edit

Ok, thanks for trying, do you mind sending your model to OpenStuido@nrel.gov? If not I can make a new test model with this object type.

David Goldwasser's avatar David Goldwasser (2018-12-04 15:04:47 -0500) edit

I sent the model.

Saif's avatar Saif (2018-12-04 15:18:34 -0500) edit
add a comment see more comments