honeybee-openstudio 2.17.3 → 2.17.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39d9e9597fdf88414ece518ccfb002ef476a41aacebac51cce4cdacddb95996c
4
- data.tar.gz: a28ad4c5138992496d483c63bf57d251f0255434e851f99beb736ba2520c47a5
3
+ metadata.gz: 1186d2bbbf3f03e945a82ae14f61b1529715930086e4e33a196650b9e3c0cf7b
4
+ data.tar.gz: f68521a43fa529cf678eb8acb14895558244d896b09f1349bb033fab3cf91d2b
5
5
  SHA512:
6
- metadata.gz: 6b04294c1ec03887c6be0e0ccf356b2d8f9afb2bfa30b5c26e7061ee61a8d7f31da9cdb4b3314da9414cab578eeac8e78c04c131bc7c4f04f1f52dbf654f31db
7
- data.tar.gz: 0d3a9111ab3ab8956dcedd438223b8f9bf7666d298325713da5d1bc8a03ba5bcd9ee4dac6d88f1d8adf6408e8330de2d54bbcd128ddc8020f30bbff10efc2717
6
+ metadata.gz: f344d6880203249bffdb96dd677db64a64b1f9dd025bdf1992bab9b04c09449e2d3e63cbf8ddb3e12b4df89b975da693a021fb91dd130bee2225d7f61e638e8e
7
+ data.tar.gz: 14d6d0470bf0323c7d37753d8f53f6314ad928618deac469d0515b9ba6311f25c1129f4b71d6f5ba3b4565536fbaaa3ea43ae0d7f699079c67469781bc8c2b1c
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'honeybee-openstudio'
7
- spec.version = '2.17.3'
7
+ spec.version = '2.17.4'
8
8
  spec.authors = ['Tanushree Charan', 'Dan Macumber', 'Chris Mackey', 'Mostapha Sadeghipour Roudsari']
9
9
  spec.email = ['tanushree.charan@nrel.gov', 'chris@ladybug.tools']
10
10
 
@@ -108,7 +108,7 @@ module Honeybee
108
108
 
109
109
  def self.boundary_condition_from_surface(surface)
110
110
  result = {}
111
- surface_type = surface.surfaceType
111
+ surface_bc = surface.outsideBoundaryCondition
112
112
  adjacent_surface = surface.adjacentSurface
113
113
  if !adjacent_surface.empty?
114
114
  adjacent_space = clean_identifier(adjacent_surface.get.space.get.nameString)
@@ -116,7 +116,7 @@ module Honeybee
116
116
  result = {type: 'Surface', boundary_condition_objects: [adjacent_surface, adjacent_space]}
117
117
  elsif surface.isGroundSurface
118
118
  result = {type: 'Ground'}
119
- elsif surface_type == 'Adiabatic'
119
+ elsif surface_bc == 'Adiabatic'
120
120
  result = {type: 'Adiabatic'}
121
121
  else
122
122
  sun_exposure = (surface.sunExposure == 'SunExposed')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honeybee-openstudio
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.17.3
4
+ version: 2.17.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanushree Charan