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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3079741f838bba3b05a4b168b70739072a77f7da9b7fe9fe8b65132fc9b38733
4
- data.tar.gz: 9f2f6997db58ca1163e6bbae9f10600e0b59fb4e65a46972910e61fcba31d12b
3
+ metadata.gz: d7265fe2d040154eaabc62cd384a046e9de1561479f96ae6922760ae90468fdd
4
+ data.tar.gz: fe64853cd2a21ec4ae349b22bf9b96bc9401411237660d7a244bf618216f4baa
5
5
  SHA512:
6
- metadata.gz: 238548fcbcae965a11c42bc82da68c68b4c9212cef14bee39262cfd74617e59bc029315b15edc40b1a229c3aa185c8a943adb992f8630ceadddee46abe0d3b68
7
- data.tar.gz: f6fcac87e29808a302629fcf2f31afea75e4f68cc83aabaf2fd19bd09d67ae0d80a5b091f18a4023c32e8b07ae88ced54987482d0eba370af9112760500ac4eb
6
+ metadata.gz: 0a3063864e5458fe0f84ff4c244d8514d616656add8f173700a68d7dac7ab156e4b67d07ab0e204870fa9291a62a2335bf19e996153ca856868fbd1ebd39a59c
7
+ data.tar.gz: 8e958117ddf00a3e26b054248601b00af820df807313a3913828365b9285090b2f8e20d1ada94cbe09c46fb6620c0edcfbc1fa2d1dc026e05d27f1da7da25966
@@ -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.1'
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
 
@@ -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)
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.9.1
4
+ version: 2.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanushree Charan