openstudio-common-measures 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +2 -2
- data/lib/measures/ReportModelChanges/measure.xml +2 -2
- data/lib/measures/add_ems_emissions_reporting/measure.rb +25 -26
- data/lib/measures/add_ems_emissions_reporting/measure.xml +3 -3
- data/lib/measures/envelope_and_internal_load_breakdown/measure.xml +3 -3
- data/lib/measures/envelope_and_internal_load_breakdown/resources/report.html.erb +1 -0
- data/lib/measures/example_report/measure.xml +3 -3
- data/lib/measures/example_report/resources/report.html.erb +1 -0
- data/lib/measures/generic_qaqc/measure.xml +3 -3
- data/lib/measures/generic_qaqc/resources/report.html.erb +1 -0
- data/lib/measures/hvac_psychrometric_chart/measure.xml +3 -3
- data/lib/measures/hvac_psychrometric_chart/resources/report.html.erb +1 -0
- data/lib/measures/openstudio_results/measure.xml +3 -3
- data/lib/measures/openstudio_results/resources/report.html.erb +1 -0
- data/lib/measures/set_run_period/measure.xml +2 -2
- data/lib/openstudio/common_measures/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72f5781d905e2c6aed62ded29659058d7fbc5d52a1a33a8e440b44e4b522a3be
|
4
|
+
data.tar.gz: 19a23d3e3bb95f2470a699808b5f26ee4524d6192fe12eb2cd4dddf167274f35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 022bbbcc90db51554e035e0d5f5a0705003ae74216ea897d35aa35b095767e2064c6d543065cae72b2b71bd7ec6c458bf191be44ecdee6a9fd5634fab9a2a86d
|
7
|
+
data.tar.gz: 35545aec9130ec071f7f89aaebd3bb3100dff75d2d0b18ef183c267b08b47371ccf2840a9b57ce8c9eeec7dfd4d6fc90022a2245a0e748a08a5d98778598189f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# OpenStudio Common Measures Gem
|
2
2
|
|
3
|
+
## Version 0.6.1
|
4
|
+
|
5
|
+
- Fixed [#107]( https://github.com/NREL/openstudio-common-measures-gem/pull/107 ), Added natural gas emissions calculations
|
6
|
+
- Fixed [#109]( https://github.com/NREL/openstudio-common-measures-gem/pull/109 ), changed variable names to include Electricity and removed "_Var"
|
7
|
+
|
8
|
+
|
3
9
|
## Version 0.6.0
|
4
10
|
|
5
11
|
* Support for OpenStudio 3.4 (upgrade to standards gem 0.2.16, no extension gem upgrade)
|
data/README.md
CHANGED
@@ -38,7 +38,7 @@ bundle exec rake openstudio:test_with_openstudio
|
|
38
38
|
|
39
39
|
|OpenStudio Common Measures Gem|OpenStudio|Ruby|
|
40
40
|
|:--------------:|:----------:|:--------:|
|
41
|
-
| 0.6.0
|
41
|
+
| 0.6.0 - 0.6.1 | 3.4 | 2.7 |
|
42
42
|
| 0.5.0 | 3.3 | 2.7 |
|
43
43
|
| 0.4.0 - 0,4.2 | 3.2 | 2.7 |
|
44
44
|
| 0.3.0 - 0.3.2 | 3.1 | 2.5 |
|
@@ -51,7 +51,7 @@ Please review the [OpenStudio Contribution Policy](https://openstudio.net/openst
|
|
51
51
|
|
52
52
|
# Releasing
|
53
53
|
|
54
|
-
* Update `CHANGELOG.md`
|
54
|
+
* Update `CHANGELOG.md` with the `rake openstudio:change_log` command
|
55
55
|
* Run `rake openstudio:rubocop:auto_correct`
|
56
56
|
* Run `rake openstudio:update_copyright`
|
57
57
|
* Run `rake openstudio:update_measures` (this has to be done last since prior tasks alter measure files)
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>report_model_changes</name>
|
5
5
|
<uid>6d66b426-908f-4528-9fe5-523b9d2f49c5</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>50c52c2b-b884-4689-8dc6-86755d399c6f</version_id>
|
7
|
+
<version_modified>20220622T165903Z</version_modified>
|
8
8
|
<xml_checksum>1E1F8B97</xml_checksum>
|
9
9
|
<class_name>ReportModelChanges</class_name>
|
10
10
|
<display_name>ReportModelChanges</display_name>
|
@@ -307,19 +307,19 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
307
307
|
sch_file.setMinutesperItem(60)
|
308
308
|
|
309
309
|
# add EMS sensor for future schedule file
|
310
|
-
|
311
|
-
|
312
|
-
|
310
|
+
fut_sens = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value')
|
311
|
+
fut_sens.setKeyName("#{future_subregion} #{future_year} Future Hourly Emissions Sch")
|
312
|
+
fut_sens.setName('Fut_Sen')
|
313
313
|
|
314
314
|
# add EMS sensor for historical schedule file
|
315
|
-
|
316
|
-
|
317
|
-
|
315
|
+
his_sens = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value')
|
316
|
+
his_sens.setKeyName("#{hourly_historical_subregion} #{hourly_historical_year} Historical Hourly Emissions Sch")
|
317
|
+
his_sens.setName('His_Sen')
|
318
318
|
|
319
319
|
# add whole-building electricity sensor
|
320
|
-
|
321
|
-
|
322
|
-
|
320
|
+
ele_sens = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Facility Total Purchased Electricity Energy')
|
321
|
+
ele_sens.setKeyName('Whole Building')
|
322
|
+
ele_sens.setName('Ele_Sen')
|
323
323
|
|
324
324
|
ems_prgm = OpenStudio::Model::EnergyManagementSystemProgram.new(model)
|
325
325
|
ems_prgm.setName('Emissions_Calc_Prgm')
|
@@ -354,7 +354,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
354
354
|
|
355
355
|
# add future hourly EMS output variable
|
356
356
|
ems_var1 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'fut_hr')
|
357
|
-
ems_var1.setName('
|
357
|
+
ems_var1.setName('Future_Hourly_Electricity_Emissions')
|
358
358
|
ems_var1.setEMSVariableName('fut_hr')
|
359
359
|
ems_var1.setTypeOfDataInVariable('Summed')
|
360
360
|
ems_var1.setUpdateFrequency('SystemTimestep')
|
@@ -363,7 +363,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
363
363
|
|
364
364
|
# add historical hourly EMS output variable
|
365
365
|
ems_var2 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'his_hr')
|
366
|
-
ems_var2.setName('
|
366
|
+
ems_var2.setName('Historical_Hourly_Electricity_Emissions')
|
367
367
|
ems_var2.setEMSVariableName('his_hr')
|
368
368
|
ems_var2.setTypeOfDataInVariable('Summed')
|
369
369
|
ems_var2.setUpdateFrequency('SystemTimestep')
|
@@ -372,7 +372,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
372
372
|
|
373
373
|
# add future annual EMS output variable
|
374
374
|
ems_var3 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'fut_yr')
|
375
|
-
ems_var3.setName('
|
375
|
+
ems_var3.setName('Future_Annual_Electricity_Emissions')
|
376
376
|
ems_var3.setEMSVariableName('fut_yr')
|
377
377
|
ems_var3.setTypeOfDataInVariable('Summed')
|
378
378
|
ems_var3.setUpdateFrequency('SystemTimestep')
|
@@ -381,7 +381,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
381
381
|
|
382
382
|
# add historical annual EMS output variable
|
383
383
|
ems_var4 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'his_yr')
|
384
|
-
ems_var4.setName('
|
384
|
+
ems_var4.setName('Historical_Annual_Electricity_Emissions')
|
385
385
|
ems_var4.setEMSVariableName('his_yr')
|
386
386
|
ems_var4.setTypeOfDataInVariable('Summed')
|
387
387
|
ems_var4.setUpdateFrequency('SystemTimestep')
|
@@ -392,7 +392,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
392
392
|
##### add emissions intensity
|
393
393
|
# add future hourly EMS output variable
|
394
394
|
ems_var5 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'fut_hr_intensity')
|
395
|
-
ems_var5.setName('
|
395
|
+
ems_var5.setName('Future_Hourly_Electricity_Emissions_Intensity')
|
396
396
|
ems_var5.setEMSVariableName('fut_hr_intensity')
|
397
397
|
ems_var5.setTypeOfDataInVariable('Summed')
|
398
398
|
ems_var5.setUpdateFrequency('SystemTimestep')
|
@@ -401,7 +401,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
401
401
|
|
402
402
|
# add historical hourly EMS output variable
|
403
403
|
ems_var6 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'his_hr_intensity')
|
404
|
-
ems_var6.setName('
|
404
|
+
ems_var6.setName('Historical_Hourly_Electricity_Emissions_Intensity')
|
405
405
|
ems_var6.setEMSVariableName('his_hr_intensity')
|
406
406
|
ems_var6.setTypeOfDataInVariable('Summed')
|
407
407
|
ems_var6.setUpdateFrequency('SystemTimestep')
|
@@ -410,7 +410,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
410
410
|
|
411
411
|
# add future annual EMS output variable
|
412
412
|
ems_var7 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'fut_yr_intensity')
|
413
|
-
ems_var7.setName('
|
413
|
+
ems_var7.setName('Future_Annual_Electricity_Emissions_Intensity')
|
414
414
|
ems_var7.setEMSVariableName('fut_yr_intensity')
|
415
415
|
ems_var7.setTypeOfDataInVariable('Summed')
|
416
416
|
ems_var7.setUpdateFrequency('SystemTimestep')
|
@@ -419,7 +419,7 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
419
419
|
|
420
420
|
# add historical annual EMS output variable
|
421
421
|
ems_var8 = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'his_yr_intensity')
|
422
|
-
ems_var8.setName('
|
422
|
+
ems_var8.setName('Historical_Annual_Electricity_Emissions_Intensity')
|
423
423
|
ems_var8.setEMSVariableName('his_yr_intensity')
|
424
424
|
ems_var8.setTypeOfDataInVariable('Summed')
|
425
425
|
ems_var8.setUpdateFrequency('SystemTimestep')
|
@@ -427,45 +427,44 @@ class AddEMSEmissionsReporting < OpenStudio::Measure::ModelMeasure
|
|
427
427
|
ems_var8.setUnits('kg/ft2')
|
428
428
|
|
429
429
|
# add future hourly reporting output variable
|
430
|
-
out_var1 = OpenStudio::Model::OutputVariable.new('
|
430
|
+
out_var1 = OpenStudio::Model::OutputVariable.new('Future_Hourly_Electricity_Emissions', model)
|
431
431
|
out_var1.setKeyValue('EMS')
|
432
432
|
out_var1.setReportingFrequency('hourly')
|
433
433
|
|
434
434
|
# add historical hourly reporting output variable
|
435
|
-
out_var2 = OpenStudio::Model::OutputVariable.new('
|
435
|
+
out_var2 = OpenStudio::Model::OutputVariable.new('Historical_Hourly_Electricity_Emissions', model)
|
436
436
|
out_var2.setKeyValue('EMS')
|
437
437
|
out_var2.setReportingFrequency('hourly')
|
438
438
|
|
439
439
|
# add future annual reporting output variable
|
440
|
-
out_var3 = OpenStudio::Model::OutputVariable.new('
|
440
|
+
out_var3 = OpenStudio::Model::OutputVariable.new('Future_Annual_Electricity_Emissions', model)
|
441
441
|
out_var3.setKeyValue('EMS')
|
442
442
|
out_var3.setReportingFrequency('hourly')
|
443
443
|
|
444
444
|
# add historical annual reporting output variable
|
445
|
-
out_var4 = OpenStudio::Model::OutputVariable.new('
|
445
|
+
out_var4 = OpenStudio::Model::OutputVariable.new('Historical_Annual_Electricity_Emissions', model)
|
446
446
|
out_var4.setKeyValue('EMS')
|
447
447
|
out_var4.setReportingFrequency('hourly')
|
448
448
|
|
449
449
|
# add future hourly intensity reporting output variable
|
450
|
-
out_var5 = OpenStudio::Model::OutputVariable.new('
|
450
|
+
out_var5 = OpenStudio::Model::OutputVariable.new('Future_Hourly_Electricity_Emissions_Intensity', model)
|
451
451
|
out_var5.setKeyValue('EMS')
|
452
452
|
out_var5.setReportingFrequency('hourly')
|
453
453
|
|
454
454
|
# add historical hourly intensity reporting output variable
|
455
|
-
out_var6 = OpenStudio::Model::OutputVariable.new('
|
455
|
+
out_var6 = OpenStudio::Model::OutputVariable.new('Historical_Hourly_Electricity_Emissions_Intensity', model)
|
456
456
|
out_var6.setKeyValue('EMS')
|
457
457
|
out_var6.setReportingFrequency('hourly')
|
458
458
|
|
459
459
|
# add future annual intensity reporting output variable
|
460
|
-
out_var7 = OpenStudio::Model::OutputVariable.new('
|
460
|
+
out_var7 = OpenStudio::Model::OutputVariable.new('Future_Annual_Electricity_Emissions_Intensity', model)
|
461
461
|
out_var7.setKeyValue('EMS')
|
462
462
|
out_var7.setReportingFrequency('hourly')
|
463
463
|
|
464
464
|
# add historical annual intensity reporting output variable
|
465
|
-
out_var8 = OpenStudio::Model::OutputVariable.new('
|
465
|
+
out_var8 = OpenStudio::Model::OutputVariable.new('Historical_Annual_Electricity_Emissions_Intensity', model)
|
466
466
|
out_var8.setKeyValue('EMS')
|
467
467
|
out_var8.setReportingFrequency('hourly')
|
468
|
-
|
469
468
|
|
470
469
|
return true
|
471
470
|
end
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>add_ems_emissions_reporting</name>
|
5
5
|
<uid>e8fe9153-5e70-4769-afa0-6da0045aa529</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>bc9ea375-7d2a-4a45-bf7a-d63518c651f8</version_id>
|
7
|
+
<version_modified>20220622T165904Z</version_modified>
|
8
8
|
<xml_checksum>976EB6EB</xml_checksum>
|
9
9
|
<class_name>AddEMSEmissionsReporting</class_name>
|
10
10
|
<display_name>Add EMS to Report Emissions</display_name>
|
@@ -593,7 +593,7 @@
|
|
593
593
|
<filename>measure.rb</filename>
|
594
594
|
<filetype>rb</filetype>
|
595
595
|
<usage_type>script</usage_type>
|
596
|
-
<checksum>
|
596
|
+
<checksum>149C1DD7</checksum>
|
597
597
|
</file>
|
598
598
|
</files>
|
599
599
|
</measure>
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>envelope_and_internal_load_breakdown</name>
|
5
5
|
<uid>8f0e1fbb-8bc6-46e5-b6e4-db59177e2c02</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>2ff096f8-c72d-444a-a56e-f0633fba2013</version_id>
|
7
|
+
<version_modified>20220622T165903Z</version_modified>
|
8
8
|
<xml_checksum>69BA4D91</xml_checksum>
|
9
9
|
<class_name>EnvelopeAndInternalLoadBreakdown</class_name>
|
10
10
|
<display_name>Envelope and Internal Load Breakdown</display_name>
|
@@ -139,7 +139,7 @@
|
|
139
139
|
<filename>report.html.erb</filename>
|
140
140
|
<filetype>erb</filetype>
|
141
141
|
<usage_type>resource</usage_type>
|
142
|
-
<checksum>
|
142
|
+
<checksum>6F54D1FE</checksum>
|
143
143
|
</file>
|
144
144
|
</files>
|
145
145
|
</measure>
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>example_report</name>
|
5
5
|
<uid>174a6f71-3e8c-4f99-9e7a-b64f2e7535d4</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>69180469-2020-4295-b159-80a548ad4c5c</version_id>
|
7
|
+
<version_modified>20220622T165857Z</version_modified>
|
8
8
|
<xml_checksum>557BF06F</xml_checksum>
|
9
9
|
<class_name>ExampleReport</class_name>
|
10
10
|
<display_name>Example Report</display_name>
|
@@ -167,7 +167,7 @@
|
|
167
167
|
<filename>report.html.erb</filename>
|
168
168
|
<filetype>erb</filetype>
|
169
169
|
<usage_type>resource</usage_type>
|
170
|
-
<checksum>
|
170
|
+
<checksum>1C5120F7</checksum>
|
171
171
|
</file>
|
172
172
|
</files>
|
173
173
|
</measure>
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>generic_qaqc</name>
|
5
5
|
<uid>d58d6b29-69ba-4915-b907-3c2c37ddb7c7</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>d828bb8b-a051-4f95-96eb-e42035d8b7e3</version_id>
|
7
|
+
<version_modified>20220622T165904Z</version_modified>
|
8
8
|
<xml_checksum>0A3BF61C</xml_checksum>
|
9
9
|
<class_name>GenericQAQC</class_name>
|
10
10
|
<display_name>Generic QAQC</display_name>
|
@@ -773,7 +773,7 @@
|
|
773
773
|
<filename>report.html.erb</filename>
|
774
774
|
<filetype>erb</filetype>
|
775
775
|
<usage_type>resource</usage_type>
|
776
|
-
<checksum>
|
776
|
+
<checksum>1C5120F7</checksum>
|
777
777
|
</file>
|
778
778
|
</files>
|
779
779
|
</measure>
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>hvac_psychrometric_chart</name>
|
5
5
|
<uid>97213780-0727-4462-8ec0-9a6c3e475cd6</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>a29c8c23-4145-44d2-a1f2-08fb729c4f59</version_id>
|
7
|
+
<version_modified>20220622T165903Z</version_modified>
|
8
8
|
<xml_checksum>F657B621</xml_checksum>
|
9
9
|
<class_name>HVACPsychrometricChart</class_name>
|
10
10
|
<display_name>HVAC Psychrometric Chart</display_name>
|
@@ -94,7 +94,7 @@
|
|
94
94
|
<filename>report.html.erb</filename>
|
95
95
|
<filetype>erb</filetype>
|
96
96
|
<usage_type>resource</usage_type>
|
97
|
-
<checksum>
|
97
|
+
<checksum>18298D64</checksum>
|
98
98
|
</file>
|
99
99
|
</files>
|
100
100
|
</measure>
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>openstudio_results</name>
|
5
5
|
<uid>a25386cd-60e4-46bc-8b11-c755f379d916</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>1e0f1704-70fc-426f-8b79-52f67580b080</version_id>
|
7
|
+
<version_modified>20220622T165902Z</version_modified>
|
8
8
|
<xml_checksum>557BF06F</xml_checksum>
|
9
9
|
<class_name>OpenStudioResults</class_name>
|
10
10
|
<display_name>OpenStudio Results</display_name>
|
@@ -1493,7 +1493,7 @@
|
|
1493
1493
|
<filename>report.html.erb</filename>
|
1494
1494
|
<filetype>erb</filetype>
|
1495
1495
|
<usage_type>resource</usage_type>
|
1496
|
-
<checksum>
|
1496
|
+
<checksum>5F603ADE</checksum>
|
1497
1497
|
</file>
|
1498
1498
|
</files>
|
1499
1499
|
</measure>
|
@@ -3,8 +3,8 @@
|
|
3
3
|
<schema_version>3.0</schema_version>
|
4
4
|
<name>set_run_period</name>
|
5
5
|
<uid>7a84292a-3975-4ab3-9284-6edabcbe750b</uid>
|
6
|
-
<version_id>
|
7
|
-
<version_modified>
|
6
|
+
<version_id>887fa655-8bb1-40b4-bc13-7f3736fe1203</version_id>
|
7
|
+
<version_modified>20220622T165903Z</version_modified>
|
8
8
|
<xml_checksum>2AF3A68E</xml_checksum>
|
9
9
|
<class_name>SetRunPeriod</class_name>
|
10
10
|
<display_name>SetRunPeriod</display_name>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openstudio-common-measures
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Goldwasser
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-06-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -718,7 +718,7 @@ licenses: []
|
|
718
718
|
metadata:
|
719
719
|
bug_tracker_uri: https://github.com/NREL/openstudio-common-measures-gem/issues
|
720
720
|
changelog_uri: https://github.com/NREL/openstudio-common-measures-gem/blob/develop/CHANGELOG.md
|
721
|
-
source_code_uri: https://github.com/NREL/openstudio-common-measures-gem/tree/v0.6.
|
721
|
+
source_code_uri: https://github.com/NREL/openstudio-common-measures-gem/tree/v0.6.1
|
722
722
|
post_install_message:
|
723
723
|
rdoc_options: []
|
724
724
|
require_paths:
|