honeybee-openstudio 2.9.1 → 2.9.2
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/to_openstudio/model.rb +6 -0
- 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: d7265fe2d040154eaabc62cd384a046e9de1561479f96ae6922760ae90468fdd
|
|
4
|
+
data.tar.gz: fe64853cd2a21ec4ae349b22bf9b96bc9401411237660d7a244bf618216f4baa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a3063864e5458fe0f84ff4c244d8514d616656add8f173700a68d7dac7ab156e4b67d07ab0e204870fa9291a62a2335bf19e996153ca856868fbd1ebd39a59c
|
|
7
|
+
data.tar.gz: 8e958117ddf00a3e26b054248601b00af820df807313a3913828365b9285090b2f8e20d1ada94cbe09c46fb6620c0edcfbc1fa2d1dc026e05d27f1da7da25966
|
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.9.
|
|
7
|
+
spec.version = '2.9.2'
|
|
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
|
|
data/lib/to_openstudio/model.rb
CHANGED
|
@@ -451,6 +451,12 @@ module Honeybee
|
|
|
451
451
|
unless zone_get.empty?
|
|
452
452
|
os_thermal_zone = zone_get.get
|
|
453
453
|
os_ideal_air.addToThermalZone(os_thermal_zone)
|
|
454
|
+
# set the humidistat if the zone has one
|
|
455
|
+
humid_get = os_thermal_zone.zoneControlHumidistat
|
|
456
|
+
unless humid_get.empty?
|
|
457
|
+
os_ideal_air.setDehumidificationControlType('Humidistat')
|
|
458
|
+
os_ideal_air.setHumidificationControlType('Humidistat')
|
|
459
|
+
end
|
|
454
460
|
end
|
|
455
461
|
end
|
|
456
462
|
elsif TemplateHVAC.types.include?(system_type)
|