1

OS:Climate zone object causing osm to crash

In our osm model we want to define our climate zone using the ASHRAE climate zone values, so I have created the following ClimateZone object using this function in the OpenStudio SDK seen here.

image description

Unfortunately this climate zone object causes our osm to crash and it seems to be something to do with the nze hvac measure. You can see the logs here.

This only happened when I changed the OS climate zone to the climate zone before:

Previously I was using the climate zone below and it worked:

image description

Whats going on here, how can I fix this?

antonszilasi's avatar
1.5k
antonszilasi
asked 2019-07-03 14:23:09 -0500, updated 2019-07-03 14:32:43 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

1

The measure wants the Climate Zone to be specified per the 2006 standard. I'll update it to take 2006 or 2013, but use 2006 for now.

# get the climate zone
climate_zone_obj = model.getClimateZones.getClimateZone("ASHRAE", 2006)
if climate_zone_obj.empty()
  runner.registerError("Please assign an ASHRAE climate zone to the model before running the measure.")
  return false
else
  climate_zone = "ASHRAE 169-2006-#{climate_zone_obj.value}"
end
mdahlhausen's avatar
9.5k
mdahlhausen
answered 2019-07-03 14:35:49 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

Note the final OS:Climatezone object which worked is:

image description

antonszilasi's avatar
1.5k
antonszilasi
answered 2019-07-03 15:02:08 -0500, updated 2019-07-03 15:02:26 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments