urbanopt-cli 0.6.2 → 0.6.3

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: fc3f2e38d0e23b0b01add165d3459f4abf5b37482018d148e89ffeaa024db9b9
4
- data.tar.gz: 763bfe69e81be0763235196abb1e2749483fc1f9c6a6718e5a97222cbbd0c5fc
3
+ metadata.gz: 8d3bc5c3b66f12e742fb086cc974985a85222b2bfe94aacda10d9302fb3902ba
4
+ data.tar.gz: 11da3379b2d12f17024520818e8f9b80be1ec3bfcbf84398562bc0b0e6b20baf
5
5
  SHA512:
6
- metadata.gz: fd2a7ff86a5ba8442b9b03836c0b299d55ddad8175e9757049cfccab1877efc1cb153b9653b3725735e5d13fc161412e0d62d8d6c9a250e911dc246ef4cff4bc
7
- data.tar.gz: 526a186e149cce00eee2ee85694a6d3b84d903d42cf94d6c214698f13c7db05aab04cc8cfef57d6f5ce0f244b55a8ee811cbcba7b3ae63c7105328b4230b5905
6
+ metadata.gz: 91448faf7d2f3f4ecf1297a2fde7ce7b01b18268a36f2a8dad5d26c3fa926a9a9348308e83f3ece19581fe83775f9727aacd84e45c52a5941253bd2d4e9c3294
7
+ data.tar.gz: 12113797957df03e757aaaa5741eabaa7970b4565e3ea2c1ad45650ec556c705a8c6a30e7472cb72e4eae199262915f48531f5818a4292a5415b38bef785f3bc
data/.gitignore CHANGED
@@ -23,6 +23,7 @@
23
23
  spec/test_directory
24
24
  spec/test_directory_res
25
25
  spec/test_directory_elec
26
+ spec/test_directory_*
26
27
 
27
28
  Gemfile.lock
28
29
  .rubocop*
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## Version 0.6.3
4
+
5
+ Date Range 7/23/21 - 10/28/21
6
+
7
+ - Fixed [#248]( https://github.com/urbanopt/urbanopt-cli/issues/248 ), Update example project to make use of commercial hours of operation customization
8
+ - Fixed [#255]( https://github.com/urbanopt/urbanopt-cli/issues/255 ), Look into warning message
9
+ - Fixed [#258]( https://github.com/urbanopt/urbanopt-cli/issues/258 ), added missing feature location arguments to CreateBar & Floorspace workflows
10
+ - Fixed [#260]( https://github.com/urbanopt/urbanopt-cli/issues/260 ), Add support for community PV, and ground-mount PV associated with Features
11
+ - Fixed [#265]( https://github.com/urbanopt/urbanopt-cli/issues/265 ), RNM workflow does not work when specifying the electrical catalog
12
+ - Fixed [#268]( https://github.com/urbanopt/urbanopt-cli/issues/268 ), Sync files from the urbanopt / urbanopt-example-geojson-project repository
13
+
3
14
  ## Version 0.6.2
4
15
 
5
16
  Date Range 7/2/21 - 7/22/21
data/CMakeLists.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  cmake_minimum_required(VERSION 3.10.2)
2
2
  cmake_policy(SET CMP0048 NEW)
3
3
 
4
- project(UrbanOptCLI VERSION 0.6.1)
4
+ project(UrbanOptCLI VERSION 0.6.2)
5
5
 
6
6
  include(FindOpenStudioSDK.cmake)
7
7
 
@@ -89,16 +89,16 @@ option(BUILD_PACKAGE "Build package" OFF)
89
89
  # need to update the MD5sum for each platform and url below
90
90
  if(UNIX)
91
91
  if(APPLE)
92
- set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210709-darwin.tar.gz")
93
- set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "87513383adca79de074cca2ea4ffc4a8")
92
+ set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210802-darwin.tar.gz ")
93
+ set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "5b607464c5f003477d11ddb73cb7d493")
94
94
  else()
95
- set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210709-linux.tar.gz")
96
- set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "93ce8920db98344a44abd691567c2c77")
95
+ set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210802-linux.tar.gz")
96
+ set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "c43152b7235f70d3b875722cb83b5db8")
97
97
  endif()
98
98
  elseif(WIN32)
99
99
  if(CMAKE_CL_64)
100
- set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210709-windows.tar.gz")
101
- set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "487e0668e92cc44e46a59693ccb910a3")
100
+ set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210809-windows.tar.gz")
101
+ set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "240892fcd96165ce1e3ef879c0367063")
102
102
  endif()
103
103
  endif()
104
104
 
data/Gemfile CHANGED
@@ -46,9 +46,9 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
46
46
  # end
47
47
 
48
48
  # if allow_local && File.exist?('../urbanopt-reopt-gem')
49
- # gem 'urbanopt-reopt', path: '../urbanopt-reopt-gem'
49
+ # gem 'urbanopt-reopt', path: '../urbanopt-reopt-gem'
50
50
  # elsif allow_local
51
- # gem 'urbanopt-reopt', github: 'URBANopt/urbanopt-reopt-gem', branch: 'develop'
51
+ # gem 'urbanopt-reopt', github: 'URBANopt/urbanopt-reopt-gem', branch: 'develop'
52
52
  # end
53
53
 
54
54
  # if allow_local && File.exist?('../openstudio-load-flexibility-measures')
@@ -58,13 +58,13 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
58
58
  # end
59
59
 
60
60
  # if allow_local && File.exist?('../urbanopt-reporting-gem')
61
- # gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
61
+ # gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
62
62
  # elsif allow_local
63
- # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
63
+ # gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
64
64
  # end
65
65
 
66
66
  # if allow_local && File.exist?('../urbanopt-rnm-us-gem')
67
67
  # gem 'urbanopt-rnm-us', path: '../urbanopt-rnm-us-gem'
68
68
  # elsif allow_local
69
69
  # gem 'urbanopt-rnm-us', github: 'URBANopt/urbanopt-rnm-us-gem', branch: 'develop'
70
- # end
70
+ # end
@@ -47,7 +47,7 @@ if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem')
47
47
  elsif allow_local
48
48
  gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: 'master'
49
49
  else
50
- gem 'openstudio-load-flexibility-measures', '~> 0.3.1'
50
+ gem 'openstudio-load-flexibility-measures', '~> 0.3.2'
51
51
  end
52
52
 
53
53
  if allow_local && File.exist?('../openstudio-ee-gem')
@@ -71,13 +71,16 @@ if allow_local && File.exists?('../urbanopt-geojson-gem')
71
71
  elsif allow_local
72
72
  gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop'
73
73
  else
74
- gem 'urbanopt-geojson', '~> 0.6.1'
74
+ gem 'urbanopt-geojson', '~> 0.6.6'
75
75
  end
76
76
 
77
+ # NEVER put SCENARIO-GEM in this file...it will make all simulations fail due to the sqlite dependency
78
+ # gem 'urbanopt-scenario', github: 'URBANopt/urbanopt-scenario-gem', branch: 'develop'
79
+
77
80
  if allow_local && File.exists?('../urbanopt-reporting-gem')
78
81
  gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
79
82
  elsif allow_local
80
83
  gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
81
84
  else
82
- gem 'urbanopt-reporting', '~> 0.4.0'
85
+ gem 'urbanopt-reporting', '~> 0.4.2'
83
86
  end
@@ -129,6 +129,11 @@
129
129
  "charge_start": "23:00",
130
130
  "inter_sp": 46
131
131
  }
132
+ },{
133
+ "measure_dir_name":"add_hpwh",
134
+ "arguments":{
135
+ "__SKIP__":true
136
+ }
132
137
  },{
133
138
  "measure_dir_name": "add_packaged_ice_storage",
134
139
  "arguments": {
@@ -144,6 +149,11 @@
144
149
  "feature_type": null,
145
150
  "feature_location": null
146
151
  }
152
+ },{
153
+ "measure_dir_name": "openstudio_results",
154
+ "arguments": {
155
+ "__SKIP__": true
156
+ }
147
157
  }
148
158
  ],
149
159
  "name": null,
@@ -147,7 +147,11 @@
147
147
  "building_type": "Food service",
148
148
  "floor_area": 125631,
149
149
  "footprint_area": 41877,
150
- "number_of_stories": 3
150
+ "number_of_stories": 3,
151
+ "weekday_start_time": "11:00",
152
+ "weekday_duration": "11:30",
153
+ "weekend_start_time": "11:00",
154
+ "weekend_duration": "11:30"
151
155
  },
152
156
  "geometry": {
153
157
  "type": "Polygon",
@@ -186,7 +190,11 @@
186
190
  "building_type": "Food service",
187
191
  "floor_area": 31623,
188
192
  "footprint_area": 10541,
189
- "number_of_stories": 3
193
+ "number_of_stories": 3,
194
+ "weekday_start_time": "06:00",
195
+ "weekday_duration": "07:00",
196
+ "weekend_start_time": "08:00",
197
+ "weekend_duration": "05:00"
190
198
  },
191
199
  "geometry": {
192
200
  "type": "Polygon",
@@ -225,7 +233,9 @@
225
233
  "building_type": "Food service",
226
234
  "floor_area": 8804,
227
235
  "footprint_area": 8804,
228
- "number_of_stories": 1
236
+ "number_of_stories": 1,
237
+ "weekday_start_time": "06:00",
238
+ "weekday_duration": "16:00"
229
239
  },
230
240
  "geometry": {
231
241
  "type": "Polygon",