honeybee-openstudio 2.7.0 → 2.7.5
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/Gemfile +1 -1
- data/honeybee-openstudio.gemspec +3 -3
- data/lib/files/Honeybee.rb +1 -1
- data/lib/files/urbanopt_Gemfile +14 -6
- data/lib/to_openstudio/hvac/Model.hvac.rb +16 -10
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '059c1b63676053fb14b460d18b2f8cadab0ab7638a4632560861bf7e02b9db28'
|
4
|
+
data.tar.gz: 125278d93d4ef1ff13e9bf025154566cfce9b05d56474fd32037d840edba0510
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5b62b5173f80a27a21d85eb565bf1546c779595dd5505d8b718aec5cceef98a9b1e017e70be302daf2a276cc083f51be6b7d379bd197658c7ef3dc181fb3245
|
7
|
+
data.tar.gz: 386187297eda2342a16bacc18bd33c804a50ce203a44983ee3f254ae192e6432fb19a96558b40e9e6fc8dd4f8a27da517c704ae5037e0d4c39eb9732208e999f
|
data/Gemfile
CHANGED
@@ -7,7 +7,7 @@ gemspec
|
|
7
7
|
if File.exist?('../OpenStudio-extension-gem') # local development copy
|
8
8
|
gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
|
9
9
|
else # get it from rubygems.org
|
10
|
-
gem 'openstudio-extension', '0.2.
|
10
|
+
gem 'openstudio-extension', '0.2.5'
|
11
11
|
end
|
12
12
|
|
13
13
|
# coveralls gem is used to generate coverage reports through CI
|
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.7.
|
7
|
+
spec.version = '2.7.5'
|
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
|
|
@@ -33,6 +33,6 @@ Gem::Specification.new do |spec|
|
|
33
33
|
end
|
34
34
|
|
35
35
|
spec.add_dependency 'json_pure'
|
36
|
-
spec.add_dependency 'openstudio-extension', '0.2.
|
37
|
-
spec.add_dependency 'openstudio-standards', '~> 0.2.
|
36
|
+
spec.add_dependency 'openstudio-extension', '0.2.5'
|
37
|
+
spec.add_dependency 'openstudio-standards', '~> 0.2.12'
|
38
38
|
end
|
data/lib/files/Honeybee.rb
CHANGED
@@ -29,7 +29,7 @@
|
|
29
29
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
30
|
# *******************************************************************************
|
31
31
|
|
32
|
-
require 'urbanopt/
|
32
|
+
require 'urbanopt/reporting'
|
33
33
|
require 'openstudio/common_measures'
|
34
34
|
require 'openstudio/model_articulation'
|
35
35
|
|
data/lib/files/urbanopt_Gemfile
CHANGED
@@ -4,12 +4,12 @@ ruby '~> 2.5.0'
|
|
4
4
|
|
5
5
|
allow_local = ENV['FAVOR_LOCAL_GEMS']
|
6
6
|
|
7
|
-
if allow_local && File.exist?('../
|
8
|
-
gem '
|
7
|
+
if allow_local && File.exist?('../openstudio-model-articulation-gem')
|
8
|
+
gem 'openstudio-model-articulation', path: '../openstudio-model-articulation-gem'
|
9
9
|
elsif allow_local
|
10
|
-
gem '
|
10
|
+
gem 'openstudio-model-articulation', github: 'NREL/openstudio-model-articulation-gem', branch: 'develop'
|
11
11
|
else
|
12
|
-
gem '
|
12
|
+
gem 'openstudio-model-articulation', '0.2.0'
|
13
13
|
end
|
14
14
|
|
15
15
|
if allow_local && File.exist?('../urbanopt-geojson-gem')
|
@@ -17,8 +17,16 @@ if allow_local && File.exist?('../urbanopt-geojson-gem')
|
|
17
17
|
elsif allow_local
|
18
18
|
gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
|
19
19
|
else
|
20
|
-
gem 'urbanopt-geojson', '~> 0.
|
20
|
+
gem 'urbanopt-geojson', '~> 0.4.0'
|
21
|
+
end
|
22
|
+
|
23
|
+
if allow_local && File.exist?('../urbanopt-reporting-gem')
|
24
|
+
gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
|
25
|
+
elsif allow_local
|
26
|
+
gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
|
27
|
+
else
|
28
|
+
gem 'urbanopt-reporting', '~> 0.2.1'
|
21
29
|
end
|
22
30
|
|
23
31
|
# include the honeybee-openstudio-gem
|
24
|
-
gem 'honeybee-openstudio', '2.
|
32
|
+
gem 'honeybee-openstudio', '2.7.3'
|
@@ -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
|
-
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
|
204
|
+
when 'DOAS with fan coil district chilled water with no heat'
|
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.
|
4
|
+
version: 2.7.5
|
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-
|
14
|
+
date: 2020-11-25 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: json_pure
|
@@ -33,28 +33,28 @@ dependencies:
|
|
33
33
|
requirements:
|
34
34
|
- - '='
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 0.2.
|
36
|
+
version: 0.2.5
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - '='
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 0.2.
|
43
|
+
version: 0.2.5
|
44
44
|
- !ruby/object:Gem::Dependency
|
45
45
|
name: openstudio-standards
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - "~>"
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 0.2.
|
50
|
+
version: 0.2.12
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - "~>"
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version: 0.2.
|
57
|
+
version: 0.2.12
|
58
58
|
description: Library and measures for translating between Honeybee JSON schema and
|
59
59
|
OpenStudio Model schema (OSM).
|
60
60
|
email:
|