honeybee-openstudio 2.7.0 → 2.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c308040a73a632d6641d26c48070ce70d7d5330759f4a7f218c8f28b59eb22f
4
- data.tar.gz: 9e07605c838a6f27c172aafb9e86bf2182d038b15b50009328eb8c2a0c9e9051
3
+ metadata.gz: fdcec6b44f1277cc2dff59a67cea33cbaec6a9163bd01afb5079a5e58a7b855a
4
+ data.tar.gz: 77c39527d6dda4ace8cff48524da0c227a2bd4b2426e5376c0e2dd9d2aeeefa1
5
5
  SHA512:
6
- metadata.gz: 120ea2c1d4b8f7d9cfef3d504ac0a10de92672d0e51866016503e65b5af020b89c8971599d758b0e06530ee9937bb0b3c3b0b68ca07cc491fa3aa81f47538948
7
- data.tar.gz: fb9ae57299da465ae81a8a6e1c758842cd616f1ab5623a80d53b8c6f1166bf528ce32ae6d1a6e3ebc6b56fe7ee47c39f20927ce937f065237bf14ddade7a7125
6
+ metadata.gz: a542295338e1a8e8da2ac09019f0a7601ec7ed0b9b329a644f0d2c2b0f5eeeb8fefaedd4a78f88d7b282a77be41c69bbf17f8995d4a8453c7606a15481fa4fc7
7
+ data.tar.gz: e1b7fed7f1ec0ea875360b2c14118b8b5f0d26bcf529e54a6b0758570e47c2c0a253c2954b12516639ec218e3c90a53c6d2793d18b116919aace7bdf53f5a69a
@@ -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.7.0'
7
+ spec.version = '2.7.1'
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
 
@@ -109,19 +109,22 @@ class OpenStudio::Model::Model
109
109
  zone_equipment_ventilation: false)
110
110
 
111
111
  when 'DOAS with fan coil chiller with baseboard electric'
112
- standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones)
112
+ standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
113
+ air_loop_heating_type: nil)
113
114
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
114
115
  zone_equipment_ventilation: false)
115
116
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
116
117
 
117
118
  when 'DOAS with fan coil chiller with gas unit heaters'
118
- standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones)
119
+ standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
120
+ air_loop_heating_type: nil)
119
121
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
120
122
  zone_equipment_ventilation: false)
121
123
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
122
124
 
123
125
  when 'DOAS with fan coil chiller with no heat'
124
- standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones)
126
+ standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
127
+ air_loop_heating_type: nil)
125
128
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
126
129
  zone_equipment_ventilation: false)
127
130
 
@@ -148,7 +151,7 @@ class OpenStudio::Model::Model
148
151
 
149
152
  when 'DOAS with fan coil air-cooled chiller with baseboard electric'
150
153
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
151
- chilled_water_loop_cooling_type: 'AirCooled')
154
+ chilled_water_loop_cooling_type: 'AirCooled', air_loop_heating_type: nil)
152
155
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
153
156
  chilled_water_loop_cooling_type: 'AirCooled',
154
157
  zone_equipment_ventilation: false)
@@ -156,7 +159,7 @@ class OpenStudio::Model::Model
156
159
 
157
160
  when 'DOAS with fan coil air-cooled chiller with gas unit heaters'
158
161
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
159
- chilled_water_loop_cooling_type: 'AirCooled')
162
+ chilled_water_loop_cooling_type: 'AirCooled', air_loop_heating_type: nil)
160
163
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
161
164
  chilled_water_loop_cooling_type: 'AirCooled',
162
165
  zone_equipment_ventilation: false)
@@ -164,7 +167,7 @@ class OpenStudio::Model::Model
164
167
 
165
168
  when 'DOAS with fan coil air-cooled chiller with no heat'
166
169
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
167
- chilled_water_loop_cooling_type: 'AirCooled')
170
+ chilled_water_loop_cooling_type: 'AirCooled', air_loop_heating_type: nil)
168
171
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
169
172
  chilled_water_loop_cooling_type: 'AirCooled',
170
173
  zone_equipment_ventilation: false)
@@ -185,19 +188,22 @@ class OpenStudio::Model::Model
185
188
  zone_equipment_ventilation: false)
186
189
 
187
190
  when 'DOAS with fan coil district chilled water with baseboard electric'
188
- standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones)
191
+ standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
192
+ air_loop_heating_type: nil)
189
193
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
190
194
  zone_equipment_ventilation: false)
191
195
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
192
196
 
193
197
  when 'DOAS with fan coil district chilled water with gas unit heaters'
194
- standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones)
198
+ standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
199
+ air_loop_heating_type: nil)
195
200
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
196
201
  zone_equipment_ventilation: false)
197
202
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
198
203
 
199
204
  when 'DOAS with fan coil district chilled water with no heat '
200
- standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones)
205
+ standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
206
+ air_loop_heating_type: nil)
201
207
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
202
208
  zone_equipment_ventilation: false)
203
209
 
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.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanushree Charan
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2020-11-24 00:00:00.000000000 Z
14
+ date: 2020-11-25 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: json_pure