Class: CalibrationReportsEnhanced
- Inherits:
-
OpenStudio::Measure::ReportingMeasure
- Object
- OpenStudio::Measure::ReportingMeasure
- CalibrationReportsEnhanced
- Defined in:
- lib/measures/CalibrationReportsEnhanced/measure.rb
Overview
start the measure
Instance Method Summary collapse
-
#arguments(model = nil) ⇒ Object
define the arguments that the user will input.
-
#description ⇒ Object
human readable description.
-
#modeler_description ⇒ Object
human readable description of modeling approach.
-
#name ⇒ Object
define the name that a user will see, this method may be deprecated as the display name in PAT comes from the name field in measure.xml.
- #outputs ⇒ Object
-
#run(runner, user_arguments) ⇒ Object
define what happens when the measure is run.
Instance Method Details
#arguments(model = nil) ⇒ Object
define the arguments that the user will input
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/measures/CalibrationReportsEnhanced/measure.rb', line 28 def arguments(model = nil) args = OpenStudio::Measure::OSArgumentVector.new # Electric NMBE limit electric_nmbe_limit = OpenStudio::Measure::OSArgument.makeDoubleArgument('electric_nmbe_limit', true) electric_nmbe_limit.setDisplayName('Electric NMBE limit (%)') electric_nmbe_limit.setDefaultValue(5.0) args << electric_nmbe_limit # Electric CVRMSE limit electric_cvrmse_limit = OpenStudio::Measure::OSArgument.makeDoubleArgument('electric_cvrmse_limit', true) electric_cvrmse_limit.setDisplayName('Electric CVRMSE limit (%)') electric_cvrmse_limit.setDefaultValue(15.0) args << electric_cvrmse_limit # Gas NMBE limit gas_nmbe_limit = OpenStudio::Measure::OSArgument.makeDoubleArgument('gas_nmbe_limit', true) gas_nmbe_limit.setDisplayName('Gas NMBE limit (%)') gas_nmbe_limit.setDefaultValue(5.0) args << gas_nmbe_limit # Gas CVRMSE limit gas_cvrmse_limit = OpenStudio::Measure::OSArgument.makeDoubleArgument('gas_cvrmse_limit', true) gas_cvrmse_limit.setDisplayName('Gas CVRMSE limit (%)') gas_cvrmse_limit.setDefaultValue(15.0) args << gas_cvrmse_limit # Fuel Oil NMBE limit fuel_oil_nmbe_limit = OpenStudio::Measure::OSArgument.makeDoubleArgument('fuel_oil_nmbe_limit', true) fuel_oil_nmbe_limit.setDisplayName('Fuel Oil#2 NMBE limit (%)') fuel_oil_nmbe_limit.setDefaultValue(5.0) args << fuel_oil_nmbe_limit # Fuel Oil CVRMSE limit fuel_oil_cvrmse_limit = OpenStudio::Measure::OSArgument.makeDoubleArgument('fuel_oil_cvrmse_limit', true) fuel_oil_cvrmse_limit.setDisplayName('Fuel Oil#2 CVRMSE limit (%)') fuel_oil_cvrmse_limit.setDefaultValue(15.0) args << fuel_oil_cvrmse_limit args end |
#description ⇒ Object
human readable description
18 19 20 |
# File 'lib/measures/CalibrationReportsEnhanced/measure.rb', line 18 def description 'This measure is intended for calibibration of modeled results against user entered utility bill.' end |
#modeler_description ⇒ Object
human readable description of modeling approach
23 24 25 |
# File 'lib/measures/CalibrationReportsEnhanced/measure.rb', line 23 def modeler_description 'Measure looks at consumption for electricity and natural gas, and demand for electricity. It is inteneded to be used with no more than one gas an electric bills. Each bill can have multiple billing periods. Make sure ot use an AMY matching the utility data time frame.' end |
#name ⇒ Object
define the name that a user will see, this method may be deprecated as the display name in PAT comes from the name field in measure.xml
13 14 15 |
# File 'lib/measures/CalibrationReportsEnhanced/measure.rb', line 13 def name 'Calibration Reports Enhanced' end |
#outputs ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/measures/CalibrationReportsEnhanced/measure.rb', line 70 def outputs result = OpenStudio::Measure::OSOutputVector.new # electric consumption values result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_consumption_actual') # kWh result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_consumption_modeled') # kWh result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_consumption_cvrmse') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_consumption_nmbe') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_sum_of_squares') # kWh result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_dof') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_rmse') # kWh^0.5 # electric peak values result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_peak_demand_nmbe') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_peak_demand_actual') # kW result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_peak_demand_modeled') # kW # gas consumption values result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_consumption_actual') # therms result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_consumption_modeled') # therms result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_consumption_cvrmse') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_consumption_nmbe') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_sum_of_squares') # therms result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_dof') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_rmse') # therms^0.5 # fuel oil #2 consumption values result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_consumption_actual') # gals result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_consumption_modeled') # gals result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_consumption_cvrmse') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_consumption_nmbe') # % result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_sum_of_squares') # gals result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_dof') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_rmse') # gals^0.5 # total fuel values (gas plus electric only? not district?) result << OpenStudio::Measure::OSOutput.makeDoubleOutput('total_sum_of_squares') # kBtu result << OpenStudio::Measure::OSOutput.makeDoubleOutput('total_dof') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('total_rmse') # kBtu^0.5 # within limit check values result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_cvrmse_within_limit') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('electricity_nmbe_within_limit') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_cvrmse_within_limit') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('natural_gas_nmbe_within_limit') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_cvrmse_within_limit') # na result << OpenStudio::Measure::OSOutput.makeDoubleOutput('fuel_oil_2_nmbe_within_limit') # na result end |
#run(runner, user_arguments) ⇒ Object
define what happens when the measure is run
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 |
# File 'lib/measures/CalibrationReportsEnhanced/measure.rb', line 122 def run(runner, user_arguments) super(runner, user_arguments) # use the built-in error checking return false unless runner.validateUserArguments(arguments, user_arguments) electric_nmbe_limit = runner.getDoubleArgumentValue('electric_nmbe_limit', user_arguments) electric_cvrmse_limit = runner.getDoubleArgumentValue('electric_cvrmse_limit', user_arguments) gas_nmbe_limit = runner.getDoubleArgumentValue('gas_nmbe_limit', user_arguments) gas_cvrmse_limit = runner.getDoubleArgumentValue('gas_cvrmse_limit', user_arguments) fuel_oil_nmbe_limit = runner.getDoubleArgumentValue('fuel_oil_nmbe_limit', user_arguments) fuel_oil_cvrmse_limit = runner.getDoubleArgumentValue('fuel_oil_cvrmse_limit', user_arguments) os_version = OpenStudio::VersionString.new(OpenStudio.openStudioVersion) min_version_feature1 = OpenStudio::VersionString.new('1.2.2') # get the last model and sql file model = runner.lastOpenStudioModel if model.empty? runner.registerError('Cannot find last model.') return false end model = model.get sqlFile = runner.lastEnergyPlusSqlFile if sqlFile.empty? runner.registerError('Cannot find last sql file.') return false end sqlFile = sqlFile.get model.setSqlFile(sqlFile) # put data into variables, these are available in the local scope binding # building_name = model.getBuilding.name.get web_asset_path = OpenStudio.getSharedResourcesPath / OpenStudio::Path.new('web_assets') energy = '' calibrationGuidelines = OpenStudio::Model::UtilityBill.calibrationGuidelines energy << 'var calibrationGuidelines = [' calibrationGuidelines.each do |calibrationGuideline| energy << '"' << calibrationGuideline << '",' end energy = energy[0..-2] energy << "];\n" maxNMBE = OpenStudio::Model::UtilityBill.maxNMBE(calibrationGuidelines[0]) energy << 'var ashraeMaxNMBE = ' energy << if !maxNMBE.empty? maxNMBE.get.to_s else 'N/A' end energy << ";\n" if os_version >= min_version_feature1 runner.registerValue('ashrae_max_nmbe', maxNMBE.get, '%') end maxCVRMSE = OpenStudio::Model::UtilityBill.maxCVRMSE(calibrationGuidelines[0]) energy << 'var ashraeMaxCVRMSE = ' energy << if !maxCVRMSE.empty? maxCVRMSE.get.to_s else 'N/A' end energy << ";\n" if os_version >= min_version_feature1 runner.registerValue('ashrae_max_cvrmse', maxCVRMSE.get, '%') end maxNMBE = OpenStudio::Model::UtilityBill.maxNMBE(calibrationGuidelines[1]) energy << 'var fempMaxNMBE = ' energy << if !maxNMBE.empty? maxNMBE.get.to_s else 'N/A' end energy << ";\n" if os_version >= min_version_feature1 runner.registerValue('femp_max_nmbe', maxNMBE.get, '%') end maxCVRMSE = OpenStudio::Model::UtilityBill.maxCVRMSE(calibrationGuidelines[1]) energy << 'var fempMaxCVRMSE = ' energy << if !maxCVRMSE.empty? maxCVRMSE.get.to_s else 'N/A' end energy << ";\n" if os_version >= min_version_feature1 runner.registerValue('femp_max_cvrmse', maxCVRMSE.get, '%') end energyElec = "\t\"Electricity Consumption\":{\n\t\t\"units\":\"kWh\",\n" energyDemand = "\t\"Electricity Demand\":{\n\t\t\"units\":\"kW\",\n" energyGas = "\t\"Natural Gas Consumption\":{\n\t\t\"units\":\"therms\",\n" energyFuelOil = "\t\"Fuel Oil 2 Consumption\":{\n\t\t\"units\":\"gals\",\n" tempStartDate = '' tempEndDate = '' elecStartDate = "\t\t\t\t\"Start\":[" elecEndDate = "\t\t\t\t\"End\":[" gasStartDate = "\t\t\t\t\"Start\":[" gasEndDate = "\t\t\t\t\"End\":[" fuelOilStartDate = "\t\t\t\t\"Start\":[" fuelOilEndDate = "\t\t\t\t\"End\":[" elecActualConsumption = "\t\t\t\t\"Actual\":[" elecModelConsumption = "\t\t\t\t\"Model\":[" actualPeakDemand = "\t\t\t\t\"Actual\":[" modelPeakDemand = "\t\t\t\t\"Model\":[" gasActualConsumption = "\t\t\t\t\"Actual\":[" gasModelConsumption = "\t\t\t\t\"Model\":[" fuelOilActualConsumption = "\t\t\t\t\"Actual\":[" fuelOilModelConsumption = "\t\t\t\t\"Model\":[" elecNMBE = "\t\t\t\t\"NMBE\":[" demandNMBE = "\t\t\t\t\"NMBE\":[" gasNMBE = "\t\t\t\t\"NMBE\":[" fuelOilNMBE = "\t\t\t\t\"NMBE\":[" peakDemandUnitConversionFactor = 1.0 consumptionUnitConversionFactor = 1.0 hasElec = false hasDemand = false hasGas = false hasFuelOil = false missingData = false # must have a runPeriod runPeriod = model.runPeriod if runPeriod.empty? missingData = true runner.registerWarning('Model has no run period and cannot generate all data.') end # must have a calendarYear to generate model data yearDescription = model.yearDescription if yearDescription.empty? missingData = true runner.registerWarning('Model has no year description and cannot generate all data.') end calendarYear = yearDescription.get.calendarYear if calendarYear.empty? missingData = true runner.registerWarning('Model has no calendar year and cannot generate all data.') end all_actual_consumption_values = [] all_modeled_consumption_values = [] # sort bills by fuel type and name utilityBills = model.getUtilityBills.sort { |x, y| (x.fuelType.valueDescription + x.name.get) <=> (y.fuelType.valueDescription + y.name.get) } registered_fuel_types = [] utilityBills.each do |utilityBill| fuel_type = utilityBill.fuelType.to_s utility_bill_name = OpenStudio.toUnderscoreCase(utilityBill.name.get) utility_bill_fuel_type = OpenStudio.toUnderscoreCase(utilityBill.fuelType.valueDescription) if registered_fuel_types.include?(utility_bill_fuel_type) runner.registerWarning("More than one utility bill of fuel type #{utility_bill_fuel_type} is in the model. Skipping #{utility_bill_name}.") next else registered_fuel_types << utility_bill_fuel_type end cvrsme = 0.0 unless utilityBill.CVRMSE.empty? cvrsme = utilityBill.CVRMSE.get if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_consumption_cvrmse", cvrsme, '%') end cvrsme = format '%.2f', cvrsme end nmbe = 0.0 unless utilityBill.NMBE.empty? nmbe = utilityBill.NMBE.get if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_consumption_nmbe", nmbe, '%') end nmbe = format '%.2f', nmbe end string = '' string << "\t\t\"cvrsme\":\"" << cvrsme.to_s << "\",\n\t\t\"nmbe\":\"" << nmbe.to_s << "\",\n\t\t\t\"data\":{\n" hasDemandValues = false if !utilityBill.peakDemandUnitConversionFactor.empty? hasDemandValues = true energyElec << string energyDemand << string peakDemandUnitConversionFactor = utilityBill.peakDemandUnitConversionFactor.get elsif utility_bill_fuel_type == 'natural_gas' # NaturalGas hasDemandValues = false energyGas << string elsif utility_bill_fuel_type == 'fuel_oil_2' # FuelOil_2 hasDemandValues = false energyFuelOil << string else runner.registerWarning("#{utility_bill_fuel_type} is an unsupported fuel type.") end consumptionUnitConversionFactor = utilityBill.consumptionUnitConversionFactor period_index = 1 actual_consumption = 0.0 modeled_consumption = 0.0 actual_consumption_values = [] modeled_consumption_values = [] actual_demand = 0.0 modeled_demand = 0.0 utilityBill.billingPeriods.each do |billingPeriod| tempStartDate = '"' << billingPeriod.startDate.monthOfYear.value.to_s tempStartDate << '/' tempStartDate << billingPeriod.startDate.dayOfMonth.to_s << '"' tempEndDate = '"' << billingPeriod.endDate.monthOfYear.value.to_s tempEndDate << '/' tempEndDate << billingPeriod.endDate.dayOfMonth.to_s << '"' if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_start_date", billingPeriod.startDate.to_s) runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_end_date", billingPeriod.endDate.to_s) end if hasDemandValues elecStartDate << tempStartDate << ',' elecEndDate << tempEndDate << ',' consumption = billingPeriod.consumption if !consumption.empty? hasElec = true elecActualConsumption << consumption.get.to_s actual_consumption += consumption.get actual_consumption_values << consumption.get all_actual_consumption_values << consumption.get * utilityBill.consumptionUnitConversionFactor if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_actual", consumption.get, utilityBill.consumptionUnit) end else elecActualConsumption << '0' end elecActualConsumption << ',' consumption = billingPeriod.modelConsumption if !consumption.empty? hasElec = true temp = consumption.get / consumptionUnitConversionFactor elecModelConsumption << temp.round(2).to_s modeled_consumption += temp modeled_consumption_values << temp all_modeled_consumption_values << consumption.get if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_modeled", temp, utilityBill.consumptionUnit) end else elecModelConsumption << '0' end elecModelConsumption << ',' peakDemand = billingPeriod.peakDemand if !peakDemand.empty? hasDemand = true actualPeakDemand << peakDemand.get.to_s actual_demand = peakDemand.get if peakDemand.get > actual_demand if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_peak_demand_actual", peakDemand.get, utilityBill.peakDemandUnit.get) end else actualPeakDemand << '0' end actualPeakDemand << ',' peakDemand = billingPeriod.modelPeakDemand if !peakDemand.empty? hasDemand = true temp = peakDemand.get / 1000 temp_str = format '%.1f', temp modelPeakDemand << temp_str.to_s modeled_demand = temp if temp > modeled_demand if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_peak_demand_modeled", temp, utilityBill.peakDemandUnit.get) end else modelPeakDemand << '0' end modelPeakDemand << ',' if !billingPeriod.peakDemand.empty? && !billingPeriod.modelPeakDemand.empty? && (billingPeriod.consumption.get != 0) percent = 100 * ((billingPeriod.modelPeakDemand.get / 1000) - billingPeriod.peakDemand.get) / billingPeriod.peakDemand.get percent_str = format '%.2f', percent demandNMBE << percent_str.to_s if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_peak_demand_nmbe", percent, '%') end else demandNMBE << '0' end demandNMBE << ',' if !billingPeriod.consumption.empty? && !billingPeriod.modelConsumption.empty? && (billingPeriod.consumption.get != 0) percent = 100 * ((billingPeriod.modelConsumption.get / consumptionUnitConversionFactor) - billingPeriod.consumption.get) / billingPeriod.consumption.get percent_str = format '%.2f', percent elecNMBE << percent_str.to_s if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_nmbe", percent, '%') end else elecNMBE << '0' end elecNMBE << ',' elsif utility_bill_fuel_type == 'natural_gas' # NaturalGas gasStartDate << tempStartDate << ',' gasEndDate << tempEndDate << ',' consumption = billingPeriod.consumption if !consumption.empty? hasGas = true gasActualConsumption << consumption.get.to_s actual_consumption += consumption.get actual_consumption_values << consumption.get all_actual_consumption_values << consumption.get * utilityBill.consumptionUnitConversionFactor if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_actual", consumption.get, utilityBill.consumptionUnit) end else gasActualConsumption << '0' end gasActualConsumption << ',' consumption = billingPeriod.modelConsumption if !consumption.empty? hasGas = true temp = consumption.get / consumptionUnitConversionFactor gasModelConsumption << temp.round(2).to_s modeled_consumption += temp modeled_consumption_values << temp all_modeled_consumption_values << consumption.get if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_modeled", temp, utilityBill.consumptionUnit) end else gasModelConsumption << '0' end gasModelConsumption << ',' if !billingPeriod.consumption.empty? && !billingPeriod.modelConsumption.empty? && (billingPeriod.consumption.get != 0) percent = 100 * ((billingPeriod.modelConsumption.get / consumptionUnitConversionFactor) - billingPeriod.consumption.get) / billingPeriod.consumption.get percent_str = format '%.2f', percent gasNMBE << percent_str.to_s if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_nmbe", percent, '%') end else gasNMBE << '0' end gasNMBE << ',' elsif utility_bill_fuel_type == 'fuel_oil_2' # FuelOil_2 fuelOilStartDate << tempStartDate << ',' fuelOilEndDate << tempEndDate << ',' consumption = billingPeriod.consumption if !consumption.empty? hasFuelOil = true fuelOilActualConsumption << consumption.get.to_s actual_consumption += consumption.get actual_consumption_values << consumption.get all_actual_consumption_values << consumption.get * utilityBill.consumptionUnitConversionFactor if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_actual", consumption.get, utilityBill.consumptionUnit) end else fuelOilActualConsumption << '0' end fuelOilActualConsumption << ',' consumption = billingPeriod.modelConsumption if !consumption.empty? hasFuelOil = true temp = consumption.get / consumptionUnitConversionFactor fuelOilModelConsumption << temp.round(2).to_s modeled_consumption += temp modeled_consumption_values << temp all_modeled_consumption_values << consumption.get if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_modeled", temp, utilityBill.consumptionUnit) end else fuelOilModelConsumption << '0' # TODO: - test after https://github.com/NREL/OpenStudio/issues 3316 is fixed runner.registerWarning("In OpenStudio 2.7.0 Fuel Oil modeled consumption by billing period isn't properly represented.") end fuelOilModelConsumption << ',' if !billingPeriod.consumption.empty? && !billingPeriod.modelConsumption.empty? && (billingPeriod.consumption.get != 0) percent = 100 * ((billingPeriod.modelConsumption.get / consumptionUnitConversionFactor) - billingPeriod.consumption.get) / billingPeriod.consumption.get percent_str = format '%.2f', percent fuelOilNMBE << percent_str.to_s if os_version >= min_version_feature1 runner.registerValue("#{utility_bill_fuel_type}_period_#{period_index}_consumption_nmbe", percent, '%') end else fuelOilNMBE << '0' end fuelOilNMBE << ',' else runner.registerWarning("#{utility_bill_fuel_type} isn't a currently supported fuel type for this measure.") end period_index += 1 end next unless os_version >= min_version_feature1 if actual_consumption > 0.0 runner.registerValue("#{utility_bill_fuel_type}_consumption_actual", actual_consumption, utilityBill.consumptionUnit) runner.registerValue("#{utility_bill_fuel_type}_consumption_modeled", modeled_consumption, utilityBill.consumptionUnit) end if actual_demand > 0.0 runner.registerValue("#{utility_bill_fuel_type}_peak_demand_actual", actual_demand, utilityBill.peakDemandUnit.get) runner.registerValue("#{utility_bill_fuel_type}_peak_demand_modeled", modeled_demand, utilityBill.peakDemandUnit.get) runner.registerValue("#{utility_bill_fuel_type}_peak_demand_nmbe", 100.0 * (modeled_demand - actual_demand) / actual_demand, '%') end next unless !actual_consumption_values.empty? && (actual_consumption_values.size == modeled_consumption_values.size) sum_squares = 0.0 actual_consumption_values.each_index do |i| sum_squares += (actual_consumption_values[i] - modeled_consumption_values[i])**2 end rmse = Math.sqrt(sum_squares / actual_consumption_values.size) runner.registerValue("#{utility_bill_fuel_type}_sum_of_squares", sum_squares, utilityBill.consumptionUnit) runner.registerValue("#{utility_bill_fuel_type}_dof", actual_consumption_values.size) runner.registerValue("#{utility_bill_fuel_type}_rmse", rmse, "#{utilityBill.consumptionUnit}^0.5") end if os_version >= min_version_feature1 && (!all_actual_consumption_values.empty? && (all_actual_consumption_values.size == all_modeled_consumption_values.size)) sum_squares = 0.0 all_actual_consumption_values.each_index do |i| sum_squares += (all_actual_consumption_values[i] - all_modeled_consumption_values[i])**2 end rmse = Math.sqrt(sum_squares / all_actual_consumption_values.size) runner.registerValue('total_sum_of_squares', sum_squares, 'kBtu') runner.registerValue('total_dof', all_actual_consumption_values.size) runner.registerValue('total_rmse', rmse, 'kBtu^0.5') end elecStartDate = elecStartDate[0..-2] elecStartDate << "],\n" elecEndDate = elecEndDate[0..-2] elecEndDate << "],\n" elecActualConsumption = elecActualConsumption[0..-2] elecActualConsumption << "],\n" elecModelConsumption = elecModelConsumption[0..-2] elecModelConsumption << "],\n" actualPeakDemand = actualPeakDemand[0..-2] actualPeakDemand << "],\n" modelPeakDemand = modelPeakDemand[0..-2] modelPeakDemand << "],\n" elecNMBE = elecNMBE[0..-2] elecNMBE << "]\n" demandNMBE = demandNMBE[0..-2] demandNMBE << "]\n" energyElec << elecStartDate << elecEndDate << elecActualConsumption << elecModelConsumption << elecNMBE energyElec << "\t\t}\n" << "\t},\n" energyDemand << elecStartDate << elecEndDate << actualPeakDemand << modelPeakDemand << demandNMBE energyDemand << "\t\t}\n" << "\t},\n" gasStartDate = gasStartDate[0..-2] gasStartDate << "],\n" gasEndDate = gasEndDate[0..-2] gasEndDate << "],\n" gasActualConsumption = gasActualConsumption[0..-2] gasActualConsumption << "],\n" gasModelConsumption = gasModelConsumption[0..-2] gasModelConsumption << "],\n" gasNMBE = gasNMBE[0..-2] gasNMBE << "]\n" energyGas << gasStartDate << gasEndDate << gasActualConsumption << gasModelConsumption << gasNMBE energyGas << "\t\t}\n" << "\t},\n" fuelOilStartDate = fuelOilStartDate[0..-2] fuelOilStartDate << "],\n" fuelOilEndDate = fuelOilEndDate[0..-2] fuelOilEndDate << "],\n" fuelOilActualConsumption = fuelOilActualConsumption[0..-2] fuelOilActualConsumption << "],\n" fuelOilModelConsumption = fuelOilModelConsumption[0..-2] fuelOilModelConsumption << "],\n" fuelOilNMBE = fuelOilNMBE[0..-2] fuelOilNMBE << "]\n" energyFuelOil << fuelOilStartDate << fuelOilEndDate << fuelOilActualConsumption << fuelOilModelConsumption << fuelOilNMBE energyFuelOil << "\t\t}\n" << "\t},\n" energy << "var consumption = {\n" energy << energyElec if hasElec energy << energyDemand if hasDemand energy << energyGas if hasGas energy << energyFuelOil if hasFuelOil energy << '};' # read in template html_in_path = "#{File.dirname(__FILE__)}/resources/report.html.in" html_in_path = if File.exist?(html_in_path) html_in_path else "#{File.dirname(__FILE__)}/report.html.in" end html_in = '' File.open(html_in_path, 'r') do |file| html_in = file.read end # configure template with variable values renderer = ERB.new(html_in) html_out = renderer.result(binding) # write html file html_out_path = './report.html' File.open(html_out_path, 'w') do |file| file << html_out # make sure data is written to the disk one way or the other begin file.fsync rescue StandardError file.flush end end # closing the sql file sqlFile.close # reporting final condition if missingData == true runner.registerFinalCondition('Calibration Report was not generated successfully.') else runner.registerFinalCondition('Calibration Report generated successfully.') end # write json specific file format, everything can be derived from reported attributes result_hash = {} runner.result.attributes.each do |attribute| # skip individual period metrics next if /period_\d+_consumption/.match(attribute.name) if match_data = /(.*)_consumption_cvrmse/.match(attribute.name) cvrmse = attribute.valueAsDouble # this is a hack is_electric = /electric/i.match(match_data[1]) within_limit = false within_limit = if is_electric (cvrmse <= electric_cvrmse_limit) else (cvrmse <= gas_cvrmse_limit) end result_hash["#{match_data[1]}_cvrmse_within_limit"] = within_limit within_limit_i = if within_limit 1 else 0 end runner.registerValue("#{match_data[1]}_cvrmse_within_limit", within_limit_i) elsif match_data = /(.*)_consumption_nmbe/i.match(attribute.name) nmbe = attribute.valueAsDouble # this is a hack is_electric = /electric/i.match(match_data[1]) within_limit = false within_limit = if is_electric (nmbe.abs <= electric_nmbe_limit) else (nmbe.abs <= gas_nmbe_limit) end result_hash["#{match_data[1]}_nmbe_within_limit"] = within_limit within_limit_i = if within_limit 1 else 0 end runner.registerValue("#{match_data[1]}_nmbe_within_limit", within_limit_i) end end File.open('./report_guideline.json', 'w') do |f| f.write(result_hash.to_json) end true end |