urbanopt-scenario 0.6.0 → 0.7.0
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/.rubocop.yml +2 -3
- data/CHANGELOG.md +23 -0
- data/Gemfile +3 -1
- data/docs/package-lock.json +20264 -1990
- data/docs/package.json +5 -4
- data/lib/urbanopt/scenario/logger.rb +1 -1
- data/lib/urbanopt/scenario/scenario_csv.rb +6 -6
- data/lib/urbanopt/scenario/scenario_datapoint_base.rb +5 -5
- data/lib/urbanopt/scenario/scenario_post_processor_default.rb +4 -4
- data/lib/urbanopt/scenario/scenario_post_processor_opendss.rb +6 -6
- data/lib/urbanopt/scenario/scenario_runner_osw.rb +4 -3
- data/lib/urbanopt/scenario/scenario_visualization.rb +30 -22
- data/lib/urbanopt/scenario/simulation_dir_base.rb +1 -5
- data/lib/urbanopt/scenario/simulation_dir_osw.rb +3 -1
- data/lib/urbanopt/scenario/version.rb +1 -1
- data/urbanopt-scenario-gem.gemspec +4 -4
- metadata +17 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa105156f00e1e346655b0fb8ab67d7382e605cf46a7b15d12649de1c01e6be0
|
4
|
+
data.tar.gz: 5e46ec0982045197a85b4b88e84c8977a0ddb271eec910583e56c689993327ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c40716ebc14e8333194cecbd85361539093384b3e5b0e4ac03e2ad68608ff470c55f9a28103a70cf9fe477d6d5b3b114651cd51ed50a335269c94521e0b55ade
|
7
|
+
data.tar.gz: ea570aff4053398037934a0eaa01c18bddfcb1738794af5da7c0314389721e08b9c764c1bf4690175845314914666489f7c1846f32957b2c9e859610e779681e
|
data/.rubocop.yml
CHANGED
@@ -3,8 +3,7 @@ AllCops:
|
|
3
3
|
- gems/**/*
|
4
4
|
- measures/**/*
|
5
5
|
- spec/files/**/measures/**/*
|
6
|
-
|
6
|
+
require: rubocop-performance
|
7
7
|
|
8
8
|
inherit_from:
|
9
|
-
- http://s3.amazonaws.com/openstudio-resources/styles/
|
10
|
-
|
9
|
+
- http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v4.yml
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# URBANopt Scenario Gem
|
2
2
|
|
3
|
+
## Version 0.7.0
|
4
|
+
Date Range: 10/16/21 - 11/22/21:
|
5
|
+
|
6
|
+
- Updated dependencies for OpenStudio 3.3
|
7
|
+
|
8
|
+
## Version 0.6.3
|
9
|
+
Date Range: 07/01/21 - 10/15/21:
|
10
|
+
|
11
|
+
- Fixed [#219]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/219), Add support for REopt
|
12
|
+
results for Electricity Produced in Scenario and Feature visualization
|
13
|
+
|
14
|
+
## Version 0.6.2
|
15
|
+
Date Range: 05/15/21 - 06/30/21:
|
16
|
+
|
17
|
+
- Fixed [#214]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/214 ), update rubocop configs to v4
|
18
|
+
- Fixed [#207]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/207 ), Update Load-Flex measure gem version
|
19
|
+
- Fixed [#215]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/215 ), update rubocop to v4 #214
|
20
|
+
|
21
|
+
## Version 0.6.1
|
22
|
+
Date Range: 04-30-21 - 05/14/21
|
23
|
+
|
24
|
+
- Fixed [#227]( https://github.com/urbanopt/urbanopt-cli/issues/227 ), Runtime error when running urbanopt cli example project
|
25
|
+
|
3
26
|
## Version 0.6.0
|
4
27
|
Date Range: 02/05/21 - 04/29/21
|
5
28
|
|
data/Gemfile
CHANGED
@@ -39,8 +39,10 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
39
39
|
# end
|
40
40
|
|
41
41
|
# if allow_local && File.exist?('../urbanopt-reporting-gem')
|
42
|
-
#
|
42
|
+
# gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
|
43
43
|
# elsif allow_local
|
44
|
+
# gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
|
45
|
+
# end
|
44
46
|
|
45
47
|
# if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem')
|
46
48
|
# gem 'openstudio-load-flexibility-measures', path: '../openstudio-load-flexibility-measures-gem'
|