openstudio-calibration 0.1.3 → 0.3.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.
Files changed (48) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +5 -0
  4. data/CHANGELOG.md +23 -8
  5. data/Gemfile +0 -3
  6. data/Jenkinsfile +6 -2
  7. data/README.md +2 -2
  8. data/Rakefile +5 -5
  9. data/lib/measures/TimeseriesObjectiveFunction/README.md +5 -171
  10. data/lib/measures/TimeseriesObjectiveFunction/measure.rb +2 -6
  11. data/lib/measures/TimeseriesObjectiveFunction/measure.xml +89 -13
  12. data/lib/measures/TimeseriesObjectiveFunction/resources/report.html.erb +2 -0
  13. data/lib/measures/TimeseriesPlot/README.md +5 -35
  14. data/lib/measures/TimeseriesPlot/measure.xml +27 -11
  15. data/lib/measures/TimeseriesPlot/resources/report.html.erb +2 -0
  16. data/lib/measures/zone_report/README.md +2 -2
  17. data/lib/measures/zone_report/measure.rb +1 -1
  18. data/lib/measures/zone_report/measure.xml +14 -12
  19. data/lib/{openstudio-calibration-measures.rb → openstudio-calibration.rb} +1 -1
  20. data/lib/openstudio/{calibration_measures.rb → calibration.rb} +2 -2
  21. data/lib/openstudio/{calibration_measures → calibration}/extension.rb +1 -1
  22. data/lib/openstudio/{calibration_measures → calibration}/version.rb +2 -2
  23. data/openstudio-calibration.gemspec +38 -0
  24. metadata +37 -54
  25. data/lib/measures/AddMonthlyUtilityData/tests/AddMonthlyUtilityData_Test.rb +0 -88
  26. data/lib/measures/AddMonthlyUtilityData/tests/electric_billed_usages.json +0 -198
  27. data/lib/measures/AddMonthlyUtilityData/tests/gas_billed_usages.json +0 -198
  28. data/lib/measures/CalibrationReports/tests/CalibrationReports_Test.rb +0 -523
  29. data/lib/measures/CalibrationReports/tests/ExampleModel.osm +0 -10497
  30. data/lib/measures/CalibrationReports/tests/ExampleModelNoDemandInput.osm +0 -10560
  31. data/lib/measures/CalibrationReports/tests/ExampleModelNoGasInput.osm +0 -10456
  32. data/lib/measures/CalibrationReports/tests/USA_CO_Golden-NREL.724666_TMY3.epw +0 -8768
  33. data/lib/measures/CalibrationReportsEnhanced/tests/CalibrationReportsEnhanced_Test.rb +0 -734
  34. data/lib/measures/CalibrationReportsEnhanced/tests/ExampleModel.osm +0 -10497
  35. data/lib/measures/CalibrationReportsEnhanced/tests/ExampleModel_FuelOil.osm +0 -12740
  36. data/lib/measures/CalibrationReportsEnhanced/tests/USA_CO_Golden-NREL.724666_TMY3.epw +0 -8768
  37. data/lib/measures/CalibrationReportsEnhanced21/LICENSE.md +0 -27
  38. data/lib/measures/CalibrationReportsEnhanced21/README.md +0 -109
  39. data/lib/measures/CalibrationReportsEnhanced21/README.md.erb +0 -42
  40. data/lib/measures/CalibrationReportsEnhanced21/measure.rb +0 -690
  41. data/lib/measures/CalibrationReportsEnhanced21/measure.xml +0 -269
  42. data/lib/measures/CalibrationReportsEnhanced21/resources/report.html.in +0 -380
  43. data/lib/measures/MaalkaMonthlyJSONUtilityData/LICENSE.md +0 -27
  44. data/lib/measures/MaalkaMonthlyJSONUtilityData/README.md +0 -104
  45. data/lib/measures/MaalkaMonthlyJSONUtilityData/README.md.erb +0 -42
  46. data/lib/measures/MaalkaMonthlyJSONUtilityData/measure.rb +0 -304
  47. data/lib/measures/MaalkaMonthlyJSONUtilityData/measure.xml +0 -216
  48. data/openstudio-calibration-measures.gemspec +0 -30
@@ -37,6 +37,8 @@
37
37
 
38
38
 
39
39
 
40
+
41
+
40
42
  <!DOCTYPE html>
41
43
  <meta charset="utf-8">
42
44
  <style>
@@ -2,16 +2,16 @@
2
2
 
3
3
  ###### (Automatically generated documentation)
4
4
 
5
- # Timeseries Plot
5
+ #
6
6
 
7
7
  ## Description
8
- Creates an interactive timeseries plot of selected variable.
8
+
9
9
 
10
10
  ## Modeler Description
11
- NOTE: This will load and respond slowly in the OS app, especially if you select * on a variable with many possible keys or you select timestep data. Suggest you open it in a web browser like Chrome instead.
11
+
12
12
 
13
13
  ## Measure Type
14
- ReportingMeasure
14
+ ModelMeasure
15
15
 
16
16
  ## Taxonomy
17
17
 
@@ -19,38 +19,8 @@ ReportingMeasure
19
19
  ## Arguments
20
20
 
21
21
 
22
- ### Enter Variable Name.
23
- Valid values can be found in the eplusout.rdd file after a simulation is run.
24
- **Name:** variable_name,
25
- **Type:** String,
26
- **Units:** ,
27
- **Required:** true,
28
- **Model Dependent:** false
29
-
30
- ### Reporting Frequency.
31
-
32
- **Name:** reporting_frequency,
33
- **Type:** Choice,
34
- **Units:** ,
35
- **Required:** true,
36
- **Model Dependent:** false
37
-
38
- ### Enter Key Name.
39
- Enter * for all objects or the full name of a specific object to.
40
- **Name:** key_value,
41
- **Type:** String,
42
- **Units:** ,
43
- **Required:** true,
44
- **Model Dependent:** false
45
-
46
- ### availableEnvPeriods
47
- availableEnvPeriods
48
- **Name:** env,
49
- **Type:** String,
50
- **Units:** ,
51
- **Required:** true,
52
- **Model Dependent:** false
53
22
 
54
23
 
24
+ This measure does not have any user arguments
55
25
 
56
26
 
@@ -1,9 +1,10 @@
1
+ <?xml version="1.0"?>
1
2
  <measure>
2
3
  <schema_version>3.0</schema_version>
3
4
  <name>timeseries_plot</name>
4
5
  <uid>6804217d-4737-45f3-82df-b81393c29ce7</uid>
5
- <version_id>eaeb6d82-5b2c-47df-b17a-5bc25079efde</version_id>
6
- <version_modified>20200331T151749Z</version_modified>
6
+ <version_id>32a66bf1-1f5f-4586-9675-0f0ee7c603c3</version_id>
7
+ <version_modified>20200512T180515Z</version_modified>
7
8
  <xml_checksum>FFE04372</xml_checksum>
8
9
  <class_name>TimeseriesPlot</class_name>
9
10
  <display_name>Timeseries Plot</display_name>
@@ -15,13 +16,19 @@
15
16
  <display_name>Enter Variable Name.</display_name>
16
17
  <description>Valid values can be found in the eplusout.rdd file after a simulation is run.</description>
17
18
  <type>String</type>
19
+ <units></units>
18
20
  <required>true</required>
19
21
  <model_dependent>false</model_dependent>
22
+ <default_value></default_value>
23
+ <min_value></min_value>
24
+ <max_value></max_value>
20
25
  </argument>
21
26
  <argument>
22
27
  <name>reporting_frequency</name>
23
28
  <display_name>Reporting Frequency.</display_name>
29
+ <description></description>
24
30
  <type>Choice</type>
31
+ <units></units>
25
32
  <required>true</required>
26
33
  <model_dependent>false</model_dependent>
27
34
  <default_value>Hourly</default_value>
@@ -55,28 +62,36 @@
55
62
  <display_name>Runperiod</display_name>
56
63
  </choice>
57
64
  </choices>
65
+ <min_value></min_value>
66
+ <max_value></max_value>
58
67
  </argument>
59
68
  <argument>
60
69
  <name>key_value</name>
61
70
  <display_name>Enter Key Name.</display_name>
62
71
  <description>Enter * for all objects or the full name of a specific object to.</description>
63
72
  <type>String</type>
73
+ <units></units>
64
74
  <required>true</required>
65
75
  <model_dependent>false</model_dependent>
66
76
  <default_value>*</default_value>
77
+ <min_value></min_value>
78
+ <max_value></max_value>
67
79
  </argument>
68
80
  <argument>
69
81
  <name>env</name>
70
82
  <display_name>availableEnvPeriods</display_name>
71
83
  <description>availableEnvPeriods</description>
72
84
  <type>String</type>
85
+ <units></units>
73
86
  <required>true</required>
74
87
  <model_dependent>false</model_dependent>
75
88
  <default_value>RUN PERIOD 1</default_value>
89
+ <min_value></min_value>
90
+ <max_value></max_value>
76
91
  </argument>
77
92
  </arguments>
78
- <outputs/>
79
- <provenances/>
93
+ <outputs />
94
+ <provenances />
80
95
  <tags>
81
96
  <tag>Reporting.QAQC</tag>
82
97
  </tags>
@@ -110,12 +125,6 @@
110
125
  <usage_type>readmeerb</usage_type>
111
126
  <checksum>703C9964</checksum>
112
127
  </file>
113
- <file>
114
- <filename>README.md</filename>
115
- <filetype>md</filetype>
116
- <usage_type>readme</usage_type>
117
- <checksum>A3A04D6D</checksum>
118
- </file>
119
128
  <file>
120
129
  <version>
121
130
  <software_program>OpenStudio</software_program>
@@ -127,11 +136,18 @@
127
136
  <usage_type>script</usage_type>
128
137
  <checksum>76613086</checksum>
129
138
  </file>
139
+ <file>
140
+ <filename>README.md</filename>
141
+ <filetype>md</filetype>
142
+ <usage_type>readme</usage_type>
143
+ <checksum>0B68E96D</checksum>
144
+ </file>
130
145
  <file>
131
146
  <filename>report.html.erb</filename>
132
147
  <filetype>erb</filetype>
133
148
  <usage_type>resource</usage_type>
134
- <checksum>8A46D937</checksum>
149
+ <checksum>90E993CA</checksum>
135
150
  </file>
136
151
  </files>
137
152
  </measure>
153
+ <error>wrong number of arguments (given 1, expected 0)</error>
@@ -37,6 +37,8 @@
37
37
 
38
38
 
39
39
 
40
+
41
+
40
42
  <!DOCTYPE html>
41
43
  <meta charset="utf-8">
42
44
  <style>
@@ -2,7 +2,7 @@
2
2
 
3
3
  ###### (Automatically generated documentation)
4
4
 
5
- # Zone Report
5
+ #
6
6
 
7
7
  ## Description
8
8
 
@@ -11,7 +11,7 @@
11
11
 
12
12
 
13
13
  ## Measure Type
14
- ReportingMeasure
14
+ ModelMeasure
15
15
 
16
16
  ## Taxonomy
17
17
 
@@ -597,7 +597,7 @@ class ZoneReport < OpenStudio::Measure::ReportingMeasure
597
597
  graph['title'] = ''
598
598
  graph['xaxislabel'] = ''
599
599
  graph['yaxislabel'] = 'Contribution Btu/hr/ft2'
600
- graph['labels'] = %w[index people lights equipment refrigeration other infiltration zone_ventilation interzone_mixing walls/doors roof/ceiling floor windows net/heating net/cooling]
600
+ graph['labels'] = ['index', 'people', 'lights', 'equipment', 'refrigeration', 'other', 'infiltration', 'zone_ventilation', 'interzone_mixing', 'walls/doors', 'roof/ceiling', 'floor', 'windows', 'net/heating', 'net/cooling']
601
601
  graph['colors'] = ['#888855', '#AAAA55', '#3333AA', '#8888FF', '#888888', '#9999FF', '#AAAAFF', '#AA6666', '#777733', '#888833', '#999933', '#9999FF', '#FF9999', '#9999FF']
602
602
  graph['data'] = stacked_vals
603
603
 
@@ -1,17 +1,18 @@
1
+ <?xml version="1.0"?>
1
2
  <measure>
2
3
  <schema_version>3.0</schema_version>
3
4
  <name>zone_report</name>
4
5
  <uid>f3531642-27ce-4624-95ab-0bfcd5b9f5fe</uid>
5
- <version_id>338beba4-8b3e-4296-adba-4b7eae6f55aa</version_id>
6
- <version_modified>20200325T030944Z</version_modified>
6
+ <version_id>ccf30dd2-047d-4eb0-b928-9c64ff9357e8</version_id>
7
+ <version_modified>20200512T035029Z</version_modified>
7
8
  <xml_checksum>2C8A3EEF</xml_checksum>
8
9
  <class_name>ZoneReport</class_name>
9
10
  <display_name>Zone Report</display_name>
10
11
  <description> This measure provides Thermal Zone level HVAC information. Output includes thermal zone equipment descriptions and details, zone sizing information for heating and cooling, and a disaggregation of the contributions of envelope and internal gains to the HVAC loads.</description>
11
12
  <modeler_description> This measure will not report uncontrolled air terminals, or zone level radiant HVAC equipment.</modeler_description>
12
- <arguments/>
13
- <outputs/>
14
- <provenances/>
13
+ <arguments />
14
+ <outputs />
15
+ <provenances />
15
16
  <tags>
16
17
  <tag>Reporting.QAQC</tag>
17
18
  </tags>
@@ -46,12 +47,6 @@
46
47
  <usage_type>readmeerb</usage_type>
47
48
  <checksum>703C9964</checksum>
48
49
  </file>
49
- <file>
50
- <filename>README.md</filename>
51
- <filetype>md</filetype>
52
- <usage_type>readme</usage_type>
53
- <checksum>C013AECE</checksum>
54
- </file>
55
50
  <file>
56
51
  <version>
57
52
  <software_program>OpenStudio</software_program>
@@ -61,7 +56,14 @@
61
56
  <filename>measure.rb</filename>
62
57
  <filetype>rb</filetype>
63
58
  <usage_type>script</usage_type>
64
- <checksum>34E82F27</checksum>
59
+ <checksum>09800C27</checksum>
60
+ </file>
61
+ <file>
62
+ <filename>README.md</filename>
63
+ <filetype>md</filetype>
64
+ <usage_type>readme</usage_type>
65
+ <checksum>0B68E96D</checksum>
65
66
  </file>
66
67
  </files>
67
68
  </measure>
69
+ <error>wrong number of arguments (given 1, expected 0)</error>
@@ -33,4 +33,4 @@
33
33
  # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
34
  # *******************************************************************************
35
35
 
36
- require_relative 'openstudio/calibration_measures'
36
+ require_relative 'openstudio/calibration'
@@ -33,5 +33,5 @@
33
33
  # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
34
  # *******************************************************************************
35
35
 
36
- require 'openstudio/calibration_measures/version'
37
- require 'openstudio/calibration_measures/extension'
36
+ require 'openstudio/calibration/version'
37
+ require 'openstudio/calibration/extension'
@@ -36,7 +36,7 @@
36
36
  require 'openstudio/extension'
37
37
 
38
38
  module OpenStudio
39
- module CalibrationMeasures
39
+ module Calibration
40
40
  class Extension < OpenStudio::Extension::Extension
41
41
  # Override parent class
42
42
  def initialize
@@ -34,7 +34,7 @@
34
34
  # *******************************************************************************
35
35
 
36
36
  module OpenStudio
37
- module CalibrationMeasures
38
- VERSION = '0.1.3'.freeze
37
+ module Calibration
38
+ VERSION = '0.3.0'.freeze
39
39
  end
40
40
  end
@@ -0,0 +1,38 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'openstudio/calibration/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'openstudio-calibration'
7
+ spec.version = OpenStudio::Calibration::VERSION
8
+ spec.authors = ['Brian Ball', 'Nicholas Long']
9
+ spec.email = ['brian.ball@nrel.gov', 'nicholas.long@nrel.gov']
10
+
11
+ spec.summary = 'Library and measures for OpenStudio Calibration'
12
+ spec.description = 'Library and measures for OpenStudio Calibration'
13
+ spec.homepage = 'https://openstudio.net'
14
+ spec.summary = 'openstudio base gem for creating generic extensions with encapsulated data and measures.'
15
+ spec.description = 'openstudio base gem for creating generic extensions with encapsulated data and measures.'
16
+ spec.metadata = {
17
+ 'bug_tracker_uri' => 'https://github.com/NREL/openstudio-calibration-gem/issues',
18
+ 'changelog_uri' => 'https://github.com/NREL/openstudio-calibration-gem/blob/develop/CHANGELOG.md',
19
+ # 'documentation_uri' => 'https://www.rubydoc.info/gems/openstudio-calibration-gem/#{gem.version}',
20
+ 'source_code_uri' => "https://github.com/NREL/openstudio-calibration-gem/tree/v#{spec.version}"
21
+ }
22
+
23
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
24
+ f.match(%r{^(test|lib.measures.*tests|spec|features)/})
25
+ end
26
+ spec.bindir = 'exe'
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ['lib']
29
+
30
+ spec.required_ruby_version = '~> 2.5.0'
31
+
32
+ spec.add_dependency 'bundler', '~> 2.1'
33
+ spec.add_dependency 'openstudio-extension', '~> 0.3.1'
34
+ spec.add_dependency 'openstudio-standards', '~> 0.2.12'
35
+
36
+ spec.add_development_dependency 'rake', '~> 13.0'
37
+ spec.add_development_dependency 'rspec', '~> 3.9'
38
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstudio-calibration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Ball
@@ -9,79 +9,80 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-04-23 00:00:00.000000000 Z
12
+ date: 2020-12-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: openstudio-extension
15
+ name: bundler
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 0.1.6
20
+ version: '2.1'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 0.1.6
27
+ version: '2.1'
28
28
  - !ruby/object:Gem::Dependency
29
- name: openstudio-standards
29
+ name: openstudio-extension
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.2.10
34
+ version: 0.3.1
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 0.2.10
41
+ version: 0.3.1
42
42
  - !ruby/object:Gem::Dependency
43
- name: bundler
43
+ name: openstudio-standards
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: '1.14'
49
- type: :development
48
+ version: 0.2.12
49
+ type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: '1.14'
55
+ version: 0.2.12
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rake
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - '='
60
+ - - "~>"
61
61
  - !ruby/object:Gem::Version
62
- version: 12.3.1
62
+ version: '13.0'
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - '='
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: 12.3.1
69
+ version: '13.0'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rspec
72
72
  requirement: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - '='
74
+ - - "~>"
75
75
  - !ruby/object:Gem::Version
76
- version: 3.7.0
76
+ version: '3.9'
77
77
  type: :development
78
78
  prerelease: false
79
79
  version_requirements: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - '='
81
+ - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: 3.7.0
84
- description: Library and measures for OpenStudio Calibration
83
+ version: '3.9'
84
+ description: openstudio base gem for creating generic extensions with encapsulated
85
+ data and measures.
85
86
  email:
86
87
  - brian.ball@nrel.gov
87
88
  - nicholas.long@nrel.gov
@@ -90,6 +91,7 @@ extensions: []
90
91
  extra_rdoc_files: []
91
92
  files:
92
93
  - ".gitignore"
94
+ - ".rubocop.yml"
93
95
  - CHANGELOG.md
94
96
  - Gemfile
95
97
  - Jenkinsfile
@@ -112,36 +114,18 @@ files:
112
114
  - lib/measures/AddMonthlyUtilityData/README.md.erb
113
115
  - lib/measures/AddMonthlyUtilityData/measure.rb
114
116
  - lib/measures/AddMonthlyUtilityData/measure.xml
115
- - lib/measures/AddMonthlyUtilityData/tests/AddMonthlyUtilityData_Test.rb
116
- - lib/measures/AddMonthlyUtilityData/tests/electric_billed_usages.json
117
- - lib/measures/AddMonthlyUtilityData/tests/gas_billed_usages.json
118
117
  - lib/measures/CalibrationReports/LICENSE.md
119
118
  - lib/measures/CalibrationReports/README.md
120
119
  - lib/measures/CalibrationReports/README.md.erb
121
120
  - lib/measures/CalibrationReports/measure.rb
122
121
  - lib/measures/CalibrationReports/measure.xml
123
122
  - lib/measures/CalibrationReports/resources/report.html.in
124
- - lib/measures/CalibrationReports/tests/CalibrationReports_Test.rb
125
- - lib/measures/CalibrationReports/tests/ExampleModel.osm
126
- - lib/measures/CalibrationReports/tests/ExampleModelNoDemandInput.osm
127
- - lib/measures/CalibrationReports/tests/ExampleModelNoGasInput.osm
128
- - lib/measures/CalibrationReports/tests/USA_CO_Golden-NREL.724666_TMY3.epw
129
123
  - lib/measures/CalibrationReportsEnhanced/LICENSE.md
130
124
  - lib/measures/CalibrationReportsEnhanced/README.md
131
125
  - lib/measures/CalibrationReportsEnhanced/README.md.erb
132
126
  - lib/measures/CalibrationReportsEnhanced/measure.rb
133
127
  - lib/measures/CalibrationReportsEnhanced/measure.xml
134
128
  - lib/measures/CalibrationReportsEnhanced/resources/report.html.in
135
- - lib/measures/CalibrationReportsEnhanced/tests/CalibrationReportsEnhanced_Test.rb
136
- - lib/measures/CalibrationReportsEnhanced/tests/ExampleModel.osm
137
- - lib/measures/CalibrationReportsEnhanced/tests/ExampleModel_FuelOil.osm
138
- - lib/measures/CalibrationReportsEnhanced/tests/USA_CO_Golden-NREL.724666_TMY3.epw
139
- - lib/measures/CalibrationReportsEnhanced21/LICENSE.md
140
- - lib/measures/CalibrationReportsEnhanced21/README.md
141
- - lib/measures/CalibrationReportsEnhanced21/README.md.erb
142
- - lib/measures/CalibrationReportsEnhanced21/measure.rb
143
- - lib/measures/CalibrationReportsEnhanced21/measure.xml
144
- - lib/measures/CalibrationReportsEnhanced21/resources/report.html.in
145
129
  - lib/measures/CoilCoolingDXSingleSpeedMultiplier/LICENSE.md
146
130
  - lib/measures/CoilCoolingDXSingleSpeedMultiplier/README.md
147
131
  - lib/measures/CoilCoolingDXSingleSpeedMultiplier/README.md.erb
@@ -247,11 +231,6 @@ files:
247
231
  - lib/measures/HardSizeHvac/README.md.erb
248
232
  - lib/measures/HardSizeHvac/measure.rb
249
233
  - lib/measures/HardSizeHvac/measure.xml
250
- - lib/measures/MaalkaMonthlyJSONUtilityData/LICENSE.md
251
- - lib/measures/MaalkaMonthlyJSONUtilityData/README.md
252
- - lib/measures/MaalkaMonthlyJSONUtilityData/README.md.erb
253
- - lib/measures/MaalkaMonthlyJSONUtilityData/measure.rb
254
- - lib/measures/MaalkaMonthlyJSONUtilityData/measure.xml
255
234
  - lib/measures/RValueOfInsulationForConstructionMultiplier/LICENSE.md
256
235
  - lib/measures/RValueOfInsulationForConstructionMultiplier/README.md
257
236
  - lib/measures/RValueOfInsulationForConstructionMultiplier/README.md.erb
@@ -300,23 +279,26 @@ files:
300
279
  - lib/measures/zone_report/measure.rb
301
280
  - lib/measures/zone_report/measure.xml
302
281
  - lib/measures/zone_report/resources/report.html.in
303
- - lib/openstudio-calibration-measures.rb
304
- - lib/openstudio/calibration_measures.rb
305
- - lib/openstudio/calibration_measures/extension.rb
306
- - lib/openstudio/calibration_measures/version.rb
307
- - openstudio-calibration-measures.gemspec
282
+ - lib/openstudio-calibration.rb
283
+ - lib/openstudio/calibration.rb
284
+ - lib/openstudio/calibration/extension.rb
285
+ - lib/openstudio/calibration/version.rb
286
+ - openstudio-calibration.gemspec
308
287
  homepage: https://openstudio.net
309
288
  licenses: []
310
- metadata: {}
289
+ metadata:
290
+ bug_tracker_uri: https://github.com/NREL/openstudio-calibration-gem/issues
291
+ changelog_uri: https://github.com/NREL/openstudio-calibration-gem/blob/develop/CHANGELOG.md
292
+ source_code_uri: https://github.com/NREL/openstudio-calibration-gem/tree/v0.3.0
311
293
  post_install_message:
312
294
  rdoc_options: []
313
295
  require_paths:
314
296
  - lib
315
297
  required_ruby_version: !ruby/object:Gem::Requirement
316
298
  requirements:
317
- - - ">="
299
+ - - "~>"
318
300
  - !ruby/object:Gem::Version
319
- version: '0'
301
+ version: 2.5.0
320
302
  required_rubygems_version: !ruby/object:Gem::Requirement
321
303
  requirements:
322
304
  - - ">="
@@ -324,8 +306,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
324
306
  version: '0'
325
307
  requirements: []
326
308
  rubyforge_project:
327
- rubygems_version: 2.4.5.1
309
+ rubygems_version: 2.7.6.2
328
310
  signing_key:
329
311
  specification_version: 4
330
- summary: Library and measures for OpenStudio Calibration
312
+ summary: openstudio base gem for creating generic extensions with encapsulated data
313
+ and measures.
331
314
  test_files: []