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 +4 -4
- data/honeybee-openstudio.gemspec +1 -1
- data/lib/from_openstudio/geometry/face.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1186d2bbbf3f03e945a82ae14f61b1529715930086e4e33a196650b9e3c0cf7b
|
|
4
|
+
data.tar.gz: f68521a43fa529cf678eb8acb14895558244d896b09f1349bb033fab3cf91d2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f344d6880203249bffdb96dd677db64a64b1f9dd025bdf1992bab9b04c09449e2d3e63cbf8ddb3e12b4df89b975da693a021fb91dd130bee2225d7f61e638e8e
|
|
7
|
+
data.tar.gz: 14d6d0470bf0323c7d37753d8f53f6314ad928618deac469d0515b9ba6311f25c1129f4b71d6f5ba3b4565536fbaaa3ea43ae0d7f699079c67469781bc8c2b1c
|
data/honeybee-openstudio.gemspec
CHANGED
|
@@ -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.
|
|
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
|
-
|
|
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
|
|
119
|
+
elsif surface_bc == 'Adiabatic'
|
|
120
120
|
result = {type: 'Adiabatic'}
|
|
121
121
|
else
|
|
122
122
|
sun_exposure = (surface.sunExposure == 'SunExposed')
|