diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2333d50 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: Continuous Integration + +on: + pull_request: + push: + branches: + - "develop" + tags: + - '*' + +jobs: + tests: + name: Tests + container: nrel/openstudio:3.10.0 + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + - name: Setup + run: | + gem install bundler -v 2.4.10 + bundle install + - name: Run Integration Tests + run: bundle exec rspec spec/tests/integration/write_and_run_osws_spec.rb + if: always() + - name: Run Unit Tests + run: bundle exec rspec spec/tests/unit/buildingsync_reader_spec.rb + if: always() diff --git a/.gitignore b/.gitignore index e3200e0..b115f19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,56 +1,39 @@ -*.gem -*.rbc -/.config -/coverage/ -/InstalledFiles -/pkg/ -/spec/reports/ -/spec/examples.txt -/test/tmp/ -/test/version_tmp/ -/tmp/ - -# Used by dotenv library to load environment variables. -# .env - -# Ignore Byebug command history file. -.byebug_history - -## Specific to RubyMotion: -.dat* -.repl_history -build/ -*.bridgesupport -build-iPhoneOS/ -build-iPhoneSimulator/ - -## Specific to RubyMotion (use of CocoaPods): -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -# vendor/Pods/ - -## Documentation cache and generated files: -/.yardoc/ -/_yardoc/ -/doc/ -/rdoc/ - -## Environment normalization: -/.bundle/ -/vendor/bundle -/lib/bundler/man/ - -# for a library or gem, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# Gemfile.lock -# .ruby-version -# .ruby-gemset - -# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -.rvmrc - -# Used by RuboCop. Remote config files pulled in from inherit_from directive. -# .rubocop-https?--* +.bundle +vendor +spec/output +weather +.ruby-version +.python-version +Gemfile.lock +gems +_yardoc +coverage +doc +pkg +spec/reports +tmp +spec/output +SR1 +SRvt +.DS_Store +lib/data +schedules-*.csv +# rspec failure tracking +.rspec_status + +# Ignore IDE files +.idea +*.rubocop-http* + +# measures tests +lib/measures/.rubocop.yml +lib/measures/building_sync_to_openstudio/tests/output + +# OSW tests for gem +osw_test/generated_files +osw_test/run +osw_test/out.osw + +spec/files/filecomparison/in.idf +spec/files/filecomparison/in.osm +spec/weather/weather_file.json \ No newline at end of file diff --git a/.rspec b/.rspec new file mode 100644 index 0000000..a9fee71 --- /dev/null +++ b/.rspec @@ -0,0 +1,3 @@ +--format documentation +--color +--require spec_helper \ No newline at end of file diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..b8de21d --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,11 @@ +AllCops: + Exclude: + - gems/**/* + - init_templates/**/* + - lib/measures/**/resources/* + - lib/openstudio/extension/core/**/* + TargetRubyVersion: 3.2.2 + +require: rubocop-performance +inherit_from: + - http://s3.amazonaws.com/openstudio-resources/styles/rubocop_v4.yml \ No newline at end of file diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..be94e6f --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.2.2 diff --git a/BOSS.gemspec b/BOSS.gemspec new file mode 100644 index 0000000..8bb5021 --- /dev/null +++ b/BOSS.gemspec @@ -0,0 +1,38 @@ +# frozen_string_literal: true + +lib = File.expand_path('lib', __dir__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'BOSS/version' + +Gem::Specification.new do |spec| + spec.name = 'BOSS' + spec.version = BOSS::VERSION + spec.authors = ['Hannah Eslinger', 'Katherine Fleming'] + spec.email = ['hannah.eslinger@nlr.gov', 'katherine.fleming@nlr.gov'] + + spec.summary = 'Library for reading, writing, and exporting BuildingSync to OpenStudio' + spec.description = 'Library for reading, writing, and exporting BuildingSync to OpenStudio' + spec.homepage = 'https://buildingsync.net' + + # Specify which files should be added to the gem when it is released. + # The `git ls-files -z` loads the files in the RubyGem that have been added into git. + spec.files = Dir.chdir(File.expand_path(__dir__)) do + `git ls-files -z`.force_encoding('UTF-8').split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + end + spec.bindir = 'bin' + spec.executables = ['boss'] + spec.require_paths = ['lib'] + + spec.add_dependency 'bundler', '~> 2.4.10' + spec.add_dependency 'openstudio-common-measures', '~> 0.12.3' + spec.add_dependency 'openstudio-ee', '~> 0.12.5' + spec.add_dependency 'openstudio-extension', '~> 0.9.4' + spec.add_dependency 'openstudio-model-articulation', '~> 0.12.2' + spec.add_dependency 'httparty', '~> 0.23.2' + spec.add_dependency 'thor', '~> 1.5.0' + + spec.add_development_dependency 'rake', '~> 13.0' + spec.add_development_dependency 'rspec', '~> 3.13' + spec.add_development_dependency 'rubocop', '1.50' + spec.add_development_dependency 'pry', '~> 0.15.2' +end diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..ce665c3 --- /dev/null +++ b/Gemfile @@ -0,0 +1,5 @@ +source "https://rubygems.org" + +gemspec + +#gem 'openstudio-extension', path: '../OpenStudio-extension-gem' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..f75b071 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,195 @@ +PATH + remote: . + specs: + BOSS (0.1.0) + bundler (~> 2.4.10) + httparty (~> 0.23.2) + openstudio-common-measures (~> 0.12.3) + openstudio-ee (~> 0.12.5) + openstudio-extension (~> 0.9.4) + openstudio-model-articulation (~> 0.12.2) + thor (~> 1.5.0) + +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + ansi (1.6.0) + ast (2.4.3) + bcl (0.9.1) + builder (= 3.2.4) + faraday (~> 1.10.4) + minitar (~> 0.9) + openstudio_measure_tester (~> 0.5.0) + rexml (= 3.2.5) + rubyzip (~> 2.3.2) + spreadsheet (= 1.2.9) + uuid (~> 2.3.9) + yamler (= 0.1.0) + zliby (= 0.0.5) + bigdecimal (4.1.2) + builder (3.2.4) + coderay (1.1.3) + csv (3.3.5) + diff-lcs (1.6.2) + faraday (1.10.5) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-httpclient (~> 1.0) + faraday-multipart (~> 1.0) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.0) + faraday-patron (~> 1.0) + faraday-rack (~> 1.0) + faraday-retry (~> 1.0) + ruby2_keywords (>= 0.0.4) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.1) + faraday-excon (1.1.0) + faraday-httpclient (1.0.1) + faraday-multipart (1.2.0) + multipart-post (~> 2.0) + faraday-net_http (1.0.2) + faraday-net_http_persistent (1.2.0) + faraday-patron (1.0.0) + faraday-rack (1.0.0) + faraday-retry (1.0.4) + git (1.13.2) + addressable (~> 2.8) + rchardet (~> 1.8) + httparty (0.23.2) + csv + mini_mime (>= 1.0.0) + multi_xml (>= 0.5.2) + json (2.19.9) + json-schema (4.3.1) + addressable (>= 2.8) + macaddr (1.7.2) + systemu (~> 2.6.5) + matrix (0.4.3) + method_source (1.1.0) + mini_mime (1.1.5) + minitar (0.12.1) + minitest (5.14.4) + minitest-reporters (1.4.3) + ansi + builder + minitest (>= 5.0) + ruby-progressbar + multi_xml (0.9.1) + bigdecimal (>= 3.1, < 5) + multipart-post (2.4.0) + octokit (4.18.0) + faraday (>= 0.9) + sawyer (~> 0.8.0, >= 0.5.3) + openstudio-common-measures (0.12.3) + bundler (~> 2.4.10) + multipart-post (= 2.4.0) + openstudio-extension (~> 0.9.3) + openstudio-standards (= 0.8.2) + openstudio-ee (0.12.5) + bundler (~> 2.4.10) + multipart-post (= 2.4.0) + openstudio-extension (~> 0.9.3) + openstudio-standards (= 0.8.2) + openstudio-extension (0.9.4) + addressable (= 2.8.1) + bcl (~> 0.9.1) + bundler (= 2.4.10) + octokit (~> 4.18.0) + openstudio-workflow (~> 2.5.0) + openstudio_measure_tester (~> 0.5.0) + parallel (~> 1.19.1) + regexp_parser (= 2.9.0) + openstudio-model-articulation (0.12.2) + bundler (~> 2.4.10) + multipart-post (= 2.4.0) + openstudio-extension (~> 0.9.3) + openstudio-standards (= 0.8.2) + openstudio-standards (0.8.2) + tbd (~> 3) + openstudio-workflow (2.5.0) + openstudio_measure_tester (0.5.2) + git (~> 1.13.0) + minitest (~> 5.14.0) + minitest-reporters (~> 1.4.2) + parser (= 3.2.2.2) + rake (~> 13.0) + oslg (0.4.0) + osut (0.9.1) + oslg (>= 0.4.0) + parallel (1.19.2) + parser (3.2.2.2) + ast (~> 2.4.1) + pry (0.15.2) + coderay (~> 1.1) + method_source (~> 1.0) + public_suffix (5.1.1) + rainbow (3.1.1) + rake (13.4.2) + rchardet (1.10.0) + regexp_parser (2.9.0) + rexml (3.2.5) + rspec (3.13.2) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.6) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.8) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.7) + rubocop (1.50.0) + json (~> 2.3) + parallel (~> 1.10) + parser (>= 3.2.0.0) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.28.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-ole (1.2.13.1) + ruby-progressbar (1.13.0) + ruby2_keywords (0.0.5) + rubyzip (2.3.2) + sawyer (0.8.2) + addressable (>= 2.3.5) + faraday (> 0.8, < 2.0) + spreadsheet (1.2.9) + ruby-ole + systemu (2.6.5) + tbd (3.6.0) + json-schema (~> 4) + osut (~> 0) + topolys (~> 0) + thor (1.5.0) + topolys (0.6.2) + matrix + unicode-display_width (2.6.0) + uuid (2.3.9) + macaddr (~> 1.0) + yamler (0.1.0) + zliby (0.0.5) + +PLATFORMS + arm64-darwin-24 + ruby + +DEPENDENCIES + BOSS! + pry (~> 0.15.2) + rake (~> 13.0) + rspec (~> 3.13) + rubocop (= 1.50) + +BUNDLED WITH + 2.4.10 diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f9b22d0..0000000 --- a/LICENSE +++ /dev/null @@ -1,28 +0,0 @@ -BSD 3-Clause License - -Copyright (c) 2026, BuildingSync - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..7b3f184 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,13 @@ +OpenStudio(R), Copyright (c) 2008-2026, Alliance for Energy Innovation, LLC. All rights reserved. BuildingSync(R), Copyright (c) 2015-2026, Alliance for Energy Innovation, LLC. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +(1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +(3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission from the respective party. + +(4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other derivative works may not use the "OpenStudio" or "BuildingSync" trademarks, "OS", "os", "BSync" or any other confusingly similar designation without specific prior written permission from Alliance for Sustainable Energy, LLC. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES GOVERNMENT, OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/README.md b/README.md index 6299160..7d8da85 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,77 @@ # BOSS -BuildingSync OpenStudio Simulator + +BuildingSync OpenStudio Simulator (BOSS) takes in BuildingSync files, creates OpenStudio workflows from their contents, and runs those workflows to create models. + + +1. Install OpenStudio 3.10. Check installation with + ```console + 🌟 openstudio --version + 3.10.0+ce46db07de + ``` + +2. Set enviroment variable `RUBYLIB` to the location of your openstudio installation. Check env var with: + ```console + 🌟 echo $RUBYLIB + /Applications/OpenStudio-3.10.0/Ruby + ``` + +3. From local repo, bundle install + + ```bash + 🌟 bundle install + ``` + + +## OpenStudio Compatibility Version + +| OpenStudio Version | BuildingSync Version | BOSS Version | +|-------------------|---------------|----------| +| 3.10 | 2.7.0 | Initial Version | + + +## L100 Audit Workflow + +### Measures used to translate L100 Audit XML file to an OpenStudio model +[set_run_period]: https://github.com/NatLabRockies/openstudio-common-measures-gem/blob/v0.12.3/lib/measures/set_run_period/README.md +[ChangeBuildingLocation]: https://github.com/NatLabRockies/openstudio-common-measures-gem/blob/v0.12.3/lib/measures/ChangeBuildingLocation/README.md +[create_bar_from_building_type_ratios]: https://github.com/NatLabRockies/openstudio-model-articulation-gem/blob/v0.12.2/lib/measures/create_bar_from_building_type_ratios/README.md +[create_typical_building_from_model]: https://github.com/NatLabRockies/openstudio-model-articulation-gem/blob/v0.12.2/lib/measures/create_typical_building_from_model/README.md +[SetLightingLoadsByLPD]: https://github.com/NatLabRockies/openstudio-common-measures-gem/blob/v0.12.3/lib/measures/SetLightingLoadsByLPD/README.md +[set_electric_equipment_loads_by_epd]: https://github.com/NatLabRockies/openstudio-common-measures-gem/tree/v0.12.3/lib/measures/set_electric_equipment_loads_by_epd +[openstudio_results]: https://github.com/NatLabRockies/openstudio-common-measures-gem/blob/v0.12.3/lib/measures/openstudio_results/README.md + +- read `.../Facility` as `/BuildingSync/Facilities/Facility` +- read `.../Systems` as `/BuildingSync/Facilities/Facility/Systems` +- read `.../Site` as `/BuildingSync/Facilities/Facility/Sites/Site` +- read `.../Building` as `/BuildingSync/Facilities/Facility/Sites/Site/Buildings/Building` + +| Measure | Argument | set by function in BuildingSyncReader | Read from buidingsync | +|----------------------------------------|-------------------------|-------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------| +| [set_run_period] | | | | +| | timesteps_per_hour | | Hard Coded to `1` | +| | begin_date | | Hard Coded to `2019-01-01` | +| | end_date | | Hard Coded to `2019-12-31` | +| [ChangeBuildingLocation] | | | | +| | weather_file_name | get_epw_file_path | either `...Site/Address/City` and `.../Site/Address/Sate` or requirements for `get_climate_zone` | +| | climate_zone | get_climate_zone | either `.../Site/ClimateZoneType/ASHRAE/ClimateZone` or `.../Site/ClimateZoneType/CaliforniaTitle24/ClimateZone` depending on standard | +| [create_bar_from_building_type_ratios] | | | | +| | bldg_type_a | get_building_type_and_bar_division_method | `.../Building/OccupancyClassification` + requirements for `get_total_floor_area` (+ requirements for `get_floor_above_grade` lest defaulted to 1 + requirements for `get_floor_below_grade` lest defaulted to 0) | +| | total_bldg_floor_area | get_total_floor_area | at least one entry of `/FloorArea` in either `.../Site/FloorAreas/` or `.../Building/FloorAreas/`, with `FloorAreaType` of "Gross", "Conditioned", "Common", "Heated and Cooled", "Heated Only", "Cooled Only", "Conditioned above grade", or "Conditioned below grade" | +| | floor_height | get_floor_to_floor_height | at least on entry of `.../Building/Sections/Section` with entry `/FloorToFloorHeight` | +| | num_stories_above_grade | get_floor_above_grade | either `.../Building/FloorsAboveGrade` or `.../Building/ConditionedFloorsAboveGrade` and `.../Building/UnconditionedFloorsAboveGrade` | +| | num_stories_below_grade | get_floor_below_grade | either `.../Building/FloorsBelowGrade` or `.../Building/ConditionedFloorsBelowGrade` and `.../Building/UnconditionedFloorsBelowGrade` | +| | building_rotation | | | +| | template | get_standard_template | either `.../Building/YearOfLastMajorRemodel` or `.../Building/YearOfConstruction` | +| | ns_to_ew_ratio | get_aspect_ratio | `.../Building/AspectRatio` | +| | story_multiplier_method | | Hard Coded to to None | +| [create_typical_building_from_model] | | | | +| | template | get_standard_template | either `.../Building/YearOfLastMajorRemodel` or `.../Building/YearOfConstruction` | +| | system_type | get_principal_HVAC_system_type | at least one mappable entry of `.../Systems/HVACSystems/HVACSystem/PrincipalHVACSystemType` | +| | add_swh | | Hard Coded to to true | +| | add_hvac | | Hard Coded to to true | +| [SetLightingLoadsByLPD] | | | | +| | lpd | get_total_installed_power | `/InstalledPower` in ALL instances of `.../Systems/LightingSystems/LightingSystem` | +| [set_electric_equipment_loads_by_epd] | | | | +| | epd | get_total_weighted_average_load | `/WeightedAverageLoad` in ALL instances of `.../Systems/PlugLoads/PlugLoad` | +| [openstudio_results] | | | + diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..2813932 --- /dev/null +++ b/Rakefile @@ -0,0 +1,15 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +require 'bundler/gem_tasks' +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) + +require 'rubocop/rake_task' +RuboCop::RakeTask.new + +task default: :spec \ No newline at end of file diff --git a/bin/boss b/bin/boss new file mode 100755 index 0000000..c14787e --- /dev/null +++ b/bin/boss @@ -0,0 +1,5 @@ +#!/usr/bin/ ruby + +require 'boss_cli' + +boss_commands = BOSS::CLI.start(ARGV) diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..06e70d1 --- /dev/null +++ b/bin/console @@ -0,0 +1,15 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require 'bundler/setup' +require 'boss_cli' + +# You can add fixtures and/or initialization code here to make experimenting +# with your gem easier. You can also use a different console, if you like. + +# (If you use this, don't forget to add pry to your Gemfile!) +# require "pry" +# Pry.start + +require 'irb' +IRB.start(__FILE__) diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..dce67d8 --- /dev/null +++ b/bin/setup @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' +set -vx + +bundle install + +# Do any other automated setup that you need to do here diff --git a/lib/BOSS/boss.rb b/lib/BOSS/boss.rb new file mode 100644 index 0000000..fc31657 --- /dev/null +++ b/lib/BOSS/boss.rb @@ -0,0 +1,87 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +require 'json' +require 'rexml/document' + +require 'BOSS/buildingsync_reader/buildingsync_reader' +require 'BOSS/osw_arg_populator' + +require 'openstudio/common_measures' +require 'openstudio/model_articulation' +require 'openstudio/ee_measures' + +module BOSS + class Boss + # @param xml_file_path [String] + # @param output_dir [String] + # @param epw_file_path [String] if provided, full/path/to/my.epw + # @param standard_to_be_used [String] + def initialize(xml_file_path, output_dir, epw_file_path, standard_to_be_used) + @xml_file_path = xml_file_path + @output_dir = output_dir + @epw_file_path = epw_file_path + @standard_to_be_used = standard_to_be_used + + # check file exists + if !File.exist?(xml_file_path) + message = "File '#{xml_file_path}' does not exist" + OpenStudio.logFree(OpenStudio::Error, 'BOSS.initialize', message) + raise message + end + + # open file + xml_data = File.read(xml_file_path) + bsync_doc = REXML::Document.new(xml_data, ignore_whitespace_nodes: :all) + + @bsync_reader = BOSS::BuildingSyncReader.new(bsync_doc, epw_file_path, standard_to_be_used) + end + + def write_baseline_osw + # start with an empty baseline workflow + file = File.read(EMPTY_BASELINE_OSW_PATH) + baseline_osw = JSON.parse(file, symbolize_names: true) + + # populate the baseline measures + OSWArgPopulator::populate_set_run_period_args(baseline_osw, @bsync_reader) + OSWArgPopulator::populate_change_building_location_args(baseline_osw, @bsync_reader) + + OSWArgPopulator::populate_create_bar_from_building_type_ratios_args(baseline_osw, @bsync_reader) + OSWArgPopulator::populate_create_typical_building_from_model_args(baseline_osw, @bsync_reader) + + OSWArgPopulator::populate_set_lighting_loads_by_LPD_args(baseline_osw, @bsync_reader) + OSWArgPopulator::populate_set_electric_equipment_loads_by_epd_args(baseline_osw, @bsync_reader) + OSWArgPopulator::populate_openstudio_results_args(baseline_osw, @bsync_reader) + + # write to file + workflow_dir = File.join(@output_dir, 'baseline') + FileUtils.mkdir_p(workflow_dir) + File.open(File.join(workflow_dir, 'in.osw'), 'w') do |file| + file << JSON.pretty_generate(baseline_osw) + end + end + + def run_baseline_osw + # assert we have a baseline osm + baseline_osw_path = "#{@output_dir}/baseline/in.osw" + + # assert baseline exist + if !File.file?(baseline_osw_path) + error_message = ( + "this function required #{baseline_owm_path}, which does not exist. "\ + "Create #{baseline_owm_path} with `write_baseline_osw` and try again." + ) + OpenStudio.logFree(OpenStudio::Error, "BuildingSync.WorkflowMaker.assert_baseline_osw_exists", error_message) + raise StandardError, "BuildingSync.WorkflowMaker.assert_baseline_osw_exists: #{error_message}" + end + + runner = OpenStudio::Extension::Runner.new(dirname = Dir.pwd, bundle_without = [], options = { run_simulations: true, verbose: false, num_parallel: 7, max_to_run: Float::INFINITY }) + + # run the baseline osm + return runner.run_osws([baseline_osw_path]) + end + end +end diff --git a/lib/BOSS/buildingsync_reader/bcl_weather_file_downloader.rb b/lib/BOSS/buildingsync_reader/bcl_weather_file_downloader.rb new file mode 100644 index 0000000..48490dc --- /dev/null +++ b/lib/BOSS/buildingsync_reader/bcl_weather_file_downloader.rb @@ -0,0 +1,56 @@ +# frozen_string_literal: true + +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* +require 'json' +require 'fileutils' +require 'httparty' +require 'BOSS/constants' +require 'rexml/document' +require 'zip' +require 'stringio' + + +module BOSS + class BCLWeatherFileDownloader + @@base_BCL_uri = 'https://bcl.nlr.gov/api/search' + @@base_EP_uri = 'https://energyplus-weather.s3.amazonaws.com/north_and_central_america_wmo_region_4' + + def self.download_weather_file_from_city_name(city_name, state_name) + # from BCL, get closest weather station to city + response = HTTParty.get("#{@@base_BCL_uri}/location:#{city_name.gsub(' ', '+')},#{state_name}.xml?fq=component_tags:\"Weather File\"") + results = REXML::Document.new(response.body, {ignore_whitespace_nodes: :all, compress_whitespace: :all}).elements["results"] + results = results.children.filter {|x| x.name == "result"} + + if results.empty? + raise StandardError, "No weather files found within a 40 mile radius #{city_name},#{state_name} within the BCL." + end + + # just pick the closest + result = results[0] + filenames = result.elements["component/files"].children.map {|x| x.elements["filename"].text} + filename = filenames[0] + filename[".epw"] = "" + state_name = filename.split("_")[1] + + # from ep, get the zip + uri = "#{@@base_EP_uri}/USA/#{state_name}/#{filename}/#{filename}.zip" + response = HTTParty.get(uri) + + # extract and write the zip to disk + FileUtils.mkdir_p(WEATHER_DIR) + Zip::InputStream.open(::StringIO.new(response.body)) do |zip_stream| + while entry = zip_stream.get_next_entry + filepath = File.join(WEATHER_DIR, entry.name) + File.open(filepath, 'wb') { |file| file.write(entry.get_input_stream.read) } + end + end + + + return File.join(WEATHER_DIR, filename + ".epw") + end + end +end diff --git a/lib/BOSS/buildingsync_reader/building_types_by_occupancy_classification.json b/lib/BOSS/buildingsync_reader/building_types_by_occupancy_classification.json new file mode 100644 index 0000000..dfee26a --- /dev/null +++ b/lib/BOSS/buildingsync_reader/building_types_by_occupancy_classification.json @@ -0,0 +1,273 @@ + +{ + "Retail": [ + { + "standards_building_type": { + "ASHRAE90.1": "RetailStandalone", + "CaliforniaTitle24": "RtL" + }, + "bar_division_method": "Multiple Space Types - Individual Stories Sliced", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Mixed-use commercial": [ + { + "standards_building_type": { + "ASHRAE90.1": "RetailStandalone", + "CaliforniaTitle24": "RtL" + }, + "bar_division_method": "Multiple Space Types - Individual Stories Sliced", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Office": [ + { + "standards_building_type": { + "ASHRAE90.1": "SmallOffice", + "CaliforniaTitle24": "OfS" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat", + "max_floor_area": "20000" + }, + { + "standards_building_type": { + "ASHRAE90.1": "MediumOffice", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat", + "min_floor_area": "20000", + "max_floor_area": "75000" + }, + { + "standards_building_type": { + "ASHRAE90.1": "LargeOffice", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "VAV with reheat", + "min_floor_area": "75000" + } + ], + "StripMall": [ + { + "standards_building_type": { + "ASHRAE90.1": "RetailStripmall", + "CaliforniaTitle24": "RtS" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Classroom": [ + { + "standards_building_type": { + "ASHRAE90.1": "PrimarySchool", + "CaliforniaTitle24": "Epr" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat" + } + ], + "Education-Primary": [ + { + "standards_building_type": { + "ASHRAE90.1": "PrimarySchool", + "CaliforniaTitle24": "Epr" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat" + } + ], + "Education-Secondary": [ + { + "standards_building_type": { + "ASHRAE90.1": "SecondarySchool", + "CaliforniaTitle24": "ESe" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "VAV with reheat" + } + ], + "Health care-Outpatient rehabilitation": [ + { + "standards_building_type": { + "ASHRAE90.1": "Outpatient", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat" + } + ], + "Health care-Outpatient facility": [ + { + "standards_building_type": { + "ASHRAE90.1": "Outpatient", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat" + } + ], + "Health care-Outpatient non-diagnostic": [ + { + "standards_building_type": { + "ASHRAE90.1": "Outpatient", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat" + } + ], + "Health care-Outpatient surgical": [ + { + "standards_building_type": { + "ASHRAE90.1": "Outpatient", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PVAV with reheat" + } + ], + "Health care-Inpatient hospital": [ + { + "standards_building_type": { + "ASHRAE90.1": "Hospital", + "CaliforniaTitle24": "Hsp" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "VAV with reheat" + } + ], + "Lodging": [ + { + "standards_building_type": { + "ASHRAE90.1": "SmallHotel", + "CaliforniaTitle24": "Mtl" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PTAC with electric baseboard heat", + "max_floor_area": "50000" + }, + { + "standards_building_type": { + "ASHRAE90.1": "LargeHotel", + "CaliforniaTitle24": "Htl" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "VAV with reheat", + "min_floor_area": "50000" + } + ], + "Lodging with extended amenities": [ + { + "standards_building_type": { + "ASHRAE90.1": "SmallHotel", + "CaliforniaTitle24": "Mtl" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PTAC with electric baseboard heat", + "max_floor_area": "50000" + }, + { + "standards_building_type": { + "ASHRAE90.1": "LargeHotel", + "CaliforniaTitle24": "Htl" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "VAV with reheat", + "min_floor_area": "50000" + } + ], + "Food service-Fast": [ + { + "standards_building_type": { + "ASHRAE90.1": "QuickServiceRestaurant", + "CaliforniaTitle24": "RFF" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Food service-Full": [ + { + "standards_building_type": { + "ASHRAE90.1": "FullServiceRestaurant", + "CaliforniaTitle24": "RSD" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Food service": [ + { + "standards_building_type": { + "ASHRAE90.1": "FullServiceRestaurant", + "CaliforniaTitle24": "RSD" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Multifamily": [ + { + "standards_building_type": { + "ASHRAE90.1": "MidriseApartment", + "CaliforniaTitle24": "MFm" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PTAC", + "max_number_floors": "10" + }, + { + "standards_building_type": { + "ASHRAE90.1": "HighriseApartment", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-HP", + "min_number_floors": "10" + } + ], + "Multifamily with commercial": [ + { + "standards_building_type": { + "ASHRAE90.1": "MidriseApartment", + "CaliforniaTitle24": "MFm" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PTAC", + "max_number_floors": "10" + }, + { + "standards_building_type": { + "ASHRAE90.1": "HighriseApartment", + "CaliforniaTitle24": "OfL" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-HP", + "min_number_floors": "10" + } + ], + "Warehouse": [ + { + "standards_building_type": { + "ASHRAE90.1": "Warehouse", + "CaliforniaTitle24": "SUn" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat" + } + ], + "Food sales-Grocery store": [ + { + "standards_building_type": { + "ASHRAE90.1": "SuperMarket", + "CaliforniaTitle24": "Gro" + }, + "bar_division_method": "Single Space Type - Core and Perimeter", + "system_type": "PSZ-AC with gas coil heat" + } + ] +} \ No newline at end of file diff --git a/lib/BOSS/buildingsync_reader/buildingsync_reader.rb b/lib/BOSS/buildingsync_reader/buildingsync_reader.rb new file mode 100644 index 0000000..2779351 --- /dev/null +++ b/lib/BOSS/buildingsync_reader/buildingsync_reader.rb @@ -0,0 +1,313 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* +require 'pry' + +require 'openstudio-standards' +require_relative 'systems_map' + +require 'boss/buildingsync_reader/bcl_weather_file_downloader' +include Math + +module BOSS + class BuildingSyncReader + def initialize(bsync_doc, epw_file_path, standard_to_be_used) + @bsync_doc = bsync_doc + @epw_file_path = epw_file_path + @standard_to_be_used = standard_to_be_used + + # get namespace + ns = @bsync_doc.elements[1].prefix + @ns = ns.nil? || ns == ""? nil : ns + ":" + + # just some convenience attr + @facility_xml = @bsync_doc.elements["/#{@ns}BuildingSync/#{@ns}Facilities/#{@ns}Facility"] + @site_xml = @facility_xml.elements["#{@ns}Sites/#{@ns}Site"] + @building_xml = @site_xml.elements["#{@ns}Buildings/#{@ns}Building"] + + end + + # tries to get weather file from: + # 1. given weather file + # 2. city state from either building or site + # 3. climate zone from either building ot site + def get_epw_file_path + if !@epw_file_path.nil? + return @epw_file_path + end + + city, state = get_city_state + if !city.nil? && !state.nil? + return BOSS::BCLWeatherFileDownloader.download_weather_file_from_city_name(city, state) + end + + climate_zone = get_climate_zone + if !climate_zone.nil? + return OpenstudioStandards::Weather.climate_zone_representative_weather_file_path(climate_zone) + end + + message = "Could not set a weather file as neither climate zone not city/state could be found" + OpenStudio.logFree(OpenStudio::Error, 'BOSS.BuildingSyncReader.get_epw_file_path', message) + raise StandardError, 'BOSS.BuildingSyncReader.get_epw_file_path ' + message + end + + # tries to get climate zone from: + # 1. building climate of the type of the standard_to_be_used + # 2. sites climate of the type of the standard_to_be_used + def get_climate_zone + def _get_climate_zone(xml, type) + return xml.elements["#{@ns}ClimateZoneType/#{@ns}#{type}/#{@ns}ClimateZone"]&.text + end + + def _format_climate_zone(climate_zone, type) + return "ASHRAE 169-2013-#{climate_zone}" if type == "ASHRAE" + return "CEC T24-CEC#{climate_zone.gsub('Climate Zone', '').strip}" if type == "CaliforniaTitle24" + end + + preferred_type = @standard_to_be_used == ASHRAE90_1 ? "ASHRAE" : "CaliforniaTitle24" + + climate_zone = _get_climate_zone(@building_xml, preferred_type) + return _format_climate_zone(climate_zone, preferred_type) if !climate_zone.nil? + + climate_zone = _get_climate_zone(@site_xml, preferred_type) + return _format_climate_zone(climate_zone, preferred_type) if !climate_zone.nil? + end + + # tries to get city state from: + # 1. address of building + # 2. address of site + def get_city_state + def _get_city_state(xml) + return [ + xml.elements["#{@ns}Address/#{@ns}City"]&.text, + xml.elements["#{@ns}Address/#{@ns}State"]&.text + ] + end + + city, state = _get_city_state(@building_xml) + return city, state if !city.nil? && !state.nil? + + city, state = _get_city_state(@site_xml) + return city, state if !city.nil? && !state.nil? + end + + # Use buildings OccupancyClassification, total_floor_area, and total_number_floors to find a openstudio mapping in building_types_by_occupancy_classification.json + def get_building_type_and_bar_division_method + occupancy_classification = @building_xml.elements["#{@ns}OccupancyClassification"].text + total_floor_area = get_total_floor_area + total_number_floors = _get_total_number_floors + + # get possible building_types based on occupancy_classification + building_types_by_occupancy_classification = eval(File.read(BUILDING_TYPES_BY_OCCUPANCY_CLASSIFICATION_PATH)) + building_types = building_types_by_occupancy_classification[:"#{occupancy_classification}"] + + # find the one thats the right size + building_types.each do |building_type| + next if total_floor_area < (building_type[:min_floor_area]&.to_f || 0) # too small! + next if total_floor_area > (building_type[:max_floor_area]&.to_f || Float::INFINITY) # too big! + next if total_number_floors < (building_type[:min_number_floors]&.to_f || 0) # too small! + next if total_number_floors > (building_type[:max_number_floors]&.to_f || Float::INFINITY) # too big! + + return building_type[:standards_building_type][:"#{@standard_to_be_used}"], building_type[:bar_division_method] # just right! + end + end + + # tries to get total floor area from: + # 1. /FloorAreas of building + # 2. /FloorAreas of site + def get_total_floor_area + # check site floor area + puts "++ site floor areas ++" + site_floor_areas_xml = @site_xml.elements["#{@ns}FloorAreas"] + site_area = !site_floor_areas_xml.nil? ? _get_total_floor_area_from_floor_areas_xml(site_floor_areas_xml) : 0 + return site_area if site_area > 0 + + # check building floor area + building_floor_areas_xml = @building_xml.elements["#{@ns}FloorAreas"] + puts "++ building floor areas ++" + building_area = !building_floor_areas_xml.nil? ? _get_total_floor_area_from_floor_areas_xml(building_floor_areas_xml) : 0 + return building_area if building_area > 0 + + # TODO: read sections + end + + # tries to get total floor area from: + # measure expects floor area in ft2. XML floor area expected to be in ft2 as well (no conversion needed at this time) + # 1. Gross floor area + # 2. Sum of "Conditioned" + "Common" + "Heated and Cooled" + "Heated Only" + "Cooled Only" floor area + # 3. Sum of "Conditioned above grade" + "Conditioned below grade" floor area + def _get_total_floor_area_from_floor_areas_xml(floor_areas_xml) + # build a hash of the floor area in meters, by type + floor_area_by_type = {} + floor_area_by_type.default = 0 + + floor_areas_xml.elements.each("#{@ns}FloorArea") do |floor_area_xml| + floor_area_type = floor_area_xml.elements["#{@ns}FloorAreaType"].text + floor_area = floor_area_xml.elements["#{@ns}FloorAreaValue"].text.to_f + # puts " #{floor_area_type} #{floor_area} #{OpenStudio.convert(floor_area, 'ft^2', 'm^2').get}" + floor_area_by_type[floor_area_type] += floor_area + end + puts floor_area_by_type + + # first, try to get it from simply "Gross" + gross_floor_area = floor_area_by_type["Gross"] + return gross_floor_area if gross_floor_area > 0 + + # next, try to get it from "Conditioned" + "Common" + "Heated and Cooled" + "Heated Only" + "Cooled Only" + conditioned_area = floor_area_by_type["Conditioned"] + floor_area_by_type["Common"] + floor_area_by_type["Heated and Cooled"] + floor_area_by_type["Heated Only"] + floor_area_by_type["Cooled Only"] + return conditioned_area if conditioned_area > 0 + + # next, try to get it from "Conditioned above grade" + "Conditioned below grade" + conditioned_area = floor_area_by_type["Conditioned above grade"] + floor_area_by_type["Conditioned below grade"] + return conditioned_area if conditioned_area > 0 + + # thats all we got! + return 0 + end + + # tries to get total number floor from: + # 1. building's FloorsAboveGrade + # 2. building's ConditionedFloorsAboveGrade + UnconditionedFloorsAboveGrade + def get_floor_above_grade + floors_above_grade = @building_xml.elements["#{@ns}FloorsAboveGrade"]&.text + return floors_above_grade.to_f if !floors_above_grade.nil? + + conditioned_floors_above_grade = @building_xml.elements["#{@ns}ConditionedFloorsAboveGrade"]&.text + unconditioned_floors_above_grade = @building_xml.elements["#{@ns}UnconditionedFloorsAboveGrade"]&.text + if !conditioned_floors_above_grade.nil? || !unconditioned_floors_above_grade.nil? + return (conditioned_floors_above_grade.to_f || 0) + (unconditioned_floors_above_grade.to_f || 0) + end + + return nil + end + + # tries to get total number floor from: + # 1. building's FloorsBelowGrade + # 2. building's ConditionedFloorsBelowGrade + UnconditionedFloorsBelowGrade + def get_floor_below_grade + floors_below_grade = @building_xml.elements["#{@ns}FloorsBelowGrade"]&.text + return floors_below_grade.to_f if !floors_below_grade.nil? + + conditioned_floors_below_grade = @building_xml.elements["#{@ns}ConditionedFloorsBelowGrade"]&.text + unconditioned_floors_below_grade = @building_xml.elements["#{@ns}UnconditionedFloorsBelowGrade"]&.text + if !conditioned_floors_below_grade.nil? || !unconditioned_floors_below_grade.nil? + return (conditioned_floors_below_grade.to_f || 0) + (unconditioned_floors_below_grade.to_f || 0) + end + + return nil + end + + def _get_total_number_floors + floors_above_grade = get_floor_above_grade + floors_below_grade = get_floor_below_grade + + return (floors_above_grade || 1) + (floors_below_grade || 0) + end + + + # tries to get year built from: + # 1. /YearOfLastMajorRemodel of building + # 2. /YearOfConstruction of building + def get_built_year + year_of_major_remodel = @building_xml.elements["#{@ns}YearOfLastMajorRemodel"]&.text.to_f + return year_of_major_remodel if !year_of_major_remodel.nil? + + year_of_construction = @building_xml.elements["#{@ns}YearOfConstruction"]&.text.to_f + return year_of_construction if !year_of_construction.nil? + end + + # map year built and standard_to_be_used to a standard_template + def get_standard_template + built_year = get_built_year + if @standard_to_be_used == CA_TITLE24 + return "DEER Pre-1975" if built_year < 1975 + return "DEER 1985" if built_year >= 1975 && built_year < 1985 + return "DEER 1996" if built_year >= 1985 && built_year < 1996 + return "DEER 2003" if built_year >= 1996 && built_year < 2003 + return "DEER 2007" if built_year >= 2003 && built_year < 2007 + return "DEER 2011" if built_year >= 2007 && built_year < 2011 + return "DEER 2014" if built_year >= 2011 && built_year < 2014 + return "DEER 2015" if built_year >= 2014 && built_year < 2015 + return "DEER 2017" if built_year >= 2015 && built_year < 2017 + return "DEER 2020" + + elsif (@standard_to_be_used == ASHRAE90_1) + return "DOE Ref Pre-1980" if built_year < 1980 + return "DOE Ref 1980-2004" if built_year >= 1980 && built_year < 2004 + return "90.1-2007" if built_year >= 2004 && built_year < 2007 + return "90.1-2010" if built_year >= 2007 && built_year < 2010 + return "90.1-2013" if built_year >= 2010 && built_year < 2013 + return "90.1-2016" if built_year >= 2013 && built_year < 2016 + return "90.1-2019" + end + end + + def get_floor_to_floor_height + section_elements = @building_xml.elements.each("#{@ns}Sections/#{@ns}Section"){|s| s} + return nil if section_elements.nil? + floor_to_floor_heights = section_elements.map {|section_element| section_element.elements["#{@ns}FloorToFloorHeight"]&.text.to_f} + + return floor_to_floor_heights.first + end + + def get_aspect_ratio + aspect_ratio = @building_xml.elements["#{@ns}AspectRatio"]&.text + return nil if aspect_ratio.nil? + return aspect_ratio.to_f + end + + # get principal hvac system type + # @return [String] + def get_principal_HVAC_system_type + # if no hvac systems, return nil + hvac_systems = @facility_xml.elements.each("#{@ns}Systems/#{@ns}HVACSystems/#{@ns}HVACSystem") {|s| s} + return nil if hvac_systems.nil? + + # find first none nil principal_HVAC_system_type + hvac_systems = hvac_systems.reject {|s| s.class == REXML::Comment} + principal_HVAC_system_type = hvac_systems.map {|s| s.elements["#{@ns}PrincipalHVACSystemType/"]&.text} + first_principal_HVAC_system_type = principal_HVAC_system_type.find {|x| !x.nil?} + + # if none, return nil, else return mapping + return nil if first_principal_HVAC_system_type.nil? + return BuildingSyncToOSSystemMaps.get_hvac_map[first_principal_HVAC_system_type.to_s] + end + + # get sum of /Systems/LightingSystems/LightingSystem/InstalledPower + # @return [String] + def get_total_installed_power + # if no lighting systems, return nil + lighting_systems = @facility_xml.elements.each("#{@ns}Systems/#{@ns}LightingSystems/#{@ns}LightingSystem") {|s| s} + return nil if lighting_systems.nil? + + # get all all_installed_powers + lighting_systems = lighting_systems.reject {|s| s.class == REXML::Comment} + all_installed_powers = lighting_systems.map {|s| s.elements["#{@ns}InstalledPower/"]&.first&.to_s&.to_f} + + # if any nil, return nil, else return sum + return nil if all_installed_powers.length == 0 + return nil if !all_installed_powers.all? + return all_installed_powers.sum + end + + # get sum of /Systems/LightingSystems/PlugLoads/WeightedAverageLoad + # @return [String] + def get_total_weighted_average_load + # if no plug_loads, return nil + plug_loads = @facility_xml.elements.each("#{@ns}Systems/#{@ns}PlugLoads/#{@ns}PlugLoad") {|s| s} + return nil if plug_loads.nil? + + # get all weighted_average_loads + plug_loads = plug_loads.reject {|s| s.class == REXML::Comment} + all_weighted_average_loads = plug_loads.map {|s| s.elements["#{@ns}WeightedAverageLoad/"]&.text} + + + # if any nil, return nil, else return sum + return nil if all_weighted_average_loads.length == 0 + return nil if !all_weighted_average_loads.all? + return all_weighted_average_loads.map {|s| s.to_f}.sum + end + end +end diff --git a/lib/BOSS/buildingsync_reader/systems_map.rb b/lib/BOSS/buildingsync_reader/systems_map.rb new file mode 100644 index 0000000..32989a5 --- /dev/null +++ b/lib/BOSS/buildingsync_reader/systems_map.rb @@ -0,0 +1,29 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +module BuildingSyncToOSSystemMaps + def self.get_hvac_map + return { + "Packaged Terminal Air Conditioner" => "PTAC with gas coil", + "Four Pipe Fan Coil Unit" => "Fan coil chiller with boiler", + "Packaged Terminal Heat Pump" => "PTHP", + "Packaged Rooftop Air Conditioner" => "PSZ-AC with gas unit heaters", + "Packaged Rooftop Heat Pump" => "PSZ-HP", + "Packaged Rooftop VAV with Hot Water Reheat" => "PVAV with gas boiler reheat", + "Packaged Rooftop VAV with Electric Reheat" => "PVAV with PFP boxes", + "VAV with Hot Water Reheat" => "VAV chiller with gas boiler reheat", + "VAV with Electric Reheat" => "VAV chiller with PFP boxes", + "Warm Air Furnace" => "Forced air furnace", + "Ventilation Only" => "", + "Dedicated Outdoor Air System" => "", + "Water Loop Heat Pump" => "Water source heat pumps fluid cooler with boiler", + "Ground Source Heat Pump" => "Water source heat pumps with ground source heat pump", + "VRF Terminal Unit" => "VRF", + "Chilled Beam" => "", + "Other" => "" + } + end +end diff --git a/lib/BOSS/constants.rb b/lib/BOSS/constants.rb new file mode 100644 index 0000000..c770612 --- /dev/null +++ b/lib/BOSS/constants.rb @@ -0,0 +1,21 @@ +# frozen_string_literal: true + +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +SCHEMA_2_0_URL = 'https://raw.githubusercontent.com/BuildingSync/schema/v2.0/BuildingSync.xsd' +SCHEMA_2_2_0_URL = 'https://raw.githubusercontent.com/BuildingSync/schema/v2.2.0/BuildingSync.xsd' +SCHEMA_2_4_0_URL = 'https://raw.githubusercontent.com/BuildingSync/schema/v2.4.0/BuildingSync.xsd' +SCHEMA_2_7_0_URL = 'https://raw.githubusercontent.com/BuildingSync/schema/v2.7.0/BuildingSync.xsd' +EMPTY_BASELINE_OSW_PATH = File.expand_path(File.join(__dir__, '/empty_baseline.osw')) +BUILDING_TYPES_BY_OCCUPANCY_CLASSIFICATION_PATH = File.expand_path(File.join(__dir__, 'buildingsync_reader/building_types_by_occupancy_classification.json')) + +WEATHER_DIR = File.expand_path(File.join(__dir__, '../../weather')) + + +# Standards strings +ASHRAE90_1 = 'ASHRAE90.1' +CA_TITLE24 = 'CaliforniaTitle24' diff --git a/lib/BOSS/empty_baseline.osw b/lib/BOSS/empty_baseline.osw new file mode 100644 index 0000000..cfd39a8 --- /dev/null +++ b/lib/BOSS/empty_baseline.osw @@ -0,0 +1,10 @@ +{ + "seed_file": null, + "weather_file": null, + "measure_paths": [], + "file_paths": [], + "run_directory": null, + "steps": [], + "name": null, + "description": null +} \ No newline at end of file diff --git a/lib/BOSS/osw_arg_populator.rb b/lib/BOSS/osw_arg_populator.rb new file mode 100644 index 0000000..5743cb7 --- /dev/null +++ b/lib/BOSS/osw_arg_populator.rb @@ -0,0 +1,195 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +require 'openstudio/extension' + +class OSWArgPopulator + def self.populate_set_run_period_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "set_run_period", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "set_run_period", key, value) } + + # Add args + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # - timesteps_per_hour + set_measure_argument.call("timesteps_per_hour", "4") + # - begin_date + set_measure_argument.call("begin_date", "2019-01-01") + # - end_date + set_measure_argument.call("end_date", "2019-12-31") + end + + def self.populate_change_building_location_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "ChangeBuildingLocation", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "ChangeBuildingLocation", key, value) } + + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # - weather_file_name + set_measure_argument.call("weather_file_name", bsync_reader.get_epw_file_path) + # - climate_zone + set_measure_argument.call("climate_zone", bsync_reader.get_climate_zone || "Lookup From Stat File") + end + + def self.populate_create_bar_from_building_type_ratios_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "create_bar_from_building_type_ratios", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "create_bar_from_building_type_ratios", key, value) } + + building_type, bar_division_method = bsync_reader.get_building_type_and_bar_division_method + + # Add args + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # - bldg_type_a + set_measure_argument.call("bldg_type_a", building_type) + # - bldg_type_a_num_units + # - bldg_type_b + # - bldg_type_b_fract_bldg_area + # - bldg_type_b_num_units + # - bldg_type_c + # - bldg_type_c_fract_bldg_area + # - bldg_type_c_num_units + # - bldg_type_d + # - bldg_type_d_fract_bldg_area + # - bldg_type_d_num_units + # - total_bldg_floor_area + set_measure_argument.call("total_bldg_floor_area", bsync_reader.get_total_floor_area) + # - floor_height -> FloorToFloorHeight, in total building section, else set to 0, smart default. + set_measure_argument.call("floor_height", bsync_reader.get_floor_to_floor_height || 0) + # - num_stories_above_grade + set_measure_argument.call("num_stories_above_grade", bsync_reader.get_floor_above_grade || 1) + # - num_stories_below_grade + set_measure_argument.call("num_stories_below_grade", bsync_reader.get_floor_below_grade || 0) + # - building_rotation + # - template + set_measure_argument.call("template", bsync_reader.get_standard_template) + # - ns_to_ew_ratio + set_measure_argument.call("ns_to_ew_ratio", bsync_reader.get_aspect_ratio || 0) + # - wwr + # - party_wall_fraction + # set_measure_argument.call("party_wall_fraction", building.party_wall_fraction.to_f) + # - story_multiplier_method + set_measure_argument.call("story_multiplier_method", "None") # needed until os allows mutli basement + # - bar_division_method, as of right now, always use the default + # set_measure_argument.call("bar_division_method", bar_division_method) + end + + def self.populate_create_typical_building_from_model_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "create_typical_building_from_model", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "create_typical_building_from_model", key, value) } + + principal_HVAC_system_type = bsync_reader.get_principal_HVAC_system_type + if principal_HVAC_system_type.nil? + OpenStudio.logFree(OpenStudio::Warn, 'BuildingSync.OSWARGPopulator.populate_create_typical_building_from_model_args', + 'No PrincipalHVACSystemType found in the BuildingSync XML. HVAC and SWH systems will be defaulted using the Inferred system type.') + end + + # Add args + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # template + set_measure_argument.call("template", bsync_reader.get_standard_template) + # system_type + set_measure_argument.call("system_type", principal_HVAC_system_type || "Inferred") + # hvac_delivery_type + # htg_src + # clg_src + # swh_src + # kitchen_makeup + # exterior_lighting_zone + # add_constructions + # wall_construction_type + # add_space_type_loads + # add_elevators + # add_internal_mass + # add_exterior_lights + # onsite_parking_fraction + # add_exhaust + # add_swh + set_measure_argument.call("add_swh", true) + # add_thermostat + # add_hvac + set_measure_argument.call("add_hvac", true) + # add_refrigeration + # modify_wkdy_op_hrs + # wkdy_op_hrs_start_time + # wkdy_op_hrs_duration + # modify_wknd_op_hrs + # wknd_op_hrs_start_time + # wknd_op_hrs_duration + # unmet_hours_tolerance + # remove_objects + # use_upstream_args - set to false to prevent nested workflow creation + set_measure_argument.call("use_upstream_args", false) + # enable_dst + end + + def self.populate_set_lighting_loads_by_LPD_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "SetLightingLoadsByLPD", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "SetLightingLoadsByLPD", key, value) } + + # skip if no total_installed_power + total_installed_power = bsync_reader.get_total_installed_power + if total_installed_power.nil? or total_installed_power == 0 + set_measure_argument.call("__SKIP__", true) + return + end + + # Add args + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # space_type "entire building" + # lpd + set_measure_argument.call("lpd", total_installed_power * 1000 / bsync_reader.get_total_floor_area) + # add_instance_all_spaces + # material_cost + # demolition_cost + # years_until_costs_start + # demo_cost_initial_const + # expected_life + # om_cost + # om_frequency + + end + + def self.populate_set_electric_equipment_loads_by_epd_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "set_electric_equipment_loads_by_epd", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "set_electric_equipment_loads_by_epd", key, value) } + + # skip if no total_weighted_average_load + total_weighted_average_load = bsync_reader.get_total_weighted_average_load + if total_weighted_average_load.nil? or total_weighted_average_load == 0 + set_measure_argument.call("__SKIP__", true) + return + end + + # Add args + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # space_type "entire building" + # epd + set_measure_argument.call("epd", total_weighted_average_load / bsync_reader.get_total_floor_area) + # add_instance_all_spaces + # material_cost + # demolition_cost + # years_until_costs_start + # demo_cost_initial_const + # expected_life + # om_cost + # om_frequency + end + + def self.populate_openstudio_results_args(osw, bsync_reader) + osw[:steps].append({"measure_dir_name": "openstudio_results", "arguments": {}}) + set_measure_argument = lambda {| key, value | OpenStudio::Extension.set_measure_argument(osw, "openstudio_results", key, value) } + + # Add args + # - __SKIP__ + set_measure_argument.call("__SKIP__", false) + # - reg_monthly_details - enable monthly fuel breakdown for results processing + set_measure_argument.call("reg_monthly_details", true) + end +end diff --git a/lib/BOSS/version.rb b/lib/BOSS/version.rb new file mode 100644 index 0000000..3eecb01 --- /dev/null +++ b/lib/BOSS/version.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +module BOSS + VERSION = '0.1.0' +end diff --git a/lib/boss_cli.rb b/lib/boss_cli.rb new file mode 100755 index 0000000..77ba8d8 --- /dev/null +++ b/lib/boss_cli.rb @@ -0,0 +1,27 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* + +require "thor" +require 'BOSS/boss' +require 'BOSS/constants' + +module BOSS + class CLI < Thor + desc "write_baseline_osw BUILDINGSYNC_FILE", "writes a baseline osw using data from the provided Buildingsync file." + option :output_path, :required => true, :aliases => "-o", :desc => "path to where the ows gets written. Defaults to '.'" + option :epw_path, :aliases => "-w", :desc => "path to weather file. If not given, one is derived from the BUILDINGSYNC_FILE." + option :schema_version, :aliases => "-v", :desc => "version of buildinsync to use. defaults to 2.7" + option :run, :aliases => "-r", :desc => "if set, will also run the baseline" + def write_osw(buildingsync_file) + boss = BOSS::Boss.new(buildingsync_file, options[:output_path], options[:epw_path], options[:schema_version] || ASHRAE90_1) + boss.write_baseline_osw + if options[:run] + puts "running!" + boss.run_baseline_osw + end + end + end +end diff --git a/spec/files/v2.7.0/179D_Example_Building.xml b/spec/files/v2.7.0/179D_Example_Building.xml new file mode 100644 index 0000000..09616e9 --- /dev/null +++ b/spec/files/v2.7.0/179D_Example_Building.xml @@ -0,0 +1,3116 @@ + + + + + + + + + + 179D Example Building + Example 179D building for demonstration purposes only. + + + Custom + City Custom Building ID + 24776e64 + + + Custom + Portfolio Manager Building ID + 123456 + + + UBID + 76VVWGXR+RJ4-8-7-7-7 + + + Custom + Audit Template Building ID + 46819 + + + + + 3C + + + Climate Zone 3 + + + + FRCC + + Office + false + false + false + + + Gross + 240000.0 + + + 2004 + + + Whole building + + + Space function + Office + + + Gross + 240000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + true + + + Conditioned Floors Below Grade Is Not Applicable + true + + + Floor Area For Cooled only Is Not Applicable + true + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + true + + + Floor Area For Heated and Cooled Is Not Applicable + true + + + Metering Year Start Dates + 2023-05-01,2022-05-01 + + + Multi Tenant Is Not Applicable + false + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + false + + + Premises Identifier For Atlanta Building ID Is Not Applicable + false + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + true + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + true + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + true + + + Year Of Last Major Remodel Is Not Applicable + true + + + + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + false + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + false + + + Plug Load Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + Plug Load Total Power Is Not Applicable + false + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + + + + + Air seal envelope + + + + Entire building + Measure 1 + Add weather stripping and spray foam to better seal building envelop, + reduce infiltration and improve occupant comfort. This is will also help to maintain + space temperature in the building atrium + + 7800 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 560.0 + + + Fuel oil no 4 + Gallons + 75.0 + + + + 11850.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + true + + + Rebate Available + false + + + EEBRP Measure Category + Building Envelope + + + Equipment Is Not Applicable + false + + + + + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 2 + Replace existing non-LED lamps/ fixtures with new LED lamps/ fixtures + + 48500 + + + Electricity + kWh + 335000.0 + + + Natural gas + therms + -220.0 + + + Fuel oil no 4 + Gallons + -15.0 + + + + 180000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + EEBRP Measure Category + Interior Lighting System + + + Equipment Is Not Applicable + false + + + + + + + + + + + + + Install SHW controls + + + + Entire building + Measure 3 + Install Domestic Hot Water Recirculation Flow Control - Domestic hot + water (DHW) is supplied through the existing heating boiler. Constant operation of the + recirculation pump and the exposed DHW piping in the apartments result in significant + heat loss through those pipes. Bright Power recommends installing a DHW recirculation + demand control strategy at the property + + 14500 + + + Electricity + kWh + 2400.0 + + + Natural gas + therms + 120.0 + + + Fuel oil no 4 + Gallons + 30.0 + + + + 59500.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + true + + + Rebate Available + false + + + EEBRP Measure Category + Heating, Cooling, Ventilation, and Hot Water Systems + + + Equipment Is Not Applicable + false + + + + + + + + + + + + + Install heat pump SHW system + + + + Entire building + Measure 4 + Install an air source heat pump to create hot water for the domestic + hot water + + 25000 + + + Electricity + kWh + 45600.0 + + + Natural gas + therms + 350.0 + + + Fuel oil no 4 + Gallons + 35.0 + + + + 250000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + true + + + Rebate Available + false + + + EEBRP Measure Category + Heating, Cooling, Ventilation, and Hot Water Systems + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + Current + + + + + + All end uses + Site + 0.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity + 84.2 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity + 55.7 + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + false + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 0.0 + 0.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Fuel oil no 4 + Current + + + + + + Fuel oil no 4 + Site + Gallons + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Deliveries - Fuel oil no 4 + Current + + + + + + Fuel oil no 4 + Site + Gallons + Not shared + + + + + Point + Energy + 2022-05-01T00:00:00+00:00 + 2022-05-02T00:00:00+00:00 + Day + 112.0 + + + + Point + Energy + 2022-06-01T00:00:00+00:00 + 2022-06-02T00:00:00+00:00 + Day + 112.0 + + + + Point + Energy + 2022-07-01T00:00:00+00:00 + 2022-07-02T00:00:00+00:00 + Day + 112.0 + + + + Point + Energy + 2022-08-01T00:00:00+00:00 + 2022-08-02T00:00:00+00:00 + Day + 113.0 + + + + Point + Energy + 2022-09-01T00:00:00+00:00 + 2022-09-02T00:00:00+00:00 + Day + 113.0 + + + + Point + Energy + 2022-10-01T00:00:00+00:00 + 2022-10-02T00:00:00+00:00 + Day + 116.0 + + + + Point + Energy + 2022-11-01T00:00:00+00:00 + 2022-11-02T00:00:00+00:00 + Day + 116.0 + + + + Point + Energy + 2022-12-01T00:00:00+00:00 + 2022-12-02T00:00:00+00:00 + Day + 123.0 + + + + Point + Energy + 2023-01-01T00:00:00+00:00 + 2023-01-02T00:00:00+00:00 + Day + 122.0 + + + + Point + Energy + 2023-02-01T00:00:00+00:00 + 2023-02-02T00:00:00+00:00 + Day + 121.0 + + + + Point + Energy + 2023-03-01T00:00:00+00:00 + 2023-03-02T00:00:00+00:00 + Day + 121.0 + + + + Point + Energy + 2023-04-01T00:00:00+00:00 + 2023-04-02T00:00:00+00:00 + Day + 121.0 + + + + Point + Energy + 2023-05-01T00:00:00+00:00 + 2023-05-02T00:00:00+00:00 + Day + 76.0 + + + + Point + Energy + 2023-06-01T00:00:00+00:00 + 2023-06-02T00:00:00+00:00 + Day + 76.0 + + + + Point + Energy + 2023-07-01T00:00:00+00:00 + 2023-07-02T00:00:00+00:00 + Day + 76.0 + + + + Point + Energy + 2023-08-01T00:00:00+00:00 + 2023-08-02T00:00:00+00:00 + Day + 76.0 + + + + Point + Energy + 2023-09-01T00:00:00+00:00 + 2023-09-02T00:00:00+00:00 + Day + 76.0 + + + + Point + Energy + 2023-10-01T00:00:00+00:00 + 2023-10-02T00:00:00+00:00 + Day + 74.0 + + + + Point + Energy + 2023-11-01T00:00:00+00:00 + 2023-11-02T00:00:00+00:00 + Day + 74.0 + + + + Point + Energy + 2023-12-01T00:00:00+00:00 + 2023-12-02T00:00:00+00:00 + Day + 69.0 + + + + Point + Energy + 2024-01-01T00:00:00+00:00 + 2024-01-02T00:00:00+00:00 + Day + 55.0 + + + + Point + Energy + 2024-02-01T00:00:00+00:00 + 2024-02-02T00:00:00+00:00 + Day + 35.0 + + + + Point + Energy + 2024-03-01T00:00:00+00:00 + 2024-03-02T00:00:00+00:00 + Day + 21.0 + + + + Point + Energy + 2024-04-01T00:00:00+00:00 + 2024-04-02T00:00:00+00:00 + Day + 21.0 + + + + Point + Energy + 2024-05-01T00:00:00+00:00 + 2024-05-02T00:00:00+00:00 + Day + 25.0 + + + + Point + Energy + 2024-06-01T00:00:00+00:00 + 2024-06-02T00:00:00+00:00 + Day + 5444.0 + + + + + + All end uses + Site + 0.0 + 1.23114208 + + + Linked Time Series ID + TimeSeriesType-45095800 + + + + + All end uses + Site + 0.0 + 1.23114208 + + + Linked Time Series ID + TimeSeriesType-45095840 + + + + + All end uses + Site + 0.0 + 1.23114208 + + + Linked Time Series ID + TimeSeriesType-45095880 + + + + + All end uses + Site + 0.0 + 1.24213442 + + + Linked Time Series ID + TimeSeriesType-45095920 + + + + + All end uses + Site + 0.0 + 1.24213442 + + + Linked Time Series ID + TimeSeriesType-45095960 + + + + + All end uses + Site + 0.0 + 1.2751114399999999 + + + Linked Time Series ID + TimeSeriesType-45096000 + + + + + All end uses + Site + 0.0 + 1.2751114399999999 + + + Linked Time Series ID + TimeSeriesType-45096040 + + + + + All end uses + Site + 0.0 + 1.35205782 + + + Linked Time Series ID + TimeSeriesType-45096080 + + + + + All end uses + Site + 0.0 + 1.34106548 + + + Linked Time Series ID + TimeSeriesType-45096120 + + + + + All end uses + Site + 0.0 + 1.3300731399999999 + + + Linked Time Series ID + TimeSeriesType-45096160 + + + + + All end uses + Site + 0.0 + 1.3300731399999999 + + + Linked Time Series ID + TimeSeriesType-45096200 + + + + + All end uses + Site + 0.0 + 1.3300731399999999 + + + Linked Time Series ID + TimeSeriesType-45096240 + + + + + All end uses + Site + 0.0 + 0.83541784 + + + Linked Time Series ID + TimeSeriesType-45096280 + + + + + All end uses + Site + 0.0 + 0.83541784 + + + Linked Time Series ID + TimeSeriesType-45096320 + + + + + All end uses + Site + 0.0 + 0.83541784 + + + Linked Time Series ID + TimeSeriesType-45096360 + + + + + All end uses + Site + 0.0 + 0.83541784 + + + Linked Time Series ID + TimeSeriesType-45096400 + + + + + All end uses + Site + 0.0 + 0.83541784 + + + Linked Time Series ID + TimeSeriesType-45096440 + + + + + All end uses + Site + 0.0 + 0.8134331599999999 + + + Linked Time Series ID + TimeSeriesType-45096480 + + + + + All end uses + Site + 0.0 + 0.8134331599999999 + + + Linked Time Series ID + TimeSeriesType-45096520 + + + + + All end uses + Site + 0.0 + 0.75847146 + + + Linked Time Series ID + TimeSeriesType-45096560 + + + + + All end uses + Site + 0.0 + 0.6045786999999999 + + + Linked Time Series ID + TimeSeriesType-45096600 + + + + + All end uses + Site + 0.0 + 0.3847319 + + + Linked Time Series ID + TimeSeriesType-45096640 + + + + + All end uses + Site + 0.0 + 0.23083914 + + + Linked Time Series ID + TimeSeriesType-45096680 + + + + + All end uses + Site + 0.0 + 0.23083914 + + + Linked Time Series ID + TimeSeriesType-45096720 + + + + + All end uses + Site + 0.0 + 0.27480849999999996 + + + Linked Time Series ID + TimeSeriesType-45096760 + + + + + All end uses + Site + 0.0 + 59.84229896 + + + Linked Time Series ID + TimeSeriesType-45096800 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Deliveries + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2022-05-01T00:00:00+00:00 + 2022-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-06-01T00:00:00+00:00 + 2022-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-07-01T00:00:00+00:00 + 2022-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-08-01T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-09-01T00:00:00+00:00 + 2022-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-10-01T00:00:00+00:00 + 2022-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-11-01T00:00:00+00:00 + 2022-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2022-12-01T00:00:00+00:00 + 2023-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-01-01T00:00:00+00:00 + 2023-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-02-01T00:00:00+00:00 + 2023-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-03-01T00:00:00+00:00 + 2023-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-04-01T00:00:00+00:00 + 2023-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-05-01T00:00:00+00:00 + 2023-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-06-01T00:00:00+00:00 + 2023-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-07-01T00:00:00+00:00 + 2023-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-08-01T00:00:00+00:00 + 2023-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-09-01T00:00:00+00:00 + 2023-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-10-01T00:00:00+00:00 + 2023-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-11-01T00:00:00+00:00 + 2023-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-12-01T00:00:00+00:00 + 2024-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-01-01T00:00:00+00:00 + 2024-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-02-01T00:00:00+00:00 + 2024-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-03-01T00:00:00+00:00 + 2024-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-04-01T00:00:00+00:00 + 2024-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-05-01T00:00:00+00:00 + 2024-06-01T00:00:00+00:00 + Other + 0.0 + + + + + + All end uses + Site + 442698.0 + 0.0 + 163.9191866512803 + + + Linked Time Series ID + TimeSeriesType-45096900 + + + + + All end uses + Site + 435686.0 + 0.0 + 161.32283126499266 + + + Linked Time Series ID + TimeSeriesType-45097020 + + + + + All end uses + Site + 433845.0 + 0.0 + 160.6411583804867 + + + Linked Time Series ID + TimeSeriesType-45097100 + + + + + All end uses + Site + 433568.0 + 0.0 + 160.53859271562624 + + + Linked Time Series ID + TimeSeriesType-45097180 + + + + + All end uses + Site + 436622.0 + 0.0 + 161.6694069411999 + + + Linked Time Series ID + TimeSeriesType-45097260 + + + + + All end uses + Site + 445260.0 + 0.0 + 164.86782648295016 + + + Linked Time Series ID + TimeSeriesType-45097340 + + + + + All end uses + Site + 456531.0 + 0.0 + 169.0411752506125 + + + Linked Time Series ID + TimeSeriesType-45097420 + + + + + All end uses + Site + 460626.0 + 0.0 + 170.55744383401924 + + + Linked Time Series ID + TimeSeriesType-45097500 + + + + + All end uses + Site + 453833.0 + 0.0 + 168.04217826940825 + + + Linked Time Series ID + TimeSeriesType-45097580 + + + + + All end uses + Site + 443139.0 + 0.0 + 164.08247711410874 + + + Linked Time Series ID + TimeSeriesType-45097660 + + + + + All end uses + Site + 435632.0 + 0.0 + 161.30283651444222 + + + Linked Time Series ID + TimeSeriesType-45097740 + + + + + All end uses + Site + 433848.0 + 0.0 + 160.64226919996173 + + + Linked Time Series ID + TimeSeriesType-45097820 + + + + + All end uses + Site + 260141.0 + 0.0 + 96.32322968400742 + + + Linked Time Series ID + TimeSeriesType-45097900 + + + + + All end uses + Site + 261973.0 + 0.0 + 97.00157011008827 + + + Linked Time Series ID + TimeSeriesType-45097980 + + + + + All end uses + Site + 267156.0 + 0.0 + 98.9206958897701 + + + Linked Time Series ID + TimeSeriesType-45098060 + + + + + All end uses + Site + 274003.0 + 0.0 + 101.45595620493148 + + + Linked Time Series ID + TimeSeriesType-45098140 + + + + + All end uses + Site + 276378.0 + 0.0 + 102.33535495599156 + + + Linked Time Series ID + TimeSeriesType-45098220 + + + + + All end uses + Site + 271769.0 + 0.0 + 100.62876596919752 + + + Linked Time Series ID + TimeSeriesType-45098300 + + + + + All end uses + Site + 264488.0 + 0.0 + 97.9328071033161 + + + Linked Time Series ID + TimeSeriesType-45098380 + + + + + All end uses + Site + 259808.0 + 0.0 + 96.19992872227984 + + + Linked Time Series ID + TimeSeriesType-45098460 + + + + + All end uses + Site + 258912.0 + 0.0 + 95.86816397240621 + + + Linked Time Series ID + TimeSeriesType-45098540 + + + + + All end uses + Site + 261959.0 + 0.0 + 96.9963862858715 + + + Linked Time Series ID + TimeSeriesType-45098620 + + + + + All end uses + Site + 267680.0 + 0.0 + 99.11471902474082 + + + Linked Time Series ID + TimeSeriesType-45098700 + + + + + All end uses + Site + 272259.0 + 0.0 + 100.81019981678465 + + + Linked Time Series ID + TimeSeriesType-45098780 + + + + + All end uses + Site + 272379.0 + 0.0 + 100.85463259578557 + + + Linked Time Series ID + TimeSeriesType-45098860 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2022-05-01T00:00:00+00:00 + 2022-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-06-01T00:00:00+00:00 + 2022-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-07-01T00:00:00+00:00 + 2022-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-08-01T00:00:00+00:00 + 2022-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-09-01T00:00:00+00:00 + 2022-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-10-01T00:00:00+00:00 + 2022-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-11-01T00:00:00+00:00 + 2022-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2022-12-01T00:00:00+00:00 + 2023-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-01-01T00:00:00+00:00 + 2023-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-02-01T00:00:00+00:00 + 2023-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-03-01T00:00:00+00:00 + 2023-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-04-01T00:00:00+00:00 + 2023-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-05-01T00:00:00+00:00 + 2023-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-06-01T00:00:00+00:00 + 2023-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-07-01T00:00:00+00:00 + 2023-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-08-01T00:00:00+00:00 + 2023-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-09-01T00:00:00+00:00 + 2023-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-10-01T00:00:00+00:00 + 2023-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-11-01T00:00:00+00:00 + 2023-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-12-01T00:00:00+00:00 + 2024-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-01-01T00:00:00+00:00 + 2024-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-02-01T00:00:00+00:00 + 2024-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-03-01T00:00:00+00:00 + 2024-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-04-01T00:00:00+00:00 + 2024-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-05-01T00:00:00+00:00 + 2024-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-06-01T00:00:00+00:00 + 2024-07-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 1095.0 + 0.0 + 5.815545 + + + Linked Time Series ID + TimeSeriesType-45096980 + + + + + All end uses + Site + 1095.0 + 0.0 + 5.815545 + + + Linked Time Series ID + TimeSeriesType-45097060 + + + + + All end uses + Site + 1095.0 + 0.0 + 5.815545 + + + Linked Time Series ID + TimeSeriesType-45097140 + + + + + All end uses + Site + 1096.0 + 0.0 + 5.820856 + + + Linked Time Series ID + TimeSeriesType-45097220 + + + + + All end uses + Site + 1096.0 + 0.0 + 5.820856 + + + Linked Time Series ID + TimeSeriesType-45097300 + + + + + All end uses + Site + 1128.0 + 0.0 + 5.990808 + + + Linked Time Series ID + TimeSeriesType-45097380 + + + + + All end uses + Site + 1126.0 + 0.0 + 5.980186 + + + Linked Time Series ID + TimeSeriesType-45097460 + + + + + All end uses + Site + 1200.0 + 0.0 + 6.3732 + + + Linked Time Series ID + TimeSeriesType-45097540 + + + + + All end uses + Site + 1186.0 + 0.0 + 6.298845999999999 + + + Linked Time Series ID + TimeSeriesType-45097620 + + + + + All end uses + Site + 1179.0 + 0.0 + 6.2616689999999995 + + + Linked Time Series ID + TimeSeriesType-45097700 + + + + + All end uses + Site + 1179.0 + 0.0 + 6.2616689999999995 + + + Linked Time Series ID + TimeSeriesType-45097780 + + + + + All end uses + Site + 1179.0 + 0.0 + 6.2616689999999995 + + + Linked Time Series ID + TimeSeriesType-45097860 + + + + + All end uses + Site + 884.0 + 0.0 + 4.694924 + + + Linked Time Series ID + TimeSeriesType-45097940 + + + + + All end uses + Site + 884.0 + 0.0 + 4.694924 + + + Linked Time Series ID + TimeSeriesType-45098020 + + + + + All end uses + Site + 884.0 + 0.0 + 4.694924 + + + Linked Time Series ID + TimeSeriesType-45098100 + + + + + All end uses + Site + 883.0 + 0.0 + 4.689613 + + + Linked Time Series ID + TimeSeriesType-45098180 + + + + + All end uses + Site + 883.0 + 0.0 + 4.689613 + + + Linked Time Series ID + TimeSeriesType-45098260 + + + + + All end uses + Site + 859.0 + 0.0 + 4.562149 + + + Linked Time Series ID + TimeSeriesType-45098340 + + + + + All end uses + Site + 860.0 + 0.0 + 4.56746 + + + Linked Time Series ID + TimeSeriesType-45098420 + + + + + All end uses + Site + 804.0 + 0.0 + 4.2700439999999995 + + + Linked Time Series ID + TimeSeriesType-45098500 + + + + + All end uses + Site + 646.0 + 0.0 + 3.430906 + + + Linked Time Series ID + TimeSeriesType-45098580 + + + + + All end uses + Site + 411.0 + 0.0 + 2.182821 + + + Linked Time Series ID + TimeSeriesType-45098660 + + + + + All end uses + Site + 246.0 + 0.0 + 1.306506 + + + Linked Time Series ID + TimeSeriesType-45098740 + + + + + All end uses + Site + 244.0 + 0.0 + 1.295884 + + + Linked Time Series ID + TimeSeriesType-45098820 + + + + + All end uses + Site + 287.0 + 0.0 + 1.5242569999999998 + + + Linked Time Series ID + TimeSeriesType-45098900 + + + + + All end uses + Site + 39744.0 + 0.0 + 211.08038399999998 + + + Linked Time Series ID + TimeSeriesType-45098940 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + Natural gas + Site + therms + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + Fuel oil no 4 + Site + Gallons + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + + + 2023-05-01 + Custom + Completion of Pre-retrofit Audit + + + 2024-05-01 + Custom + Completion of Post-retrofit Audit + + + 2022-05-01 + Custom + Pre-retrofit Year Start + + + 2004-01-01 + Custom + Building Originally Placed in Service + + + 2023-06-01 + Custom + Qualified Retrofit Plan Established + + + Initial filing + false + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + true + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + true + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + true + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + true + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + 179D Tax Deduction Report + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/ASHRAE 211 Export.xml b/spec/files/v2.7.0/ASHRAE 211 Export.xml new file mode 100644 index 0000000..891a302 --- /dev/null +++ b/spec/files/v2.7.0/ASHRAE 211 Export.xml @@ -0,0 +1,2707 @@ + + + + + + + +
+ + + 9999 Tulie Circle + + + Atlanta + GA + 99999 + 9999 +
+ + + ASHRAE 211 Export: Test Building Input Data + Historic landmark status. Spaces excluded from gross floor area: Parking + Agricultural estate + + + Adults + 99999 + + + Leased + + + Gross + 198000 + + + Conditioned + 100000 + + + Heated only + 50000 + + + Cooled only + 80000 + + + 1888 + 2001 + 2010-07-01 + 2001 + +
+ Wholebuilding + 1888 + U-Shape + + + + 5000 + + + 0.5 + + + + + + + 2000 + + + + + + + 1000 + + + + 3 + 1 + + + + + A + Office + + + Adults + 9999 + + + + + Gross + 1000000 + + + Conditioned + 500000 + + + + + Original intented use + Courthouse + + + Number of PC's and/or Laptops + 9999 + + + Use (hours/week) + 60 + + + Use (weeks/year) + 52 + + + Principle HVAC Type + VAV RH + + + Principle Lighting Type + 3-Lamp T8 + + + + + B + Other + + + Adults + 9999 + + + + + Gross + 1000000 + + + Conditioned + 1000000 + + + + + Original intented use + Office + + + Number of PC's and/or Laptops + 9999 + + + Use (hours/week) + 60 + + + Use (weeks/year) + 52 + + + Principle HVAC Type + VAV RH + + + Principle Lighting Type + 3-Lamp T8 + + + + + C + Education + + + Adults + 9999 + + + + + Gross + 1000000 + + + Conditioned + 1000000 + + + + + Original intented use + Office + + + Number of PC's and/or Laptops + 9999 + + + Use (hours/week) + 60 + + + Use (weeks/year) + 52 + + + Principle HVAC Type + VAV RH + + + Principle Lighting Type + 3-Lamp T8 + + + + + D + Retail + + + Adults + 9999 + + + + + Gross + 1000000 + + + Conditioned + 1000000 + + + + + Original intented use + Bank + + + Number of PC's and/or Laptops + 9999 + + + Use (hours/week) + 60 + + + Use (weeks/year) + 52 + + + Principle HVAC Type + VAV RH + + + Principle Lighting Type + 3-Lamp T8 + + + + + E + Parking + + + Adults + 9999 + + + + + Gross + 1000000 + + + Conditioned + 1000000 + + + + + Original intented use + Office + + + Number of PC's and/or Laptops + 9999 + + + Use (hours/week) + 60 + + + Use (weeks/year) + 52 + + + Principle HVAC Type + VAV RH + + + Principle Lighting Type + 3-Lamp T8 + + + + + Unaccounted + Other + + + Adults + 9999 + + + + + Gross + 1000000 + + + Conditioned + 1000000 + + + + + Original intented use + Office + + + Number of PC's and/or Laptops + 9999 + + + Use (hours/week) + 60 + + + Use (weeks/year) + 52 + + + Principle HVAC Type + VAV RH + + + Principle Lighting Type + 3-Lamp T8 + + + + + + +
+
+ + + Above grade wall common area with other conditioned buildings (ft2) + 3000 + + + Percent owned (%) + 0.2 + + + Percent leased (%) + 0.8 + + + Typical occupancy (hrs/wk) + 60 + + + Typical occupancy (wks/yr) + 52.14 + + +
+
+
+
+ + + + + + + + Hot water + Mechanical forced + + + + + + + Vapor compression + + + + + + + + + + + + + + + + + + + + + Hot water + Fuel oil no 5 and no 6 + + + + + + + + Chilled water + Fuel oil no 2 + + + + + + + + + + + Electromagnetic + 0.05 + + + + Always On + + + + Interior + + + + + + Standard Electronic + 0.1 + + + + Manual On/Off + + + + Interior + + + + + + No Ballast + 0.25 + true + + + + Passive infrared + Occupancy Sensors + + + + Exterior + + + + + + Other + 0.5 + + + + Photocell + Continuous + + + + Interior + + + + + + Electromagnetic + 0.75 + + + + Timer + + + + Other + + + + + + Standard Electronic + 0.9 + + + + EMCS + + + + Interior + + + + + + Electromagnetic + 1 + + + + Other + + + + Interior + + + + + + Standard Electronic + 1 + + + + Other + + + + Interior + + + + + + Other + 1 + + + + Always On + + + + Interior + + + + + + Other + 1 + + + + Always On + + + + Interior + + + + + + + + + + + + Natural gas + + + + + 1988 + Interior + + + Description + Information + + + Type + J + + + Area Served + Restrooms + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + 20 + + + + + 11 + 1988 + Interior + + + Description + Information + + + Type + A + + + Office areas + Office areas + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + + + + + 12 + 1983 + Unknown + + + Description + Information + + + Type + B + + + Area Served + Hallways + + + Condition + Excellent + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + + + 13 + 1973 + Closet + + + Description + Information + + + Type + C + + + Area Served + Restrooms + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + + + 19 + 1988 + Interior + + + Description + Information + + + Type + I + + + Area Served + Restrooms + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + + + + + Other + Metal panel + 13 + + + + + Unknown + Metal + Unknown + 22 + 0.7 + + + + + + + + Aluminum thermal break + Low e + Double pane + + + + + + + + + + Wood frame + + + + + Building Automation System + + + 1588 + Attic + + + Description + Information + + + Type + D + + + Area Served + Office areas + + + Condition + Average + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + 14 + + + + + 1933 + Interior + + + Description + Information + + + Type + E + + + Area Served + Hallways + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + 15 + + + + + 2012 + Interior + + + Description + Information + + + Type + F + + + Area Served + Restrooms + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + 16 + + + + + 17 + 1988 + Interior + + + Description + Information + + + Type + G + + + Area Served + Office areas + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + + + + + + + + + Fuel cell + + + + + + + + + 18 + 1988 + Interior + + + Description + Information + + + Type + H + + + Area Served + Hallways + + + Condition + Good + + + Output Capacity + 50 + + + Capacity Units + lbs/h + + + + + + + + Refrigeration + Replace/Modify AHU + + 500 + + + Electricity + kWh + 888 + + + Natural gas + therms + 1654 + + + 10 + 500 + 9 + + 15 + 5000 + + + Net Measure Cost + 4500 + + + Simple ROI + 0.111111111111111 + + + + + Pump + Improve Fans + + 1000 + + + Electricity + kWh + 476 + + + Natural gas + therms + 52 + + + 5 + 800 + 4.854 + + 20 + 5654 + + + Net Measure Cost + 4854 + + + Simple ROI + 0.206015657189946 + + + + + Other + Convert CV System to VAV System + + 333 + + + Electricity + kWh + 3311 + + + Natural gas + therms + 881 + + + 8 + 336 + 5.43843843843844 + + 5 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 0.183876311430149 + + + + + Heating System + Operating Protocols, Calibration, and/or Sequencing + + 3866 + + + Electricity + kWh + 530 + + + Natural gas + therms + 212 + + + 8 + 336 + 0.468442834971547 + + 10 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 2.13473219215903 + + + + + Dishwasher + Repair Leaks / Seal Ducts + + 33 + + + Electricity + kWh + 530 + + + Natural gas + therms + 212 + + + 8 + 336 + 54.8787878787879 + + 10 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 0.0182219768083932 + + + + + Air Distribution + Add Duct Insulation + + 987 + + + Electricity + kWh + 530 + + + Natural gas + therms + 212 + + + 8 + 336 + 1.83485309017224 + + 10 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 0.545002760905577 + + + + + Refrigeration + Balancing + + 5584 + + + Electricity + kWh + 530 + + + Natural gas + therms + 212 + + + 8 + 336 + 0.324319484240688 + + 10 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 3.08337934842628 + + + + + Refrigeration + HVAC damper and controller repair or replacement + + 388 + + + Electricity + kWh + 530 + + + Natural gas + therms + 212 + + + 8 + 336 + 4.66752577319588 + + 10 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 0.214246272777471 + + + + + Refrigeration + Replace Burner + + 3118 + + + Electricity + kWh + 530 + + + Natural gas + therms + 212 + + + 8 + 336 + 0.580821039127646 + + 10 + 2147 + + + Net Measure Cost + 1811 + + + Simple ROI + 1.72170071783545 + + + + + + + + + Pre retrofit + + + On Site Measurement + + + + + Electricity + Site + kWh + 1 + All end uses + 1 + 1000000 + 3412.0000000000005 + + + Natural gas + Site + therms + 1 + All end uses + 1 + 25740 + 2574 + + + + + + Fuel oil + Site + Gallons + 1 + All end uses + 1 + 148500 + 1782 + + + + + + + + Fuel oil no 5 and no 6 + Site + Gallons + 1 + All end uses + 1 + 450 + 4.95 + + + + + + + + Fuel oil + Site + Gallons + 1 + All end uses + 1 + 390 + 31.2 + + + + + + + + + + Total + Energy + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 83333.3333333333 + + + + Total + Energy + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 83333.3333333333 + + + + Peak + Power + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 200 + + + + Peak + Power + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 225 + + + + Peak + Power + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 240 + + + + Peak + Power + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 280 + + + + Peak + Power + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 300 + + + + Peak + Power + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 350 + + + + Peak + Power + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 325 + + + + Peak + Power + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 400 + + + + Peak + Power + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 375 + + + + Peak + Power + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 300 + + + + Peak + Power + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 325 + + + + Peak + Power + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 250 + + + + Average + Power Factor + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 0.560035842293907 + + + + Average + Power Factor + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 0.551146384479718 + + + + Average + Power Factor + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 0.466696535244922 + + + + Average + Power Factor + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 0.413359788359788 + + + + Average + Power Factor + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 0.373357228195938 + + + + Average + Power Factor + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 0.330687830687831 + + + + Average + Power Factor + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 0.344637441411635 + + + + Average + Power Factor + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 0.280017921146953 + + + + Average + Power Factor + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 0.308641975308642 + + + + Average + Power Factor + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 0.373357228195938 + + + + Average + Power Factor + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 0.356125356125356 + + + + Average + Power Factor + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 0.448028673835125 + + + + Total + Currency + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Currency + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 8333.33333333333 + + + + Total + Energy + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 2145 + + + + Total + Energy + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 2145 + + + + Total + Currency + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 1608.75 + + + + Total + Currency + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 1608.75 + + + + Total + Energy + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 12375 + + + + Total + Energy + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 12375 + + + + Total + Currency + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 2970 + + + + Total + Currency + 2010-01-02T00:00:00 + 2010-02-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-02-02T00:00:00 + 2010-03-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-03-02T00:00:00 + 2010-04-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-04-02T00:00:00 + 2010-05-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-05-02T00:00:00 + 2010-06-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-06-02T00:00:00 + 2010-07-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-07-02T00:00:00 + 2010-08-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-08-02T00:00:00 + 2010-09-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-09-02T00:00:00 + 2010-10-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-10-02T00:00:00 + 2010-11-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-11-02T00:00:00 + 2010-12-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Currency + 2010-12-02T00:00:00 + 2011-01-01T00:00:00 + Month + 12912.0833333333 + + + Time Series Description + Total Metered Energy Cost + + + + + Total + Energy + 2010-01-10T00:00:00 + Unknown + 100 + + + + Total + Energy + 2010-07-12T00:00:00 + Unknown + 200 + + + + Total + Energy + 2010-12-25T00:00:00 + Unknown + 150 + + + + Total + Currency + 2010-01-10T00:00:00 + Unknown + 20 + + + + Total + Currency + 2010-07-12T00:00:00 + Unknown + 40 + + + + Total + Currency + 2010-12-25T00:00:00 + Unknown + 30 + + + + Total + Energy + 2010-01-15T00:00:00 + Unknown + 90 + + + + Total + Energy + 2010-04-15T00:00:00 + Unknown + 100 + + + + Total + Energy + 2010-09-15T00:00:00 + Unknown + 120 + + + + Total + Energy + 2010-12-30T00:00:00 + Unknown + 80 + + + + Total + Currency + 2010-01-15T00:00:00 + Unknown + 10 + + + + Total + Currency + 2010-04-15T00:00:00 + Unknown + 20 + + + + Total + Currency + 2010-09-15T00:00:00 + Unknown + 5 + + + + Total + Currency + 2010-12-30T00:00:00 + Unknown + 66 + + + + + + All end uses + Pre retrofit + Gross + 7804.15 + 39.414898989898987 + 154945 + 234.4665885111 + + + All end uses + Pre retrofit + Net + 7803.35 + 39.410858585858584 + 154136 + + + 4000 + 3000 + 0 + 0 + + + + + + + + RecommendedPackage1 + Post retrofit + + + 15809 + + + Electricity + kWh + 7855 + + + Natural gas + therms + 3859 + + + 71 + 25683 + 3652 + 1.3935732810424442 + + + + + + + + + + Net Measure Cost + 22031 + + + Simple ROI + 0.71757977395488171 + + + + + + + 2015-02-05 + Completion + + + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9921 + + + + + WSE 999-999 + + + Master meter without sub metering + 999-9998 + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9224 + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9994 + + + + + WSE 999-999 + + + Master meter without sub metering + 999-9998 + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9224 + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9994 + + + + + WSE 999-999 + + + Master meter without sub metering + 999-9998 + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9224 + + + + + WSE 999-999 + + + Master meter with sub metering + 999-9994 + + + + + + + + + Energy Auditor + + John Doe + + +
+
+
diff --git a/spec/files/v2.7.0/BETTER-1.0.0_SampleOffice_gemtest.xml b/spec/files/v2.7.0/BETTER-1.0.0_SampleOffice_gemtest.xml new file mode 100644 index 0000000..9568e1f --- /dev/null +++ b/spec/files/v2.7.0/BETTER-1.0.0_SampleOffice_gemtest.xml @@ -0,0 +1,535 @@ + + + + + + + + + + BETTER Example - Office + + + Custom + seed_analysis_property_view_id + 533 + + + + San Bernardino + CA + 92415 + + + CAMX + + -117.2898 + 34.1083 + Commercial + Office + 1 + 0 + 1 + 0 + + + Gross + 3916.0 + + + 2000 + + + + + + + + Packaged Terminal Air Conditioner + + + + + + + + + + + + + + + + + + + + + + Electricity + kBtu + All end uses + + + Natural gas + kBtu + All end uses + + + + + Total + 2018-01-01T08:00:00+00:00 + 2018-01-31T08:00:00+00:00 + Month + 11151.9617 + + + + Total + 2018-02-01T08:00:00+00:00 + 2018-02-28T08:00:00+00:00 + Month + 9621.690100000002 + + + + Total + 2018-03-01T08:00:00+00:00 + 2018-03-31T07:00:00+00:00 + Month + 10154.1957 + + + + Total + 2018-04-01T07:00:00+00:00 + 2018-04-30T07:00:00+00:00 + Month + 9991.0954 + + + + Total + 2018-05-01T07:00:00+00:00 + 2018-05-31T07:00:00+00:00 + Month + 10158.049 + + + + Total + 2018-06-01T07:00:00+00:00 + 2018-06-30T07:00:00+00:00 + Month + 10498.0942 + + + + Total + 2018-07-01T07:00:00+00:00 + 2018-07-31T07:00:00+00:00 + Month + 13474.0694 + + + + Total + 2018-08-01T07:00:00+00:00 + 2018-08-31T07:00:00+00:00 + Month + 16491.5102 + + + + Total + 2018-09-01T07:00:00+00:00 + 2018-09-30T07:00:00+00:00 + Month + 11740.0503 + + + + Total + 2018-10-01T07:00:00+00:00 + 2018-10-31T07:00:00+00:00 + Month + 10071.7078 + + + + Total + 2018-11-01T07:00:00+00:00 + 2018-11-30T08:00:00+00:00 + Month + 11046.4222 + + + + Total + 2018-12-01T08:00:00+00:00 + 2018-12-31T08:00:00+00:00 + Month + 11137.3669 + + + + Total + 2019-01-01T08:00:00+00:00 + 2019-01-31T08:00:00+00:00 + Month + 11733.5713 + + + + Total + 2019-02-01T08:00:00+00:00 + 2019-02-28T08:00:00+00:00 + Month + 11527.539100000002 + + + + Total + 2019-03-01T08:00:00+00:00 + 2019-03-31T07:00:00+00:00 + Month + 10809.9728 + + + + Total + 2019-04-01T07:00:00+00:00 + 2019-04-30T07:00:00+00:00 + Month + 10294.449 + + + + Total + 2019-05-01T07:00:00+00:00 + 2019-05-31T07:00:00+00:00 + Month + 10370.3556 + + + + Total + 2019-06-01T07:00:00+00:00 + 2019-06-30T07:00:00+00:00 + Month + 11316.2896 + + + + Total + 2019-07-01T07:00:00+00:00 + 2019-07-31T07:00:00+00:00 + Month + 14055.9859 + + + + Total + 2019-08-01T07:00:00+00:00 + 2019-08-31T07:00:00+00:00 + Month + 16188.0202 + + + + Total + 2019-09-01T07:00:00+00:00 + 2019-09-30T07:00:00+00:00 + Month + 12343.074700000001 + + + + Total + 2019-10-01T07:00:00+00:00 + 2019-10-31T07:00:00+00:00 + Month + 10169.2679 + + + + Total + 2019-11-01T07:00:00+00:00 + 2019-11-30T08:00:00+00:00 + Month + 9153.599400000001 + + + + Total + 2019-12-01T08:00:00+00:00 + 2019-12-31T08:00:00+00:00 + Month + 11609.447300000002 + + + + Total + 2020-01-01T08:00:00+00:00 + 2020-01-31T08:00:00+00:00 + Month + 11304.797900000001 + + + + Total + 2020-02-01T08:00:00+00:00 + 2020-02-29T08:00:00+00:00 + Month + 9662.4737 + + + + Total + 2020-03-01T08:00:00+00:00 + 2020-03-31T07:00:00+00:00 + Month + 9739.3351 + + + + Total + 2020-04-01T07:00:00+00:00 + 2020-04-30T07:00:00+00:00 + Month + 8734.1694 + + + + Total + 2020-05-01T07:00:00+00:00 + 2020-05-31T07:00:00+00:00 + Month + 11347.013700000001 + + + + Total + 2020-06-01T07:00:00+00:00 + 2020-06-30T07:00:00+00:00 + Month + 11897.080800000002 + + + + Total + 2020-07-01T07:00:00+00:00 + 2020-07-31T07:00:00+00:00 + Month + 14653.4861 + + + + Total + 2020-08-01T07:00:00+00:00 + 2020-08-31T07:00:00+00:00 + Month + 13311.7193 + + + + Total + 2020-09-01T07:00:00+00:00 + 2020-09-30T07:00:00+00:00 + Month + 10972.2206 + + + + Total + 2020-10-01T07:00:00+00:00 + 2020-10-31T07:00:00+00:00 + Month + 10252.506 + + + + Total + 2020-11-01T07:00:00+00:00 + 2020-11-30T08:00:00+00:00 + Month + 8507.6772 + + + + Total + 2020-12-01T08:00:00+00:00 + 2020-12-31T08:00:00+00:00 + Month + 10942.2808 + + + + Total + 2018-01-01T08:00:00+00:00 + 2018-01-31T08:00:00+00:00 + Month + 53900.0 + + + + Total + 2018-02-01T08:00:00+00:00 + 2018-02-28T08:00:00+00:00 + Month + 28900.0 + + + + Total + 2018-03-01T08:00:00+00:00 + 2018-03-31T07:00:00+00:00 + Month + 46000.0 + + + + Total + 2018-04-01T07:00:00+00:00 + 2018-04-30T07:00:00+00:00 + Month + 19400.0 + + + + Total + 2018-05-01T07:00:00+00:00 + 2018-05-31T07:00:00+00:00 + Month + 4200.0 + + + + Total + 2018-12-01T08:00:00+00:00 + 2018-12-31T08:00:00+00:00 + Month + 39800.0 + + + + Total + 2019-01-01T08:00:00+00:00 + 2019-01-31T08:00:00+00:00 + Month + 60300.0 + + + + Total + 2019-02-01T08:00:00+00:00 + 2019-02-28T08:00:00+00:00 + Month + 49800.0 + + + + Total + 2019-03-01T08:00:00+00:00 + 2019-03-31T07:00:00+00:00 + Month + 51500.0 + + + + Total + 2019-04-01T07:00:00+00:00 + 2019-04-30T07:00:00+00:00 + Month + 13800.0 + + + + Total + 2019-11-01T07:00:00+00:00 + 2019-11-30T08:00:00+00:00 + Month + 200.0 + + + + Total + 2019-12-01T08:00:00+00:00 + 2019-12-31T08:00:00+00:00 + Month + 25900.0 + + + + Total + 2020-01-01T08:00:00+00:00 + 2020-01-31T08:00:00+00:00 + Month + 59300.0 + + + + Total + 2020-02-01T08:00:00+00:00 + 2020-02-29T08:00:00+00:00 + Month + 58600.0 + + + + Total + 2020-03-01T08:00:00+00:00 + 2020-03-31T07:00:00+00:00 + Month + 15300.0 + + + + Total + 2020-04-01T07:00:00+00:00 + 2020-04-30T07:00:00+00:00 + Month + 9700.0 + + + + Total + 2020-10-01T07:00:00+00:00 + 2020-10-31T07:00:00+00:00 + Month + 100.0 + + + + Total + 2020-11-01T07:00:00+00:00 + 2020-11-30T08:00:00+00:00 + Month + 10100.0 + + + + Total + 2020-12-01T08:00:00+00:00 + 2020-12-31T08:00:00+00:00 + Month + 20000.0 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/BuildingEQ-1.0.0.xml b/spec/files/v2.7.0/BuildingEQ-1.0.0.xml new file mode 100644 index 0000000..86bebc8 --- /dev/null +++ b/spec/files/v2.7.0/BuildingEQ-1.0.0.xml @@ -0,0 +1,2358 @@ + + + + + + + + + + Custom + Borough + Brooklyn + + + Custom + Tax Block + 03343 + + + Custom + Tax Lot + 0014 + + + Rise Boro + + New York + NY + + + + 4A + + + + + Rise Boro + Sample Building + + + Custom + Atlanta Building ID + + + + Custom + BIN + 0003323 + + + Custom + EER + A + + + Custom + Custom ID 1 + 1 + + + Custom + City Custom Building ID + 1 + + + + + + 110 Grove Street + + + Brooklyn + NY + 11221 + + Residential + Multifamily + 4 + 1 + true + false + + + Cooled only + 0.0 + + + Gross + 97000.0 + + + Heated and Cooled + 97000.0 + + + Heated only + 0.0 + + + 20544.0 + 5136.0 + 0.10000000149011612 + 2020 + 2019 + 2020 + 1 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Excellent + + + + + + + + + + + + + + Space function + Multifamily + + + Peak total occupants + 75 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 97000.0 + + + Conditioned + 92150.0 + + + Common + 4850.0 + + + Tenant + 92150.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Original Occupancy Classification + Multifamily + + + Percentage Dwellings Occupied + 100 + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Packaged Rooftop VAV with Hot Water Reheat + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings + 23 + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Demising Above Grade Wall Area + 0.0 + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Multi Tenant + true + + + Multi Tenant Is Not Applicable + false + + + Number Of Facilities On Site Is Not Applicable + false + + + Onsite Generation Operation Average Annual Hours Is Not Applicable + false + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity + 20.88 + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not Applicable + false + + + Percentage Skylight Area + 0.0 + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct metering + true + + + Residential Tenant Metering Configuration For Electricity Is Direct metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct metering + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 5441.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + true + + + Validate 100% Lighting Status Is Not Applicable + false + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + Multi zone + + + + + + 3.859999895095825 + COP + 75.0 + kBtu/hr + Natural gas + Excellent + + + + Manual + + + + + Programmable + + + + Mechanical Room + 2020 + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type + Water + + + Heat Pump Sink Source Type Is Not Applicable + false + + + Heating Source Condition Is Not Applicable + false + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + 3 + + + + + + + + 3.859999895095825 + COP + 150.0 + kBtu/hr + Electricity + Excellent + + + + Manual + + + + + Programmable + + + + Roof + 2020 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 23 + + + + + + + Heating plant + + + + + + + + + + + + Mini-split + + + + Dry bulb temperature + + false + false + + + + + + + + + + + + + Energy recovery ventilator + false + + + + + + + + + + Digital + + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Central Distribution Type + Forced Air + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + true + + + Exhaust Ventilation For Corridor Is Not Applicable + false + + + Exhaust Ventilation For Kitchen + true + + + Exhaust Ventilation For Kitchen Is Not Applicable + false + + + Exhaust Ventilation For Other + true + + + Exhaust Ventilation For Other Is Not Applicable + false + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + false + + + Exhaust Ventilation For Restroom + true + + + Exhaust Ventilation For Restroom Is Not Applicable + false + + + Minimum Air Flow Fraction + 0.3 + + + Minimum Air Flow Fraction Is Not Applicable + false + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + true + + + Supply Ventilation For Common area Is Not Applicable + false + + + Supply Ventilation For Corridor + true + + + Supply Ventilation For Corridor Is Not Applicable + false + + + Supply Ventilation For Other + true + + + Supply Ventilation For Other Is Not Applicable + false + + + Supply Ventilation For Tenant Spaces + true + + + Supply Ventilation For Tenant Spaces Is Not Applicable + false + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + LED + + + Premium Electronic + false + + + + Advanced + + + + + Occupancy Sensors + + + + + Photocell + + + + + + + + + + + + Common + 10.0 + + + Tenant + 10.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-70023825621100 + + + + Common Areas Lighting Power Density For Section-70023825621100 + + + + Tenant Areas Lighting Power Density For Section-70023825621100 + + + + Quantity Of Luminaires For Section-70023825621100 + + + + Common Areas Quantity Of Luminaires For Section-70023825621100 + 100 + + + Tenant Areas Quantity Of Luminaires For Section-70023825621100 + 460 + + + + + + + + + + + + + Unknown + Condensing + + + + + 3.700000047683716 + 1.0 + + + AFUE + 97.0 + + + + Demand + + + + 2020 + Natural gas + Mechanical Room + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Draft Type Is Not Applicable + false + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + false + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + 83.0 + Constant Volume + + + + + + + + 87.0 + + + + + + + + Wood frame + Brick + + + 20.0 + + + + + + + Built up + false + false + false + + + 38.400001525878906 + + + Steel + Flat + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + + + + + + + Insulated metal + + + + + Other Exterior Door Type + + + + + + + + + Aluminum thermal break + true + Very Tight + Low e + Air + Triple pane + 0.18 + 0.26 + + + + + + + + 1.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + + 17.5 + + + + + + Foundation Wall R Value Is Not Applicable + false + + + Linked Wall ID + WallSystemType-70023817481060 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + Elevator + 1 + 2019 + + + + + + + + Elevator Type + Hydraulic + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + Other + + + + + + + + + + + + + + Very Tight + + + + + + + + + + + Cooking + + + + + + + + + Other + + + + Entire building + Remove Gas Ovens + + + + + 260.0 + + 50 + 75242.0 + true + + + Shared Resource Affected + false + + + Rebate Available + false + + + + + + + + + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + + + + + + + + Contributor Contact ID + ContactType-70023816961980 + + + Contributor Contact Role + Contributor + + + + + + + Current + + + + + + All end uses + Site + 0.0 + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + false + + + + + + + + + + + + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Target + + + + + + All end uses + Site + 0.0 + 0.0 + + + + + + + + + + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Current + + + + + + Electricity + Site + kWh + Not shared + Total lighting + 25000.0 + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Cooling + 75000.0 + + + Electricity + Site + kWh + Not shared + Heating + 25000.0 + + + Electricity + Site + kWh + Not shared + Ventilation + 12000.0 + + + Electricity + Site + kWh + Not shared + Pump + 0.0 + + + Electricity + Site + kWh + Not shared + Domestic hot water + 7500.0 + + + Electricity + Site + kWh + Not shared + Plug load + 13000.0 + + + Electricity + Site + kWh + Not shared + All end uses + 157500.0 + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Oven + Current + + + + + + 12878 + + + Electricity + kWh + 2000.0 + + + Natural gas + therms + 8000.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 100.0 + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + + + + + + + + + + 2012-01-01T00:00:00 + Month + 30.0 + 1.0 + + + 2012-02-01T00:00:00 + Month + 27.0 + 1.0 + + + 2012-03-01T00:00:00 + Month + 30.0 + 1.0 + + + 2012-04-01T00:00:00 + Month + 20.0 + 10.0 + + + 2012-05-01T00:00:00 + Month + 12.0 + 19.0 + + + 2012-06-01T00:00:00 + Month + 3.0 + 27.0 + + + 2012-07-01T00:00:00 + Month + 1.0 + 30.0 + + + 2012-08-01T00:00:00 + Month + 2.0 + 29.0 + + + 2012-09-01T00:00:00 + Month + 10.0 + 20.0 + + + 2012-10-01T00:00:00 + Month + 19.0 + 12.0 + + + 2012-11-01T00:00:00 + Month + 25.0 + 5.0 + + + 2012-12-01T00:00:00 + Month + 29.0 + 2.0 + + + + + + + + + + + + 2020-01-01 + Custom + Level 1: Walk-through + + + 2020-02-01 + Custom + Level 2: Energy Survey and Analysis + + + 2020-03-01 + Custom + Level 3: Detailed Survey and Analysis + + + + + High-Performance Building Design Professional (HBDP) + 00000001 + NY + 2020-12-31 + + + + 00000001 + NY + 2020-12-31 + + Building Performance Institute (BPI) Certification + + + 00000001 + NY + 2020-12-31 + + Department of Buildings (DOB) Approved Agent + + + + + + + + + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + false + + + Audit Filing Status + Initial Filing + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + New York City Energy Efficiency Report + + + Auditor Years Of Experience + 1 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + Operator + Owner + Qualified Assessor + Property Management Company + Contributor + + A. Sample Contact 1 + Sample Company + + + + Sample Address + + + New York + NY + 11111 + + + + 999-999-9999 + + + + + sample@email.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Contact Role For ReportType-70023817131920 + Energy Auditor + + + Contact Role For Qualification-70023841444860 + Energy Auditor + + + Contributor Contact ID For Qualification-70023841444860 + ContactType-70023816961980 + + + Contributor Contact Role For Qualification-70023841444860 + Energy Auditor + + + Other Qualification Type For Qualification-70023841444860 + + + + Contact Role For ReportType-70023817131920 + Operator + + + Contact Role For Qualification-70023841184880 + Operator + + + Contributor Contact ID For Qualification-70023841184880 + ContactType-70023816961980 + + + Contributor Contact Role For Qualification-70023841184880 + Operator + + + Other Qualification Type For Qualification-70023841184880 + + + + Contact Role For ReportType-70023817131920 + Owner + + + Contact Role For ReportType-70023817131920 + Qualified Assessor + + + Contact Role For Qualification-70023841015660 + Qualified Assessor + + + Contributor Contact ID For Qualification-70023841015660 + ContactType-70023816961980 + + + Contributor Contact Role For Qualification-70023841015660 + Qualified Assessor + + + Other Qualification Type For Qualification-70023841015660 + + + + Contact Role For ReportType-70023817131920 + Property Management Company + + + Contact Role For ReportType-70023817131920 + Contributor + + + + + + + diff --git a/spec/files/v2.7.0/BuildingEQ-1.0.0_gemtest.xml b/spec/files/v2.7.0/BuildingEQ-1.0.0_gemtest.xml new file mode 100644 index 0000000..b4c01e2 --- /dev/null +++ b/spec/files/v2.7.0/BuildingEQ-1.0.0_gemtest.xml @@ -0,0 +1,2359 @@ + + + + + + + + + + Custom + Borough + Brooklyn + + + Custom + Tax Block + 03343 + + + Custom + Tax Lot + 0014 + + + Rise Boro + + New York + NY + + + + 4A + + + + + Rise Boro + Sample Building + + + Custom + Atlanta Building ID + + + + Custom + BIN + 0003323 + + + Custom + EER + A + + + Custom + Custom ID 1 + 1 + + + Custom + City Custom Building ID + 1 + + + + + + 110 Grove Street + + + Brooklyn + NY + 11221 + + Residential + Multifamily + 4 + 1 + true + false + + + Cooled only + 0.0 + + + Gross + 97000.0 + + + Heated and Cooled + 97000.0 + + + Heated only + 0.0 + + + 20544.0 + 5136.0 + 0.10000000149011612 + 2020 + 2019 + 2020 + 1 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Excellent + + + + + + + + + + + + + + Space function + Multifamily + + + Peak total occupants + 75 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 97000.0 + + + Conditioned + 92150.0 + + + Common + 4850.0 + + + Tenant + 92150.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Original Occupancy Classification + Multifamily + + + Percentage Dwellings Occupied + 100 + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Packaged Rooftop VAV with Hot Water Reheat + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings + 23 + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Demising Above Grade Wall Area + 0.0 + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Multi Tenant + true + + + Multi Tenant Is Not Applicable + false + + + Number Of Facilities On Site Is Not Applicable + false + + + Onsite Generation Operation Average Annual Hours Is Not Applicable + false + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity + 20.88 + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not Applicable + false + + + Percentage Skylight Area + 0.0 + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct metering + true + + + Residential Tenant Metering Configuration For Electricity Is Direct metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct metering + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 5441.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + true + + + Validate 100% Lighting Status Is Not Applicable + false + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + Multi zone + + + + + + 3.859999895095825 + COP + 75.0 + kBtu/hr + Natural gas + Excellent + + + + Manual + + + + + Programmable + + + + Mechanical Room + 2020 + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type + Water + + + Heat Pump Sink Source Type Is Not Applicable + false + + + Heating Source Condition Is Not Applicable + false + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + 3 + + + + + + + + 3.859999895095825 + COP + 150.0 + kBtu/hr + Electricity + Excellent + + + + Manual + + + + + Programmable + + + + Roof + 2020 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 23 + + + + + + + Heating plant + + + + + + + + + + + + Mini-split + + + + Dry bulb temperature + + false + false + + + + + + + + + + + + + Energy recovery ventilator + false + + + + + + + + + Packaged Rooftop Air Conditioner + + Digital + + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Central Distribution Type + Forced Air + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + true + + + Exhaust Ventilation For Corridor Is Not Applicable + false + + + Exhaust Ventilation For Kitchen + true + + + Exhaust Ventilation For Kitchen Is Not Applicable + false + + + Exhaust Ventilation For Other + true + + + Exhaust Ventilation For Other Is Not Applicable + false + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + false + + + Exhaust Ventilation For Restroom + true + + + Exhaust Ventilation For Restroom Is Not Applicable + false + + + Minimum Air Flow Fraction + 0.3 + + + Minimum Air Flow Fraction Is Not Applicable + false + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + true + + + Supply Ventilation For Common area Is Not Applicable + false + + + Supply Ventilation For Corridor + true + + + Supply Ventilation For Corridor Is Not Applicable + false + + + Supply Ventilation For Other + true + + + Supply Ventilation For Other Is Not Applicable + false + + + Supply Ventilation For Tenant Spaces + true + + + Supply Ventilation For Tenant Spaces Is Not Applicable + false + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + LED + + + Premium Electronic + false + + + + Advanced + + + + + Occupancy Sensors + + + + + Photocell + + + + + + + + + + + + Common + 10.0 + + + Tenant + 10.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-70023825621100 + + + + Common Areas Lighting Power Density For Section-70023825621100 + + + + Tenant Areas Lighting Power Density For Section-70023825621100 + + + + Quantity Of Luminaires For Section-70023825621100 + + + + Common Areas Quantity Of Luminaires For Section-70023825621100 + 100 + + + Tenant Areas Quantity Of Luminaires For Section-70023825621100 + 460 + + + + + + + + + + + + + Unknown + Condensing + + + + + 3.700000047683716 + 1.0 + + + AFUE + 97.0 + + + + Demand + + + + 2020 + Natural gas + Mechanical Room + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Draft Type Is Not Applicable + false + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + false + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + 83.0 + Constant Volume + + + + + + + + 87.0 + + + + + + + + Wood frame + Brick + + + 20.0 + + + + + + + Built up + false + false + false + + + 38.400001525878906 + + + Steel + Flat + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + + + + + + + Insulated metal + + + + + Other Exterior Door Type + + + + + + + + + Aluminum thermal break + true + Very Tight + Low e + Air + Triple pane + 0.18 + 0.26 + + + + + + + + 1.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + + 17.5 + + + + + + Foundation Wall R Value Is Not Applicable + false + + + Linked Wall ID + WallSystemType-70023817481060 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + Elevator + 1 + 2019 + + + + + + + + Elevator Type + Hydraulic + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + Other + + + + + + + + + + + + + + Very Tight + + + + + + + + + + + Cooking + + + + + + + + + Other + + + + Entire building + Remove Gas Ovens + + + + + 260.0 + + 50 + 75242.0 + true + + + Shared Resource Affected + false + + + Rebate Available + false + + + + + + + + + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + + + + + + + + Contributor Contact ID + ContactType-70023816961980 + + + Contributor Contact Role + Contributor + + + + + + + Current + + + + + + All end uses + Site + 0.0 + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + false + + + + + + + + + + + + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Target + + + + + + All end uses + Site + 0.0 + 0.0 + + + + + + + + + + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Current + + + + + + Electricity + Site + kWh + Not shared + Total lighting + 25000.0 + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Cooling + 75000.0 + + + Electricity + Site + kWh + Not shared + Heating + 25000.0 + + + Electricity + Site + kWh + Not shared + Ventilation + 12000.0 + + + Electricity + Site + kWh + Not shared + Pump + 0.0 + + + Electricity + Site + kWh + Not shared + Domestic hot water + 7500.0 + + + Electricity + Site + kWh + Not shared + Plug load + 13000.0 + + + Electricity + Site + kWh + Not shared + All end uses + 157500.0 + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Oven + Current + + + + + + 12878 + + + Electricity + kWh + 2000.0 + + + Natural gas + therms + 8000.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 100.0 + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + + + + + + + + + + 2012-01-01T00:00:00 + Month + 30.0 + 1.0 + + + 2012-02-01T00:00:00 + Month + 27.0 + 1.0 + + + 2012-03-01T00:00:00 + Month + 30.0 + 1.0 + + + 2012-04-01T00:00:00 + Month + 20.0 + 10.0 + + + 2012-05-01T00:00:00 + Month + 12.0 + 19.0 + + + 2012-06-01T00:00:00 + Month + 3.0 + 27.0 + + + 2012-07-01T00:00:00 + Month + 1.0 + 30.0 + + + 2012-08-01T00:00:00 + Month + 2.0 + 29.0 + + + 2012-09-01T00:00:00 + Month + 10.0 + 20.0 + + + 2012-10-01T00:00:00 + Month + 19.0 + 12.0 + + + 2012-11-01T00:00:00 + Month + 25.0 + 5.0 + + + 2012-12-01T00:00:00 + Month + 29.0 + 2.0 + + + + + + + + + + + + 2020-01-01 + Custom + Level 1: Walk-through + + + 2020-02-01 + Custom + Level 2: Energy Survey and Analysis + + + 2020-03-01 + Custom + Level 3: Detailed Survey and Analysis + + + + + High-Performance Building Design Professional (HBDP) + 00000001 + NY + 2020-12-31 + + + + 00000001 + NY + 2020-12-31 + + Building Performance Institute (BPI) Certification + + + 00000001 + NY + 2020-12-31 + + Department of Buildings (DOB) Approved Agent + + + + + + + + + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + false + + + Audit Filing Status + Initial Filing + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + New York City Energy Efficiency Report + + + Auditor Years Of Experience + 1 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + Operator + Owner + Qualified Assessor + Property Management Company + Contributor + + A. Sample Contact 1 + Sample Company + + + + Sample Address + + + New York + NY + 11111 + + + + 999-999-9999 + + + + + sample@email.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Contact Role For ReportType-70023817131920 + Energy Auditor + + + Contact Role For Qualification-70023841444860 + Energy Auditor + + + Contributor Contact ID For Qualification-70023841444860 + ContactType-70023816961980 + + + Contributor Contact Role For Qualification-70023841444860 + Energy Auditor + + + Other Qualification Type For Qualification-70023841444860 + + + + Contact Role For ReportType-70023817131920 + Operator + + + Contact Role For Qualification-70023841184880 + Operator + + + Contributor Contact ID For Qualification-70023841184880 + ContactType-70023816961980 + + + Contributor Contact Role For Qualification-70023841184880 + Operator + + + Other Qualification Type For Qualification-70023841184880 + + + + Contact Role For ReportType-70023817131920 + Owner + + + Contact Role For ReportType-70023817131920 + Qualified Assessor + + + Contact Role For Qualification-70023841015660 + Qualified Assessor + + + Contributor Contact ID For Qualification-70023841015660 + ContactType-70023816961980 + + + Contributor Contact Role For Qualification-70023841015660 + Qualified Assessor + + + Other Qualification Type For Qualification-70023841015660 + + + + Contact Role For ReportType-70023817131920 + Property Management Company + + + Contact Role For ReportType-70023817131920 + Contributor + + + + + + + diff --git a/spec/files/v2.7.0/Chula_Vista_ASHRAE_L1_Example_Building.xml b/spec/files/v2.7.0/Chula_Vista_ASHRAE_L1_Example_Building.xml new file mode 100644 index 0000000..718abc8 --- /dev/null +++ b/spec/files/v2.7.0/Chula_Vista_ASHRAE_L1_Example_Building.xml @@ -0,0 +1,3958 @@ + + + + + + + + + + Chula Vista_ASHRAE L1 Example Building + This is a fictional building for demonstration purposes. + + + Custom + City Custom Building ID + + + + Custom + Portfolio Manager Building ID + + + + Custom + Audit Template Building ID + 46822 + + + + + + 276 Fourth Ave + + + Chula Vista + CA + 91910 + + + CAMX + + Multifamily + false + 3 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 248800.0 + + + Heated and Cooled + 236360.0 + + + Heated only + 9152.0 + + + 145000.0 + 0.0 + 0.0 + 0.15000000596046448 + 2010 + 2017 + 2018-01-01 + 2015 + 100.0 + 0.0 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Average + + + + + + + + + + + + + + + + + + + Space function + Multifamily + Multifamily + + + Peak total occupants + 898 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Apartment units + 272 + 90 + + + + + Gross + 248800.0 + + + Conditioned + 248800.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 200.0 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2018-01-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + false + + + Premises Identifier For Atlanta Building ID Is Not Applicable + false + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + true + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + false + + + Roof Area + 96204.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + 3135.0 + kBtu/hr + 86.0 + AFUE + 1 + + Average + Natural gas + false + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + true + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Notes + + + + Heating Plant Notes Is Not Applicable + true + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + + + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + false + false + + + Radiator + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Central Distribution Type + Hydronic + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + true + + + + + + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + 11.0 + EER + 6.0 + kBtu/hr + Electricity + Good + Interior + 2010 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 900 + + + + + + + Local fan + + + + + + + + + + false + false + + + + + + + + + + + + + None + false + + + + + + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Central Distribution Type + None (unitized heating/cooling) + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + T8 + Unknown + + + Premium Electronic + false + + + + EMCS + + + + + Manual On/Off + + + + + Occupancy Sensors + + + + + + + + + + + + Gross + 30.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45161580 + + + + Common Areas Lighting Power Density For Section-45161580 + + + + Tenant Areas Lighting Power Density For Section-45161580 + + + + Quantity Of Luminaires For Section-45161580 + + + + Common Areas Quantity Of Luminaires For Section-45161580 + + + + Tenant Areas Quantity Of Luminaires For Section-45161580 + + + + + + + + LED + + + Standard Electronic + false + + + + Manual On/Off + + + + + Photocell + + + + + + + + + + + + Gross + 50.0 + + + + + + + + Lighting System Name + Fixture 2 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45161580 + + + + Common Areas Lighting Power Density For Section-45161580 + + + + Tenant Areas Lighting Power Density For Section-45161580 + + + + Quantity Of Luminaires For Section-45161580 + + + + Common Areas Quantity Of Luminaires For Section-45161580 + + + + Tenant Areas Quantity Of Luminaires For Section-45161580 + + + + + + + + Unknown + + + No Ballast + false + + + + Manual On/Off + + + + + + + + + + + + Gross + 20.0 + + + + + + + + Lighting System Name + Fixture 3 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45161580 + + + + Common Areas Lighting Power Density For Section-45161580 + + + + Tenant Areas Lighting Power Density For Section-45161580 + + + + Quantity Of Luminaires For Section-45161580 + + + + Common Areas Quantity Of Luminaires For Section-45161580 + + + + Tenant Areas Quantity Of Luminaires For Section-45161580 + + + + + + + + + + + + + + + + + + + AFUE + 80.0 + 1990 + District hot water + + Garage + + + + + + + + + Gross + 100.0 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + true + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + true + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + true + + + Storage Tank Insulation Thickness Is Not Applicable + true + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Variable Volume + + + + + + Constant Volume + + + + + + + + Steel frame + Metal panel + + + 13.0 + + + + + + + Built up + false + false + false + + + 20.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Aluminum no thermal break + false + Average + Clear uncoated + Double pane + + + Year Installed Is Not Applicable + false + + + + + + + Wood + + + + + + + + 30.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45162100 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + false + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + false + + + Plug Load Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + Plug Load Total Power Is Not Applicable + false + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Tight + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Common areas + Measure 3 + Improved lighting quality and visibility in workspaces + + 0.0 + + 10 + 500.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Tenant areas + Measure 7 + Better light quality, lower bulb replacement frequency + + 0.0 + + 15 + 59250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Other heating + + + + Entire building + Measure 1 + Reduces overheating and wear on boilers during shoulder seasons + + 0.0 + + 5 + 250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Onsite Storage, Transmission, Generation + + + + + + + + + Install photovoltaic system + + + + Entire building + Measure 2 + Provides long-term resilience, reduces grid dependency, supports + sustainability goals + + 0.0 + + 25 + 0.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Add pipe insulation + + + + Common areas + Measure 4 + Reduces ambient heat loss, prolongs piping and insulation life + + 0.0 + + 10 + 750.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Install low-flow faucets and showerheads + + + + Tenant areas + Measure 5 + Conserves water, reduces DHW load and sewer bills, quick to install + + 0.0 + + 10 + 34000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Pump + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure 6 + Extends pump life, reduces noise and wear + + 0.0 + + 15 + 51250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Install SHW controls + + + + Entire building + Measure 8 + Lowers DHW standby losses, improves water delivery times, reduces + pump wear + + 0.0 + + 10 + 59250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Add or upgrade controls + + + + Entire building + Measure 9 + Improves occupant comfort, avoids overheating, enables smarter energy + management + + 0.0 + + 15 + 64250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + + 2000 + + + + + All end uses + Site + 8.0 + 50.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 9.0 + 45.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 1483491.0 + + + + + + All end uses + Site + 178018.90625 + 335.7255559907747 + + + Linked Time Series ID + TimeSeriesType-45162460 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 177283.0 + + + + + + All end uses + Site + 156009.0 + 941.5500129999999 + + + Linked Time Series ID + TimeSeriesType-45162540 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2018-01-01T00:00:00+00:00 + 2018-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-02-01T00:00:00+00:00 + 2018-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-03-01T00:00:00+00:00 + 2018-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-04-01T00:00:00+00:00 + 2018-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-05-01T00:00:00+00:00 + 2018-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-06-01T00:00:00+00:00 + 2018-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-07-01T00:00:00+00:00 + 2018-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-08-01T00:00:00+00:00 + 2018-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-09-01T00:00:00+00:00 + 2018-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-10-01T00:00:00+00:00 + 2018-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-11-01T00:00:00+00:00 + 2018-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-12-01T00:00:00+00:00 + 2019-01-01T00:00:00+00:00 + Other + 2445.0 + + + + + + All end uses + Site + 112755.0 + 12771.0 + 25.517333819847778 + + + Linked Time Series ID + TimeSeriesType-45162660 + + + + + All end uses + Site + 96300.0 + 11167.0 + 21.793439287404915 + + + Linked Time Series ID + TimeSeriesType-45162700 + + + + + All end uses + Site + 102776.0 + 11926.0 + 23.25900847562126 + + + Linked Time Series ID + TimeSeriesType-45162740 + + + + + All end uses + Site + 100553.0 + 11647.0 + 22.755926278986774 + + + Linked Time Series ID + TimeSeriesType-45162780 + + + + + All end uses + Site + 132761.0 + 14409.0 + 30.0448472817774 + + + Linked Time Series ID + TimeSeriesType-45162820 + + + + + All end uses + Site + 150160.0 + 17049.0 + 33.98237635925983 + + + Linked Time Series ID + TimeSeriesType-45162860 + + + + + All end uses + Site + 184348.0 + 20099.0 + 41.71938676795972 + + + Linked Time Series ID + TimeSeriesType-45162900 + + + + + All end uses + Site + 180373.0 + 19467.0 + 40.81981333942977 + + + Linked Time Series ID + TimeSeriesType-45162940 + + + + + All end uses + Site + 153838.0 + 17633.0 + 34.8147363769034 + + + Linked Time Series ID + TimeSeriesType-45162980 + + + + + All end uses + Site + 121357.0 + 13913.0 + 27.464033349964673 + + + Linked Time Series ID + TimeSeriesType-45163020 + + + + + All end uses + Site + 107305.0 + 12119.0 + 24.283956414693503 + + + Linked Time Series ID + TimeSeriesType-45163060 + + + + + All end uses + Site + 114688.0 + 12661.0 + 25.95478676006121 + + + Linked Time Series ID + TimeSeriesType-45163100 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2018-01-01T00:00:00+00:00 + 2018-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-02-01T00:00:00+00:00 + 2018-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-03-01T00:00:00+00:00 + 2018-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-04-01T00:00:00+00:00 + 2018-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-05-01T00:00:00+00:00 + 2018-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-06-01T00:00:00+00:00 + 2018-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-07-01T00:00:00+00:00 + 2018-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-08-01T00:00:00+00:00 + 2018-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-09-01T00:00:00+00:00 + 2018-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-10-01T00:00:00+00:00 + 2018-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-11-01T00:00:00+00:00 + 2018-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-12-01T00:00:00+00:00 + 2019-01-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 32676.0 + 30258.0 + 173.542236 + + + Linked Time Series ID + TimeSeriesType-45163180 + + + + + All end uses + Site + 24045.0 + 22445.0 + 127.702995 + + + Linked Time Series ID + TimeSeriesType-45163220 + + + + + All end uses + Site + 26316.0 + 18283.0 + 139.764276 + + + Linked Time Series ID + TimeSeriesType-45163260 + + + + + All end uses + Site + 17576.0 + 15938.0 + 93.346136 + + + Linked Time Series ID + TimeSeriesType-45163300 + + + + + All end uses + Site + 7387.0 + 6997.0 + 39.23235699999999 + + + Linked Time Series ID + TimeSeriesType-45163340 + + + + + All end uses + Site + 5366.0 + 5203.0 + 28.498825999999998 + + + Linked Time Series ID + TimeSeriesType-45163380 + + + + + All end uses + Site + 4717.0 + 4616.0 + 25.051986999999997 + + + Linked Time Series ID + TimeSeriesType-45163420 + + + + + All end uses + Site + 4709.0 + 4461.0 + 25.009498999999998 + + + Linked Time Series ID + TimeSeriesType-45163460 + + + + + All end uses + Site + 4880.0 + 4631.0 + 25.91768 + + + Linked Time Series ID + TimeSeriesType-45163500 + + + + + All end uses + Site + 10311.0 + 9706.0 + 54.761720999999994 + + + Linked Time Series ID + TimeSeriesType-45163540 + + + + + All end uses + Site + 19615.0 + 15620.0 + 104.175265 + + + Linked Time Series ID + TimeSeriesType-45163580 + + + + + All end uses + Site + 22897.0 + 21187.0 + 121.60596699999999 + + + Linked Time Series ID + TimeSeriesType-45163620 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + Natural gas + Site + therms + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Heating + 5000.0 + + + Net + CO2e + 1.1315389038112624 + + + + + Electricity + Site + kWh + Not shared + Cooling + 277647.375 + + + Net + CO2e + 62.8337612707149 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Ventilation + 14621.6298828125 + + + Net + CO2e + 3.3089886099063306 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Total lighting + 353593.90625 + + + Net + CO2e + 80.02105221449345 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Refrigeration + 108528.0 + + + Net + CO2e + 24.56073083056574 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Laundry + 12291.3798828125 + + + Net + CO2e + 2.781634903785092 + + + + + Other End Use + Laundry + + + + + Electricity + Site + kWh + Not shared + Laundry + 646251.0625 + + + Net + CO2e + 146.25164376962272 + + + + + Other End Use + Plug Load + + + + + Electricity + Site + kWh + Not shared + Laundry + 4260.22021484375 + + + Net + CO2e + 0.9641209823797756 + + + + + Other End Use + Pumps and Motors + + + + + Natural gas + Site + therms + Not shared + Heating + 114797.4609375 + + + Net + CO2e + 609.6893150390625 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 38920.16015625 + + + Net + CO2e + 206.70497058984375 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Cooking + 12240.0 + + + Net + CO2e + 65.00664 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Laundry + 14537.1904296875 + + + Net + CO2e + 77.20701837207031 + + + + + Other End Use + Laundry + + + + + Electricity + Site + kWh + Not shared + All end uses + 1422193.5737304688 + + + Net + CO2e + 321.8534714852793 + + + + + Natural gas + Site + therms + Not shared + All end uses + 180494.8115234375 + + + Net + CO2e + 958.6079440009765 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + Lighting Retrofits + Current + + + + + + + 60000 + + + Electricity + kWh + 200000.0 + + + Natural gas + therms + 2000.0 + + + 0.0 + + + Narrative + + + + USGBC Narrative + This package improves energy efficiency and lighting quality + by replacing outdated incandescent and fluorescent bulbs with + high-efficiency LED lighting in both common areas and residential units. + These upgrades reduce energy consumption, lower maintenance costs, and + enhance overall illumination throughout the property. + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Other ECMs + Current + + + + + + + + + + + + 100400 + + + Electricity + kWh + 200000.0 + + + Natural gas + therms + 1000.0 + + + 0.0 + + + Narrative + + + + USGBC Narrative + This package includes energy and water-saving measures that + enhance system efficiency and reduce heat loss. It features a new heating + system controller with indoor sensors, outdoor cutoff reset, VFDs on hot + water pumps, and demand-based DHW recirculation control. Additional measures + include pipe insulation, low-flow water fixtures, and a newly installed + 1,046 kW solar PV system to offset site energy use. + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2018-06-01 + Custom + Level 1: Walk-through + + + 2018-12-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + + + + + + + + + 0.27 + + + Master meter without sub metering + 123ABC + + + + + 0.67 + + + Direct metering + XYZ123 + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + Level 3 Audit not required for this city. + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + Chula Vista Level 1 Audit Report + + + Auditor Years Of Experience + 4 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + A. Example Auditor + Auditor Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.auditor@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45162160 + Energy Auditor + + + Contact Role For Qualification-45162200 + Energy Auditor + + + Contributor Contact ID For Qualification-45162200 + ContactType-45162180 + + + Contributor Contact Role For Qualification-45162200 + Energy Auditor + + + Other Qualification Type For Qualification-45162200 + + + + + + + Owner + + A. Example Building Owner + Building Owner Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.owner@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45162160 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Chula_Vista_ASHRAE_L2_Example_Building.xml b/spec/files/v2.7.0/Chula_Vista_ASHRAE_L2_Example_Building.xml new file mode 100644 index 0000000..1893398 --- /dev/null +++ b/spec/files/v2.7.0/Chula_Vista_ASHRAE_L2_Example_Building.xml @@ -0,0 +1,3904 @@ + + + + + + + + + + Chula Vista_ASHRAE L2 Example Building + This is a fictional building for demonstration purposes. + + + Custom + City Custom Building ID + + + + Custom + Portfolio Manager Building ID + + + + Custom + Audit Template Building ID + 46823 + + + + + + 276 Fourth Ave + + + Chula Vista + CA + 91910 + + + CAMX + + false + 3 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 248800.0 + + + Heated and Cooled + 236360.0 + + + Heated only + 9152.0 + + + 145000.0 + 0.0 + 0.0 + 0.15000000596046448 + 2010 + 2017 + 2018-01-01 + 2015 + 100.0 + 0.0 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Average + + + + + + + + + + + + + + + + + + + Space function + Multifamily + Multifamily + + + Peak total occupants + 898 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Apartment units + 272 + 90 + + + + + Gross + 248800.0 + + + Conditioned + 248800.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 200.0 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2018-01-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not Applicable + false + + + Premises Identifier For Atlanta Building ID Is Not Applicable + false + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not Applicable + true + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + false + + + Roof Area + 96204.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + 3135.0 + kBtu/hr + 86.0 + AFUE + 1 + + Average + Natural gas + false + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + true + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Notes + + + + Heating Plant Notes Is Not Applicable + true + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + + + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + false + false + + + Radiator + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Central Distribution Type + Hydronic + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + true + + + + + + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + 11.0 + EER + 6.0 + kBtu/hr + Electricity + Good + Interior + 2010 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 900 + + + + + + + Local fan + + + + + + + + + + false + false + + + + + + + + + + + + + None + false + + + + + + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Central Distribution Type + None (unitized heating/cooling) + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + T8 + Unknown + + + Premium Electronic + false + + + + EMCS + + + + + Manual On/Off + + + + + Occupancy Sensors + + + + + + + + + + + + Gross + 30.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45182940 + + + + Common Areas Lighting Power Density For Section-45182940 + + + + Tenant Areas Lighting Power Density For Section-45182940 + + + + Quantity Of Luminaires For Section-45182940 + + + + Common Areas Quantity Of Luminaires For Section-45182940 + + + + Tenant Areas Quantity Of Luminaires For Section-45182940 + + + + + + + + LED + + + Standard Electronic + false + + + + Manual On/Off + + + + + Photocell + + + + + + + + + + + + Gross + 50.0 + + + + + + + + Lighting System Name + Fixture 2 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45182940 + + + + Common Areas Lighting Power Density For Section-45182940 + + + + Tenant Areas Lighting Power Density For Section-45182940 + + + + Quantity Of Luminaires For Section-45182940 + + + + Common Areas Quantity Of Luminaires For Section-45182940 + + + + Tenant Areas Quantity Of Luminaires For Section-45182940 + + + + + + + + Unknown + + + No Ballast + false + + + + Manual On/Off + + + + + + + + + + + + Gross + 20.0 + + + + + + + + Lighting System Name + Fixture 3 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45182940 + + + + Common Areas Lighting Power Density For Section-45182940 + + + + Tenant Areas Lighting Power Density For Section-45182940 + + + + Quantity Of Luminaires For Section-45182940 + + + + Common Areas Quantity Of Luminaires For Section-45182940 + + + + Tenant Areas Quantity Of Luminaires For Section-45182940 + + + + + + + + + + + + + + + + + + + AFUE + 80.0 + 1990 + District hot water + + Garage + + + + + + + + + Gross + 100.0 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + true + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + true + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + true + + + Storage Tank Insulation Thickness Is Not Applicable + true + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Variable Volume + + + + + + Constant Volume + + + + + + + + Steel frame + Metal panel + + + 13.0 + + + + + + + Built up + false + false + false + + + 20.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Aluminum no thermal break + false + Average + Clear uncoated + Double pane + + + Year Installed Is Not Applicable + false + + + + + + + Wood + + + + + + + + 30.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45183460 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + false + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + false + + + Plug Load Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + Plug Load Total Power Is Not Applicable + false + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Tight + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 3 + Upgrade Common Area Lighting - Within the management office, there is a mix of incandescent and fluorescent bulbs controlled through manual switches. Bright Power recommends upgrading lighting fixtures to high efficiency LED lamps + + 0.0 + + 10 + 500.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 7 + Upgrade Apartment Lighting - . In-unit lighting maintained by the property owner consists of fixtures with compact fluorescent and incandescent lamps. Bright Power recommends replacing the non LED lights with LED technology lamps. + + 0.0 + + 15 + 59250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Other heating + + + + Entire building + Measure 1 + Adjust Outdoor Cutoff for Heating - Currently, the Heating controller is set to provide heating below 70 °F. Bright Power recommends reducing the outdoor cutoff to 55 °F + + 0.0 + + 5 + 250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Onsite Storage, Transmission, Generation + + + + + + + + + Install photovoltaic system + + + + Entire building + Measure 2 + Install 1046 kW Solar Photovoltaic System - The property recently installed a photovoltaic array across all of the carports at the property. + + 0.0 + + 25 + 1000000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Add pipe insulation + + + + Entire building + Measure 4 + Insulate Exposed Piping - There is approximately 22 feet (ft) of uninsulated hot water (HW) and domestic hot water (DHW) piping at the property. Insulate 2" and 3" piping with 2" insulation and 1" piping with 1" insulation. + + 0.0 + + 10 + 750.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + Measure 5 + Install Low-Flow Faucet Aerators and Showerheads - Water fixtures at the property include a wide variety of faucets and showerheads. Bright Power surveyed a sample of apartment units and measured average flows of 1.1 GPM per bathroom faucet, 1.3 GPM per kitchen faucet, and 2.3 GPM per showerhead. We recommend installing 1 GPM aerator for kitchen faucet and 1.5 GPM aerator for showerhead. + + 0.0 + + 10 + 34000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Pump + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure 6 + Install Variable Frequency Drives on HHW Pumps - The property has two (2) single-speed 7.5 HP HVAC distribution pumps that supply heating hot water to the apartments. Bright Power recommends replacing the existing HVAC distribution pump motors with premium efficiency motors and adding variable frequency drives (VFDs) + + 0.0 + + 15 + 51250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Install SHW controls + + + + Entire building + Measure 8 + Install Domestic Hot Water Recirculation Flow Control - Domestic hot water (DHW) is supplied through the existing heating boiler. Constant operation of the recirculation pump and the exposed DHW piping in the apartments result in significant heat loss through those pipes. Bright Power recommends installing a DHW recirculation demand control strategy at the property + + 0.0 + + 10 + 59250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Add or upgrade controls + + + + Entire building + Measure 9 + Install New Heating System Controller - Heating to the property is controlled using a Honeywell controller, which opens a valve that distributes heating hot water to the entire property. Currently, the controller can only handle a single outdoor air temperature setpoint. Bright Power recommends installing a new heating system controller which can take feedback from indoor temperature sensor. We also recommend installing 68 indoor temperature sensors in different apartments to communicate to the controller. + + 0.0 + + 15 + 64250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + + 2000 + + + + + All end uses + Site + 8.0 + 50.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 9.0 + 45.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 1483491.0 + + + + + + All end uses + Site + 178018.90625 + 335.7255559907747 + + + Linked Time Series ID + TimeSeriesType-45183820 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 177283.0 + + + + + + All end uses + Site + 156009.0 + 941.5500129999999 + + + Linked Time Series ID + TimeSeriesType-45183900 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2018-01-01T00:00:00+00:00 + 2018-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-02-01T00:00:00+00:00 + 2018-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-03-01T00:00:00+00:00 + 2018-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-04-01T00:00:00+00:00 + 2018-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-05-01T00:00:00+00:00 + 2018-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-06-01T00:00:00+00:00 + 2018-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-07-01T00:00:00+00:00 + 2018-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-08-01T00:00:00+00:00 + 2018-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-09-01T00:00:00+00:00 + 2018-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-10-01T00:00:00+00:00 + 2018-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-11-01T00:00:00+00:00 + 2018-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-12-01T00:00:00+00:00 + 2019-01-01T00:00:00+00:00 + Other + 2445.0 + + + + + + All end uses + Site + 112755.0 + 12771.0 + 25.517333819847778 + + + Linked Time Series ID + TimeSeriesType-45184020 + + + + + All end uses + Site + 96300.0 + 11167.0 + 21.793439287404915 + + + Linked Time Series ID + TimeSeriesType-45184060 + + + + + All end uses + Site + 102776.0 + 11926.0 + 23.25900847562126 + + + Linked Time Series ID + TimeSeriesType-45184100 + + + + + All end uses + Site + 100553.0 + 11647.0 + 22.755926278986774 + + + Linked Time Series ID + TimeSeriesType-45184140 + + + + + All end uses + Site + 132761.0 + 14409.0 + 30.0448472817774 + + + Linked Time Series ID + TimeSeriesType-45184180 + + + + + All end uses + Site + 150160.0 + 17049.0 + 33.98237635925983 + + + Linked Time Series ID + TimeSeriesType-45184220 + + + + + All end uses + Site + 184348.0 + 20099.0 + 41.71938676795972 + + + Linked Time Series ID + TimeSeriesType-45184260 + + + + + All end uses + Site + 180373.0 + 19467.0 + 40.81981333942977 + + + Linked Time Series ID + TimeSeriesType-45184300 + + + + + All end uses + Site + 153838.0 + 17633.0 + 34.8147363769034 + + + Linked Time Series ID + TimeSeriesType-45184340 + + + + + All end uses + Site + 121357.0 + 13913.0 + 27.464033349964673 + + + Linked Time Series ID + TimeSeriesType-45184380 + + + + + All end uses + Site + 107305.0 + 12119.0 + 24.283956414693503 + + + Linked Time Series ID + TimeSeriesType-45184420 + + + + + All end uses + Site + 114688.0 + 12661.0 + 25.95478676006121 + + + Linked Time Series ID + TimeSeriesType-45184460 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2018-01-01T00:00:00+00:00 + 2018-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-02-01T00:00:00+00:00 + 2018-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-03-01T00:00:00+00:00 + 2018-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-04-01T00:00:00+00:00 + 2018-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-05-01T00:00:00+00:00 + 2018-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-06-01T00:00:00+00:00 + 2018-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-07-01T00:00:00+00:00 + 2018-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-08-01T00:00:00+00:00 + 2018-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-09-01T00:00:00+00:00 + 2018-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-10-01T00:00:00+00:00 + 2018-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-11-01T00:00:00+00:00 + 2018-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-12-01T00:00:00+00:00 + 2019-01-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 32676.0 + 30258.0 + 173.542236 + + + Linked Time Series ID + TimeSeriesType-45184540 + + + + + All end uses + Site + 24045.0 + 22445.0 + 127.702995 + + + Linked Time Series ID + TimeSeriesType-45184580 + + + + + All end uses + Site + 26316.0 + 18283.0 + 139.764276 + + + Linked Time Series ID + TimeSeriesType-45184620 + + + + + All end uses + Site + 17576.0 + 15938.0 + 93.346136 + + + Linked Time Series ID + TimeSeriesType-45184660 + + + + + All end uses + Site + 7387.0 + 6997.0 + 39.23235699999999 + + + Linked Time Series ID + TimeSeriesType-45184700 + + + + + All end uses + Site + 5366.0 + 5203.0 + 28.498825999999998 + + + Linked Time Series ID + TimeSeriesType-45184740 + + + + + All end uses + Site + 4717.0 + 4616.0 + 25.051986999999997 + + + Linked Time Series ID + TimeSeriesType-45184780 + + + + + All end uses + Site + 4709.0 + 4461.0 + 25.009498999999998 + + + Linked Time Series ID + TimeSeriesType-45184820 + + + + + All end uses + Site + 4880.0 + 4631.0 + 25.91768 + + + Linked Time Series ID + TimeSeriesType-45184860 + + + + + All end uses + Site + 10311.0 + 9706.0 + 54.761720999999994 + + + Linked Time Series ID + TimeSeriesType-45184900 + + + + + All end uses + Site + 19615.0 + 15620.0 + 104.175265 + + + Linked Time Series ID + TimeSeriesType-45184940 + + + + + All end uses + Site + 22897.0 + 21187.0 + 121.60596699999999 + + + Linked Time Series ID + TimeSeriesType-45184980 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + Natural gas + Site + therms + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Heating + 5000.0 + + + Net + CO2e + 1.1315389038112624 + + + + + Electricity + Site + kWh + Not shared + Cooling + 277647.375 + + + Net + CO2e + 62.8337612707149 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Ventilation + 14621.6298828125 + + + Net + CO2e + 3.3089886099063306 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Total lighting + 353593.90625 + + + Net + CO2e + 80.02105221449345 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Refrigeration + 108528.0 + + + Net + CO2e + 24.56073083056574 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Laundry + 12291.3798828125 + + + Net + CO2e + 2.781634903785092 + + + + + Other End Use + Laundry + + + + + Electricity + Site + kWh + Not shared + Laundry + 646251.0625 + + + Net + CO2e + 146.25164376962272 + + + + + Other End Use + Plug Load + + + + + Electricity + Site + kWh + Not shared + Laundry + 4260.22021484375 + + + Net + CO2e + 0.9641209823797756 + + + + + Other End Use + Pumps and Motors + + + + + Natural gas + Site + therms + Not shared + Heating + 114797.4609375 + + + Net + CO2e + 609.6893150390625 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 38920.16015625 + + + Net + CO2e + 206.70497058984375 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Cooking + 12240.0 + + + Net + CO2e + 65.00664 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Laundry + 14537.1904296875 + + + Net + CO2e + 77.20701837207031 + + + + + Other End Use + Laundry + + + + + Electricity + Site + kWh + Not shared + All end uses + 1422193.5737304688 + + + Net + CO2e + 321.8534714852793 + + + + + Natural gas + Site + therms + Not shared + All end uses + 180494.8115234375 + + + Net + CO2e + 958.6079440009765 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + Lighting Retrofits + Current + + + + + + + 60000 + + + Electricity + kWh + 200000.0 + + + Natural gas + therms + 2000.0 + + + 0.0 + + + USGBC Narrative + This package improves energy efficiency and lighting quality by replacing outdated incandescent and fluorescent bulbs with high-efficiency LED lighting in both common areas and residential units. These upgrades reduce energy consumption, lower maintenance costs, and enhance overall illumination throughout the property. + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Other ECMs + Current + + + + + + + + + + + + 100400 + + + Electricity + kWh + 200000.0 + + + Natural gas + therms + 1000.0 + + + 0.0 + + + USGBC Narrative + This package includes energy and water-saving measures that enhance system efficiency and reduce heat loss. It features a new heating system controller with indoor sensors, outdoor cutoff reset, VFDs on hot water pumps, and demand-based DHW recirculation control. Additional measures include pipe insulation, low-flow water fixtures, and a newly installed 1,046 kW solar PV system to offset site energy use. + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2018-06-01 + Custom + Level 1: Walk-through + + + 2018-12-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + + + + + + + + + 0.27 + + + Master meter without sub metering + 123ABC + + + + + 0.67 + + + Direct metering + XYZ123 + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + Level 3 Audit not required for this city. + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + Chula Vista Level 2 Audit Report + + + Auditor Years Of Experience + 4 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + A. Example Auditor + Auditor Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.auditor@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45183520 + Energy Auditor + + + Contact Role For Qualification-45183560 + Energy Auditor + + + Contributor Contact ID For Qualification-45183560 + ContactType-45183540 + + + Contributor Contact Role For Qualification-45183560 + Energy Auditor + + + Other Qualification Type For Qualification-45183560 + + + + + + + Owner + + A. Example Building Owner + Building Owner Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.owner@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45183520 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/DC GSA Headquarters.xml b/spec/files/v2.7.0/DC GSA Headquarters.xml new file mode 100644 index 0000000..8190279 --- /dev/null +++ b/spec/files/v2.7.0/DC GSA Headquarters.xml @@ -0,0 +1,127 @@ + + + + + + + DC0021ZZ GSA Headquarters + Office +
+ Washington + DC + 20006 +
+ + + Gross + 827564 + + + + + Commercial + + + 5 + Days per week + + + 12 + Months per year + + + + GSA + Region 3 + + + + 2015 + + + 1917 + 2013 + 78 + + +
+
+ + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + + Add daylight controls + + + + Lighting Controls + + 341852 + 18500 + + + Electricity + kWh + + + + + + + + + + + + + + + + + + + AERG Package + + + + + + 6830 + 285400 + 500 + 1089271 + 3544 + 0 + 0 + 0 + + + + + + + + + + + +
+
+
diff --git a/spec/files/v2.7.0/DC GSA HeadquartersWithClimateZone.xml b/spec/files/v2.7.0/DC GSA HeadquartersWithClimateZone.xml new file mode 100644 index 0000000..9043809 --- /dev/null +++ b/spec/files/v2.7.0/DC GSA HeadquartersWithClimateZone.xml @@ -0,0 +1,132 @@ + + + + + + + DC0021ZZ GSA Headquarters + Office +
+ Washington + DC + 20006 +
+ + + 2B + + + + + Gross + 827564 + + + + + Commercial + + + 5 + Days per week + + + 12 + Months per year + + + + GSA + Region 3 + + + + 2015 + + + 1917 + 2013 + 78 + + +
+
+ + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + + Add daylight controls + + + + Lighting Controls + + 341852 + 18500 + + + Electricity + kWh + + + + + + + + + + + + + + + + + + + AERG Package + + + + + + 6830 + 285400 + 500 + 1089271 + 3544 + 0 + 0 + 0 + + + + + + + + + + + +
+
+
diff --git a/spec/files/v2.7.0/Demo_ASHRAE_L2_Example_Building.xml b/spec/files/v2.7.0/Demo_ASHRAE_L2_Example_Building.xml new file mode 100644 index 0000000..c2ed550 --- /dev/null +++ b/spec/files/v2.7.0/Demo_ASHRAE_L2_Example_Building.xml @@ -0,0 +1,3899 @@ + + + + + + + + + + Demo ASHRAE L2 Example Building + This is a fictional building for demonstration purposes. + + + Custom + City Custom Building ID + + + + Custom + Portfolio Manager Building ID + + + + Custom + Audit Template Building ID + 46820 + + + + + + 123 Street + + + Washington + DC + 20037 + + + RFCE + + Multifamily + false + 3 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 248800.0 + + + Heated and Cooled + 236360.0 + + + Heated only + 9152.0 + + + 145000.0 + 0.0 + 0.0 + 0.15000000596046448 + 2010 + 2017 + 2018-01-01 + 2015 + 100.0 + 0.0 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Average + + + + + + + + + + + + + + + + + + + Space function + Multifamily + Multifamily + + + Peak total occupants + 898 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Apartment units + 272 + 90 + + + + + Gross + 248800.0 + + + Conditioned + 248800.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 200.0 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2018-01-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + false + + + Premises Identifier For Atlanta Building ID Is Not Applicable + false + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + true + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + false + + + Roof Area + 96204.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + 3135.0 + kBtu/hr + 86.0 + AFUE + 1 + + Average + Natural gas + false + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + true + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Notes + + + + Heating Plant Notes Is Not Applicable + true + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + + + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + false + false + + + Radiator + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Central Distribution Type + Hydronic + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + true + + + + + + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + 11.0 + EER + 6.0 + kBtu/hr + Electricity + Good + Interior + 2010 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 900 + + + + + + + Local fan + + + + + + + + + + false + false + + + + + + + + + + + + + None + false + + + + + + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Central Distribution Type + None (unitized heating/cooling) + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + T8 + Unknown + + + Premium Electronic + false + + + + EMCS + + + + + Manual On/Off + + + + + Occupancy Sensors + + + + + + + + + + + + Gross + 30.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45114660 + + + + Common Areas Lighting Power Density For Section-45114660 + + + + Tenant Areas Lighting Power Density For Section-45114660 + + + + Quantity Of Luminaires For Section-45114660 + + + + Common Areas Quantity Of Luminaires For Section-45114660 + + + + Tenant Areas Quantity Of Luminaires For Section-45114660 + + + + + + + + LED + + + Standard Electronic + false + + + + Manual On/Off + + + + + Photocell + + + + + + + + + + + + Gross + 50.0 + + + + + + + + Lighting System Name + Fixture 2 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45114660 + + + + Common Areas Lighting Power Density For Section-45114660 + + + + Tenant Areas Lighting Power Density For Section-45114660 + + + + Quantity Of Luminaires For Section-45114660 + + + + Common Areas Quantity Of Luminaires For Section-45114660 + + + + Tenant Areas Quantity Of Luminaires For Section-45114660 + + + + + + + + Unknown + + + No Ballast + false + + + + Manual On/Off + + + + + + + + + + + + Gross + 20.0 + + + + + + + + Lighting System Name + Fixture 3 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45114660 + + + + Common Areas Lighting Power Density For Section-45114660 + + + + Tenant Areas Lighting Power Density For Section-45114660 + + + + Quantity Of Luminaires For Section-45114660 + + + + Common Areas Quantity Of Luminaires For Section-45114660 + + + + Tenant Areas Quantity Of Luminaires For Section-45114660 + + + + + + + + + + + + + + + + + + + AFUE + 80.0 + 1990 + District hot water + + Garage + + + + + + + + + Gross + 100.0 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + true + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + true + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + true + + + Storage Tank Insulation Thickness Is Not Applicable + true + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Variable Volume + + + + + + Constant Volume + + + + + + + + Steel frame + Metal panel + + + 13.0 + + + + + + + Built up + false + false + false + + + 20.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Aluminum no thermal break + false + Average + Clear uncoated + Double pane + + + Year Installed Is Not Applicable + false + + + + + + + Wood + + + + + + + + 30.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45115180 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + false + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + false + + + Plug Load Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + Plug Load Total Power Is Not Applicable + false + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Tight + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 3 + Upgrade Common Area Lighting - Within the management office, there is + a mix of incandescent and fluorescent bulbs controlled through manual switches. Bright + Power recommends upgrading lighting fixtures to high efficiency LED lamps + + 0.0 + + 10 + 500.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 7 + Upgrade Apartment Lighting - . In-unit lighting maintained by the + property owner consists of fixtures with compact fluorescent and incandescent lamps. + Bright Power recommends replacing the non LED lights with LED technology lamps. + + 0.0 + + 15 + 59250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Other heating + + + + Entire building + Measure 1 + Adjust Outdoor Cutoff for Heating - Currently, the Heating controller + is set to provide heating below 70 °F. Bright Power recommends reducing the outdoor + cutoff to 55 °F + + 0.0 + + 5 + 250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Onsite Storage, Transmission, Generation + + + + + + + + + Install photovoltaic system + + + + Entire building + Measure 2 + Install 1046 kW Solar Photovoltaic System - The property recently + installed a photovoltaic array across all of the carports at the property. + + 0.0 + + 25 + 0.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Add pipe insulation + + + + Entire building + Measure 4 + Insulate Exposed Piping - There is approximately 22 feet (ft) of + uninsulated hot water (HW) and domestic hot water (DHW) piping at the property. Insulate + 2" and 3" piping with 2" insulation and 1" piping with 1" + insulation. + + 0.0 + + 10 + 750.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + Measure 5 + Install Low-Flow Faucet Aerators and Showerheads - Water fixtures at + the property include a wide variety of faucets and showerheads. Bright Power surveyed a + sample of apartment units and measured average flows of 1.1 GPM per bathroom faucet, 1.3 + GPM per kitchen faucet, and 2.3 GPM per showerhead. We recommend installing 1 GPM + aerator for kitchen faucet and 1.5 GPM aerator for showerhead. + + 0.0 + + 10 + 34000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Pump + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure 6 + Install Variable Frequency Drives on HHW Pumps - The property has two + (2) single-speed 7.5 HP HVAC distribution pumps that supply heating hot water to the + apartments. Bright Power recommends replacing the existing HVAC distribution pump motors + with premium efficiency motors and adding variable frequency drives (VFDs) + + 0.0 + + 15 + 51250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Install SHW controls + + + + Entire building + Measure 8 + Install Domestic Hot Water Recirculation Flow Control - Domestic hot + water (DHW) is supplied through the existing heating boiler. Constant operation of the + recirculation pump and the exposed DHW piping in the apartments result in significant + heat loss through those pipes. Bright Power recommends installing a DHW recirculation + demand control strategy at the property + + 0.0 + + 10 + 59250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Add or upgrade controls + + + + Entire building + Measure 9 + Install New Heating System Controller - Heating to the property is + controlled using a Honeywell controller, which opens a valve that distributes heating + hot water to the entire property. Currently, the controller can only handle a single + outdoor air temperature setpoint. Bright Power recommends installing a new heating + system controller which can take feedback from indoor temperature sensor. We also + recommend installing 68 indoor temperature sensors in different apartments to + communicate to the controller. + + 0.0 + + 15 + 64250.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + + 2000 + + + + + All end uses + Site + 8.0 + 50.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 9.0 + 45.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 1483491.0 + + + + + + All end uses + Site + 178018.90625 + 444.0077023258073 + + + Linked Time Series ID + TimeSeriesType-45115540 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 177283.0 + + + + + + All end uses + Site + 156009.0 + 941.5500129999999 + + + Linked Time Series ID + TimeSeriesType-45115620 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2018-01-01T00:00:00+00:00 + 2018-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-02-01T00:00:00+00:00 + 2018-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-03-01T00:00:00+00:00 + 2018-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-04-01T00:00:00+00:00 + 2018-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-05-01T00:00:00+00:00 + 2018-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-06-01T00:00:00+00:00 + 2018-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-07-01T00:00:00+00:00 + 2018-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-08-01T00:00:00+00:00 + 2018-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-09-01T00:00:00+00:00 + 2018-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-10-01T00:00:00+00:00 + 2018-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-11-01T00:00:00+00:00 + 2018-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-12-01T00:00:00+00:00 + 2019-01-01T00:00:00+00:00 + Other + 2445.0 + + + + + + All end uses + Site + 112755.0 + 12771.0 + 33.74748379042839 + + + Linked Time Series ID + TimeSeriesType-45115740 + + + + + All end uses + Site + 96300.0 + 11167.0 + 28.822515090401794 + + + Linked Time Series ID + TimeSeriesType-45115780 + + + + + All end uses + Site + 102776.0 + 11926.0 + 30.760776852867444 + + + Linked Time Series ID + TimeSeriesType-45115820 + + + + + All end uses + Site + 100553.0 + 11647.0 + 30.095434682089007 + + + Linked Time Series ID + TimeSeriesType-45115860 + + + + + All end uses + Site + 132761.0 + 14409.0 + 39.73526402821217 + + + Linked Time Series ID + TimeSeriesType-45115900 + + + + + All end uses + Site + 150160.0 + 17049.0 + 44.94277119392246 + + + Linked Time Series ID + TimeSeriesType-45115940 + + + + + All end uses + Site + 184348.0 + 20099.0 + 55.175212999848284 + + + Linked Time Series ID + TimeSeriesType-45115980 + + + + + All end uses + Site + 180373.0 + 19467.0 + 53.98549859191114 + + + Linked Time Series ID + TimeSeriesType-45116020 + + + + + All end uses + Site + 153838.0 + 17633.0 + 46.043593732889214 + + + Linked Time Series ID + TimeSeriesType-45116060 + + + + + All end uses + Site + 121357.0 + 13913.0 + 36.32205569912659 + + + Linked Time Series ID + TimeSeriesType-45116100 + + + + + All end uses + Site + 107305.0 + 12119.0 + 32.11630302986048 + + + Linked Time Series ID + TimeSeriesType-45116140 + + + + + All end uses + Site + 114688.0 + 12661.0 + 34.32602918679128 + + + Linked Time Series ID + TimeSeriesType-45116180 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2018-01-01T00:00:00+00:00 + 2018-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-02-01T00:00:00+00:00 + 2018-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-03-01T00:00:00+00:00 + 2018-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-04-01T00:00:00+00:00 + 2018-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-05-01T00:00:00+00:00 + 2018-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-06-01T00:00:00+00:00 + 2018-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-07-01T00:00:00+00:00 + 2018-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-08-01T00:00:00+00:00 + 2018-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-09-01T00:00:00+00:00 + 2018-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-10-01T00:00:00+00:00 + 2018-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-11-01T00:00:00+00:00 + 2018-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2018-12-01T00:00:00+00:00 + 2019-01-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 32676.0 + 30258.0 + 173.542236 + + + Linked Time Series ID + TimeSeriesType-45116260 + + + + + All end uses + Site + 24045.0 + 22445.0 + 127.702995 + + + Linked Time Series ID + TimeSeriesType-45116300 + + + + + All end uses + Site + 26316.0 + 18283.0 + 139.764276 + + + Linked Time Series ID + TimeSeriesType-45116360 + + + + + All end uses + Site + 17576.0 + 15938.0 + 93.346136 + + + Linked Time Series ID + TimeSeriesType-45116400 + + + + + All end uses + Site + 7387.0 + 6997.0 + 39.23235699999999 + + + Linked Time Series ID + TimeSeriesType-45116440 + + + + + All end uses + Site + 5366.0 + 5203.0 + 28.498825999999998 + + + Linked Time Series ID + TimeSeriesType-45116480 + + + + + All end uses + Site + 4717.0 + 4616.0 + 25.051986999999997 + + + Linked Time Series ID + TimeSeriesType-45116520 + + + + + All end uses + Site + 4709.0 + 4461.0 + 25.009498999999998 + + + Linked Time Series ID + TimeSeriesType-45116560 + + + + + All end uses + Site + 4880.0 + 4631.0 + 25.91768 + + + Linked Time Series ID + TimeSeriesType-45116600 + + + + + All end uses + Site + 10311.0 + 9706.0 + 54.761720999999994 + + + Linked Time Series ID + TimeSeriesType-45116640 + + + + + All end uses + Site + 19615.0 + 15620.0 + 104.175265 + + + Linked Time Series ID + TimeSeriesType-45116680 + + + + + All end uses + Site + 22897.0 + 21187.0 + 121.60596699999999 + + + Linked Time Series ID + TimeSeriesType-45116720 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Heating + 5000.0 + + + Net + CO2e + 1.4964961106127619 + + + + + Electricity + Site + kWh + Not shared + Cooling + 277647.375 + + + Net + CO2e + 83.0996433618686 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Ventilation + 14621.6298828125 + + + Net + CO2e + 4.376242450089648 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Total lighting + 353593.90625 + + + Net + CO2e + 105.83038108789971 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Refrigeration + 108528.0 + + + Net + CO2e + 32.48234597851636 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Laundry + 12291.3798828125 + + + Net + CO2e + 3.67880043773857 + + + + + Other End Use + Laundry + + + + + Electricity + Site + kWh + Not shared + Laundry + 646251.0625 + + + Net + CO2e + 193.42244030212296 + + + + + Other End Use + Plug Load + + + + + Electricity + Site + kWh + Not shared + Laundry + 4260.22021484375 + + + Net + CO2e + 1.2750805963735072 + + + + + Other End Use + Pumps and Motors + + + + + Natural gas + Site + therms + Not shared + Heating + 114797.4609375 + + + Net + CO2e + 609.6893150390625 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 38920.16015625 + + + Net + CO2e + 206.70497058984375 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Cooking + 12240.0 + + + Net + CO2e + 65.00664 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Laundry + 14537.1904296875 + + + Net + CO2e + 77.20701837207031 + + + + + Other End Use + Laundry + + + + + Electricity + Site + kWh + Not shared + All end uses + 1422193.5737304688 + + + Net + CO2e + 425.6614303252221 + + + + + Natural gas + Site + therms + Not shared + All end uses + 180494.8115234375 + + + Net + CO2e + 958.6079440009765 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + Lighting Retrofits + Current + + + + + + + 60000 + + + Electricity + kWh + 200000.0 + + + Natural gas + therms + 2000.0 + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Other ECMs + Current + + + + + + + + + + + + 100400 + + + Electricity + kWh + 200000.0 + + + Natural gas + therms + 1000.0 + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2018-06-01 + Custom + Level 1: Walk-through + + + 2018-12-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + + + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + Level 3 Audit not required for this city. + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + Demo ASHRAE Level 2 Report + + + Auditor Years Of Experience + 4 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + A. Example Auditor + Auditor Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.auditor@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45115240 + Energy Auditor + + + Contact Role For Qualification-45115280 + Energy Auditor + + + Contributor Contact ID For Qualification-45115280 + ContactType-45115260 + + + Contributor Contact Role For Qualification-45115280 + Energy Auditor + + + Other Qualification Type For Qualification-45115280 + + + + + + + Owner + + A. Example Building Owner + Building Owner Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.owner@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45115240 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example - Invalid Schema.xml b/spec/files/v2.7.0/Example - Invalid Schema.xml new file mode 100644 index 0000000..67ed96b --- /dev/null +++ b/spec/files/v2.7.0/Example - Invalid Schema.xml @@ -0,0 +1,806 @@ + + + + + Example Building + + + + Custom + BIN + 111 + + + Custom + EER + A + + + 32 + 2 + true + false + + + Conditioned + 275345.0 + + + Cooled only + 0.0 + + + Gross + 275345.0 + + + Heated and Cooled + 275345.0 + + + Heated only + 0.0 + + + 50000.0 + 5000.0 + 1999 + 2015 + 2012-01-01 + 2011 + 100.0 + 2 + + + Office + + + 60.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 275345.0 + + + Common + 27534.5 + + + Tenant + 247810.5 + + + + + Parking + + + Gross + 20000.0 + + + Common + 20000.0 + + + Tenant + 0.0 + + + + + + + Above Grade Demising Wall Area + 0.0 + + + Spaces Excluded from GFA + + + + + + + + + + + + Direct steam + Full Modulation Manual + Unknown + 120.0 + kBtu/hr + 82.0 + AFUE + 2 + + + + + Absorption + Other + + Single effect + 0.7200000286102295 + kW/ton + 12.0 + kBtu/hr + 2 + + Average + + + + Cooling tower + Fixed Flow + Single Speed + + + + + Multi zone + + + + + kBtu/hr + + + + + + kBtu/hr + + + + + + + Local fan + + + + + + + + + + + + + true + + + Delivery-70234392832520 + + + Type + none + + + + + + + + + + + + PercentPremisesServedCommon-Subsection-1 + 100 + + + PercentPremisesServedTenant-Subsection-1 + 100 + + + DistributionEquipmentType + Forced Air + + + OtherCentralDistributionType + + + + OtherDistributionEquipmentType + + + + + + + Single zone + + + + + kBtu/hr + + + + + + kBtu/hr + + + + + + + Central fan + + + + + + + + + + + + + false + + + Delivery-70234392685980 + + + Type + none + + + + + + + + + + + + PercentPremisesServedCommon-Subsection-70234398249320 + 100 + + + PercentPremisesServedTenant-Subsection-70234398249320 + 0 + + + DistributionEquipmentType + Forced Air + + + OtherCentralDistributionType + + + + OtherDistributionEquipmentType + + + + + + + + + + LED + + + Electronic + Plug-in + 15 + 1 + + + + + + + + PercentPremisesServedCommon-Subsection-70234398269980 + 0.0 + + + PercentPremisesServedTenant-Subsection-70234398269980 + 50.0 + + + + + + + T8 + Unknown + + + Electronic + Recessed + 32 + 4 + + + + + + + + + PercentPremisesServed-Subsection-70234398269980 + 0.0 + + + PercentPremisesServedCommon-Subsection-70234398269980 + 0.0 + + + PercentPremisesServedTenant-Subsection-70234398269980 + 0.0 + + + PercentPremisesServedCommon-Subsection-70234398249320 + 100.0 + + + PercentPremisesServedTenant-Subsection-70234398249320 + 0.0 + + + + + + + + + + + + + Unknown + + + + + 90.0 + 20.0 + 2.0 + + + Distributed + Thermal Efficiency + 80.0 + 1999 + Natural gas + Mechanical Room + + + + + + + + PercentPremisesServedCommon-Subsection-2 + 100 + + + PercentPremisesServedTenant-Subsection-2 + 100 + + + DomesticHotWaterType + Direct Fired- Storage + + + + + + + + + + + + + + + + + + + PercentPremisesServedCommon-Subsection-2 + 100 + + + PercentPremisesServedTenant-Subsection-2 + 0 + + + DomesticHotWaterType + No SHW System + + + + + + + Constant Volume + + + + + + Steel frame + Metal panel + + + 20.0 + + + + + + + Built up + + 20.0 + + Concrete + Sloped + + + Built up + + 3.0 + + Steel + Flat + + + + + + + + Aluminum no thermal break + false + Clear uncoated + yes + Double pane + 0.9 + 0.7 + 0.6 + + + + + + + + + + + + + + + Critical IT System + + + + Upgrade servers + + + + new servers + + + + + 1000.0 + + 8.0 + 30000.0 + true + + + Change in O&M Cost Annually + 800.0 + + + + + Domestic Hot Water + + + + Insulate DHW tank + + + + add insulation + + + + + 100.0 + + 2.0 + 500.0 + true + + + Change in O&M Cost Annually + 500.0 + + + + + Domestic Hot Water + + + + Install heat pump DHW system + + + + Hilton bldg only + + + + + 50.0 + + 2.0 + 100.0 + true + + + Change in O&M Cost Annually + 100.0 + + + + + + + + Computer pack + + + + + + 1500 + + Electricity + kWh + 1000.0 + + + Natural gas + therms + 300.0 + + + Fuel oil no 1 + Gallons + 10.0 + + + Fuel oil no 2 + Gallons + 20.0 + + 500.0 + + + + + + + + + + Recommendation Category + Low Cost and No Cost Recommendations + + + + + SHW package + + + + + + + 1000 + + Electricity + kWh + 50.0 + + + Natural gas + therms + 100.0 + + + District steam + Mlbs + 0.0 + + + Fuel oil no 1 + Gallons + 20.0 + + + Fuel oil no 2 + Gallons + 0.0 + + 150.0 + + + + + + + + + + Recommendation Category + Low Cost and No Cost Recommendations + + + + + + + 56.0 + + + + + + + + + + + + Natural gas + Site + therms + Domestic hot water + 800.0 + + + Electricity + Site + kWh + Cooling + 333.0 + + + Natural gas + Site + therms + All end uses + 800.0 + + + Electricity + Site + kWh + All end uses + 333.0 + + + + + + + + + + + Certified Energy Auditor (CEA) + 1234 + 2018-08-01 + + + + 1234 + 2018-08-01 + + Building Performance Institute (BPI) Certification + + + 1234 + 2018-08-01 + + Department of Buildings (DOB) Approved Agent + + + + ASHRAEAuditLevel1Date + 2017-01-31 + + + ASHRAEAuditLevel2Date + 2017-08-01 + + + Auditor's Years of Experience + 5 + + + + + + Energy Auditor + Bob Auditor - Aud + Auditor Company + + + + 123 Street + + + Chicago + IL + 60601 + + + (222) 222-2222 + + + bob.auditor@test.com + + + + + + BIN + 1234 + + + Borough + Manhattan + + + BuildingsOnLot + 2 + + + EER + A + + + PropertyName + Test Property + + + TaxBlock + 1234 + + + TaxLot + 1234 + + + \ No newline at end of file diff --git "a/spec/files/v2.7.0/Example \342\200\223 Valid Schema Invalid UseCase.xml" "b/spec/files/v2.7.0/Example \342\200\223 Valid Schema Invalid UseCase.xml" new file mode 100644 index 0000000..d692940 --- /dev/null +++ "b/spec/files/v2.7.0/Example \342\200\223 Valid Schema Invalid UseCase.xml" @@ -0,0 +1,1055 @@ + + + + + + + + + + 123 Main St + + + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 001 + + + + Assessor parcel number + PN 001 + + + Custom + Custom ID 1 + 001 + + + Custom + City Custom Building ID + 001 + + + 1 + 0 + + + Gross + 75000 + + + Heated and Cooled + 75000 + + + Footprint + 80000 + + + 3.6732677131179763 + 1350 + 1960 + 2008 + + + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Retrofit with light emitting diode technologies + 0 + 12 + 267390.2 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Plug Load + + + + + + + + + Replace with ENERGY STAR rated + + + + Entire building + Replace with ENERGY STAR rated + 0 + 9 + 35420.520000000004 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Wall + + + + + + + + + Air seal envelope + + + + Entire building + Air seal envelope + 0 + 11 + 162517.68 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Cooling System + + + + + + + + + Replace package units + + + + Entire building + Replace package units + 0 + 15 + 290309.36 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Heating System + + + + + + + + + Replace burner + + + + Entire building + Replace burner + 0 + 20 + 61812.28 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Lighting + + + + + + + + + Add daylight controls + + + + Entire building + Add daylight controls + 0 + 8 + 36809.560000000005 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + Add occupancy sensors + 0 + 8 + 107650.6 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Plug Load + + + + + + + + + Install plug load controls + + + + Entire building + Install plug load controls + 0 + 6 + 56950.64 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Wall + + + + + + + + + Increase wall insulation + + + + Entire building + Increase wall insulation + 0 + 20 + 113206.76 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Wall + + + + + + + + + Insulate thermal bypasses + + + + Entire building + Insulate thermal bypasses + 0 + 20 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Roof + + + + + + + + + Increase roof insulation + + + + Entire building + Increase roof insulation + 0 + 20 + 1004275.92 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Ceiling + + + + + + + + + Increase ceiling insulation + + + + Entire building + Increase ceiling insulation + 0 + 20 + 185436.84 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Fenestration + + + + + + + + + Add window films + + + + Entire building + Add window films + 0 + 10 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + General Controls and Operations + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + Upgrade operating protocols, calibration, and/or sequencing + 0 + 11 + 347.26 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Domestic Hot Water + + + + + + + + + Replace or upgrade water heater + + + + Entire building + Replace or upgrade water heater + 0 + 10 + 11806.84 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Refrigeration + + + + + + + + + Replace ice/refrigeration equipment with high efficiency units + + + + Entire building + Replace ice/refrigeration equipment with high efficiency units + 0 + 13 + 135431.4 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Fenestration + + + + + + + + + Replace windows + + + + Entire building + Replace windows + 0 + 20 + 154877.96 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + Replace boiler + 0 + 20 + 65979.4 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Other HVAC + + + + + + + + + Replace AC and heating units with ground coupled heat pump systems + + + + Entire building + Replace AC and heating units with ground coupled heat pump systems + 0 + 15 + 972328.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Other HVAC + + + + + + + + + Other + + + + Entire building + VRF with DOAS + 0 + 10 + 1157070.32 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + Replace HVAC system type to VRF + + + + + Other HVAC + + + + + + + + + Other + + + + Entire building + Replace HVAC system type to PZHP + 0 + 15 + 295865.51999999996 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + Replace HVAC system type to PZHP + + + + + Fan + + + + + + + + + Replace with higher efficiency + + + + Entire building + Replace with higher efficiency + 0 + 15 + 746609.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Air Distribution + + + + + + + + + Improve ventilation fans + + + + Entire building + Improve ventilation fans + 0 + 4 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + Install demand control ventilation + 0 + 10 + 22919.16 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Air Distribution + + + + + + + + + Add or repair economizer + + + + Entire building + Add or repair economizer + 0 + 13 + 55561.600000000006 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Heat Recovery + + + + + + + + + Add energy recovery + + + + Entire building + Add energy recovery + 0 + 14 + 314617.56 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Domestic Hot Water + + + + + + + + + Add pipe insulation + + + + Entire building + Add pipe insulation + 0 + 12 + 9723.28 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Domestic Hot Water + + + + + + + + + Add recirculating pumps + + + + Entire building + Add recirculating pumps + 0 + 15 + 12501.359999999999 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Water Use + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + Install low-flow faucets and showerheads + 0 + 10 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + + + + + Baseline + + + + + + + + LED Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Electric_Appliance_30%_Reduction Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Air_Seal_Infiltration_30%_More_Airtight Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + + + + + diff --git a/spec/files/v2.7.0/Example_ASHRAE_L2_Report.xml b/spec/files/v2.7.0/Example_ASHRAE_L2_Report.xml new file mode 100644 index 0000000..6fa3191 --- /dev/null +++ b/spec/files/v2.7.0/Example_ASHRAE_L2_Report.xml @@ -0,0 +1,2273 @@ + + + + + + + + + + Example ASHRAE L2 Report + + + + Custom + Atlanta Building ID + + + + Custom + City Custom Building ID + + + + Custom + Portfolio Manager Building ID + + + + Custom + Audit Template Building ID + 23860 + + + + + + 123 Example Street + + + Lakewood + CA + 91342 + + + CAMX + + Office + false + 5 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 30000.0 + + + Heated and Cooled + 28000.0 + + + Heated only + 0.0 + + + 10000.0 + 0.0 + 0.0 + 0.800000011920929 + 2019 + 1.0 + 9.0 + + + Whole building + Rectangular + + + + + + + + + + + + + + + + + + Space function + Office + Office + + + Peak total occupants + 5 + + + + + 70.0 + Hours per week + + + 48.0 + Weeks per year + + + + + Gross + 30000.0 + + + Conditioned + 28500.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 0.0 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Packaged Rooftop Air Conditioner + + + Principal Lighting System Type + Compact Fluorescent + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2021-04-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + true + + + Onsite Generation System For Microturbine Is Not Applicable + true + + + Onsite Generation System For PV Is Not Applicable + true + + + Onsite Generation System For Reciprocating engine Is Not Applicable + true + + + Onsite Generation System For Turbine Is Not Applicable + true + + + Onsite Generation System For Wind Is Not Applicable + true + + + Onsite Generation System Is Not Applicable + true + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + true + + + Onsite Renewable System Is Not Applicable + true + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + true + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + true + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + true + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 30000.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + true + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + true + + + Shared Heating + false + + + Shared Heating Is Not Applicable + true + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + true + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + true + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + true + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + true + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + true + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + true + + + Year Of Last Major Remodel Is Not Applicable + true + + + + + + + + + + + + + + + + 9.0 + COP + 10000.0 + kBtu/hr + Natural gas + Average + Roof + 2001 + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + false + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + 10 + + + + + + + + 20.0 + SEER + 10000.0 + kBtu/hr + Electricity + Average + Roof + 2004 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 8 + + + + + + + Central fan + + + + + + + + + + + Dry bulb temperature + + false + false + + + + + + + + + + + + + Energy recovery ventilator + false + + + + + + + + + + + + + + + + Central Distribution Type + Forced Air + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + Unknown + Unknown + + + Premium Electronic + false + + + + Manual On/Off + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45021060 + + + + Common Areas Lighting Power Density For Section-45021060 + + + + Tenant Areas Lighting Power Density For Section-45021060 + + + + Quantity Of Luminaires For Section-45021060 + + + + Common Areas Quantity Of Luminaires For Section-45021060 + + + + Tenant Areas Quantity Of Luminaires For Section-45021060 + + + + + + + + + + + + + + + + + + + Distributed + 0.800000011920929 + 1990 + Natural gas + Mechanical Floor + + + Draft Type Is Not Applicable + false + + + Heating Plant ID Is Not Applicable + false + + + Hot Water Distribution Type Is Not Applicable + false + + + Hot Water Setpoint Temperature Is Not Applicable + false + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + false + + + Tank Volume Is Not Applicable + false + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Variable Volume + + + + + + + + + + Uninsulated metal + + + + + Other Exterior Door Type + + + + + + + + Steel + + + + + + + + 25.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + true + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + Leaky + + + + + + + + + + + Air Distribution + + + + + + + + + Implement training and/or documentation + + + + Entire building + Measure Identifier 150803 + 10000 + + 500000.0 + + 10 + 600000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Air Distribution + + + + + + + + + Clean and/or repair + + + + Entire building + Measure Identifier 150804 + 1000 + + 600000.0 + + 8 + 10000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Cooking + + + + + + + + + Clean and/or repair + + + + Entire building + Measure Identifier 150805 + 1000 + + 1000.0 + + 5 + 400.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Cooling System + + + + + + + + + Automatic shutdown or sleep mode for computers + + + + Entire building + Measure Identifier 150806 + 1000 + + 60000.0 + + 10 + 5000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + ASHRAE + 100 + 2015 + + + 2019 + + + + + All end uses + Site + 63.0 + 7.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + false + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 6.0 + 5.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + Annual + 78202.0 + + + + + + All end uses + Site + 300000.0 + 17.697721071169667 + + + Linked Time Series ID + TimeSeriesType-45021820 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + Package 1 + Current + + + + + + 50000 + + + Electricity + kWh + 50000.0 + + + Natural gas + therms + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 80000.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + 1 + Current + + + + + + + + 5000 + + + Electricity + kWh + 3000.0 + + + Natural gas + therms + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 30004.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + + + 2019-11-01 + Custom + Level 1: Walk-through + + + 2019-12-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + + + + + + + + + 10 + + + Direct metering + 172763 + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + ASHRAE Level 2 Base Template + + + Auditor Years Of Experience + 10 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + Doug Baldwin - Sub + Submitter Company + + + + 123 Street + + + Chicago + IL + 60601 + + + + 111-111-1111 + + + + + doug.baldwin@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45021540 + Energy Auditor + + + Contact Role For Qualification-45021580 + Energy Auditor + + + Contributor Contact ID For Qualification-45021580 + ContactType-45021560 + + + Contributor Contact Role For Qualification-45021580 + Energy Auditor + + + Other Qualification Type For Qualification-45021580 + + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example_ASHRAE_L2_Report_-_with_Energy_Use_Data.xml b/spec/files/v2.7.0/Example_ASHRAE_L2_Report_-_with_Energy_Use_Data.xml new file mode 100644 index 0000000..d1be8c6 --- /dev/null +++ b/spec/files/v2.7.0/Example_ASHRAE_L2_Report_-_with_Energy_Use_Data.xml @@ -0,0 +1,4985 @@ + + + + + + + + + Example ASHRAE L2 Report - with Energy Use Data + Example ASHRAE L2 audit report building for import/export. Includes + example data for all required fields and monthly metered energy use data. + + + Custom + Atlanta Building ID + + + + Custom + City Custom Building ID + + + + Custom + Portfolio Manager Building ID + + + + Custom + Audit Template Building ID + 23861 + + + + + + 215 West 125th Street + + + New York + NY + 10027 + + + NYCW + + Mixed-use commercial + false + 6 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 193850.0 + + + Heated and Cooled + 192850.0 + + + Heated only + 0.0 + + + 31741.0 + 0.0 + 19972.0 + 0.20000000298023224 + 2021 + 1972 + 10.0 + 90.0 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Excellent + + + + + + + + + + + + + + Space function + Office + Office + + + Peak total occupants + 200 + + + + + 60.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 140000.0 + + + Conditioned + 140000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.1 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Health care-Outpatient facility + Health care-Outpatient facility + + + Peak total occupants + 40 + + + + + 70.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 32000.0 + + + Conditioned + 32000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.5 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Parking + Parking + + + Peak total occupants + 1 + + + + + 70.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 21000.0 + + + Conditioned + 4200.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Retail + Retail + + + Peak total occupants + 12 + + + + + 78.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 14800.0 + + + Conditioned + 14800.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Bank + Bank + + + Peak total occupants + 10 + + + + + 40.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 6050.0 + + + Conditioned + 6050.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2019-10-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + true + + + Onsite Generation System For Microturbine Is Not Applicable + true + + + Onsite Generation System For PV Is Not Applicable + true + + + Onsite Generation System For Reciprocating engine Is Not Applicable + true + + + Onsite Generation System For Turbine Is Not Applicable + true + + + Onsite Generation System For Wind Is Not Applicable + true + + + Onsite Generation System Is Not Applicable + true + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + true + + + Onsite Renewable System Is Not Applicable + true + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + true + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + true + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + true + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 21002.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + true + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + true + + + Shared Heating + false + + + Shared Heating Is Not Applicable + true + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + true + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + true + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + true + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + true + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + true + + + Spaces Excluded From Gross Floor Area + Parking garage 21,0000 sf, heated only + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + true + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + Full Modulation Manual + 1 + 2000 + Mechanical forced + 100.0 + 90.0 + kBtu/hr + 90.0 + Thermal Efficiency + 2 + + Good + Mechanical Floor + 2000 + Natural gas + true + + + + + + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Name + Heating Plant 1 + + + Heating Plant Notes Is Not Applicable + false + + + Input Capacity Is Not Applicable + false + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Absorption + Scroll + 1 + Single effect + 555.0 + EER + 0.0 + kBtu/hr + None + 555 + + Excellent + Roof + 1980 + Electricity + false + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Chilled Water Reset Control Is Not Applicable + false + + + Chiller Compressor Driver Is Not Applicable + false + + + Cooling Plant Condition Is Not Applicable + false + + + Cooling Plant Name + Cooling Plant 1 + + + Cooling Plant Notes Is Not Applicable + false + + + Condenser Plant ID Is Not Applicable + false + + + Condenser Type + Air Cooled + + + Condenser Type Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Location Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Cooling tower + Fixed Flow + Single Speed + + + + Condenser Plant Name + Condenser Plant 1 + + + Cooling Tower Fan Control Is Not Applicable + false + + + Water Cooled Condenser Flow Control Is Not Applicable + false + + + + + + + + + + + + + + + + + + + kBtu/hr + + + + Programmable + + + + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + + Programmable + + + + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + false + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + + Dry bulb temperature + + false + false + + + Radiator + + + + + + + + + + + + + None + false + + + + + + + + + Digital + Pneumatic + + + + + + + + + Central Distribution Type + Hydronic + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + LED + + + Standard Electronic + false + + + + Manual On/Off + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45031420 + + + + Common Areas Lighting Power Density For Section-45031420 + + + + Tenant Areas Lighting Power Density For Section-45031420 + + + + Quantity Of Luminaires For Section-45031420 + + + + Common Areas Quantity Of Luminaires For Section-45031420 + + + + Tenant Areas Quantity Of Luminaires For Section-45031420 + + + + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + + + Constant Volume + + + + + + + + Masonry + Brick + + + 13.0 + + + + + + + Built up + false + true + false + + + 30.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Aluminum no thermal break + false + Average + Clear uncoated + Single pane + + + Year Installed Is Not Applicable + false + + + + + + + + + + 13.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45031960 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + true + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + Average + + + + + + + + + + + Fan + + + + + + + + + Add or upgrade controls + + + + Entire building + Measure Identifier 150807 + Add a timer to the kitchen and toilet exhaust fans serving the tenant + space to shut down the fans when the building is unoccupied + + 0.0 + + 15 + 400.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Motor + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure Identifier 150808 + Add a variable frequency drive to the condenser water pumps + + 5915.0 + + 15 + 20746.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Motor + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure Identifier 150809 + Add variable frequency drives to the chilled water pumps + + 10940.0 + + 15 + 37992.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Motor + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure Identifier 150810 + Add variable frequency drives to the hot water pumps + + 5540.0 + + 15 + 17246.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Water Use + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + Measure Identifier 150811 + Add low-flow aerators to the bathroom sinks + + 0.0 + + 10 + 60.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Fenestration + + + + + + + + + Add window films + + + + Entire building + Measure Identifier 150812 + Install add-on insulation to the windows + + 0.0 + + 15 + 24752.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Fenestration + + + + + + + + + Air seal envelope + + + + Entire building + Measure Identifier 150813 + Add weatherstripping to the exterior doors + + 0.0 + + 15 + 25.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + Measure Identifier 150814 + Add CO sensors to the garage fan controls to allow them to shut down + when the CO in the space is below threshold level + + 0.0 + + 15 + 14000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + Measure Identifier 150815 + Boiler/Chiller plant improvement - replace steam boiler generating + steam for heating and cooling system with hydronic boiler, replace absorption chiller + with centrifugal chiller + + 232500.0 + + 20 + 1125000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Replace chiller + + + + Entire building + Measure Identifier 150816 + Replace absorption chiller with centrifugal chiller + + 0.0 + + 20 + 1375000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + + 2021 + + + + + All end uses + Site + 89.0 + 2.65 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 58.0 + 1.8 + + + + + + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2019-10-01T00:00:00+00:00 + 2019-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2019-11-01T00:00:00+00:00 + 2019-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2019-12-01T00:00:00+00:00 + 2020-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-01-01T00:00:00+00:00 + 2020-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-02-01T00:00:00+00:00 + 2020-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-03-01T00:00:00+00:00 + 2020-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-04-01T00:00:00+00:00 + 2020-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-05-01T00:00:00+00:00 + 2020-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-06-01T00:00:00+00:00 + 2020-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-07-01T00:00:00+00:00 + 2020-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-08-01T00:00:00+00:00 + 2020-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-09-01T00:00:00+00:00 + 2020-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-10-01T00:00:00+00:00 + 2020-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-11-01T00:00:00+00:00 + 2020-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-12-01T00:00:00+00:00 + 2021-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-01-01T00:00:00+00:00 + 2021-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-02-01T00:00:00+00:00 + 2021-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-03-01T00:00:00+00:00 + 2021-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-04-01T00:00:00+00:00 + 2021-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-05-01T00:00:00+00:00 + 2021-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-06-01T00:00:00+00:00 + 2021-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-07-01T00:00:00+00:00 + 2021-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-08-01T00:00:00+00:00 + 2021-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-09-01T00:00:00+00:00 + 2021-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-10-01T00:00:00+00:00 + 2021-11-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 6087.89697265625 + 0.0 + 32.33282082177734 + + + Linked Time Series ID + TimeSeriesType-45032320 + + + + + All end uses + Site + 6042.39501953125 + 0.0 + 32.091159948730464 + + + Linked Time Series ID + TimeSeriesType-45032360 + + + + + All end uses + Site + 7783.25634765625 + 0.0 + 41.336874462402335 + + + Linked Time Series ID + TimeSeriesType-45032400 + + + + + All end uses + Site + 7903.1220703125 + 0.0 + 41.97348131542969 + + + Linked Time Series ID + TimeSeriesType-45032440 + + + + + All end uses + Site + 7335.36474609375 + 0.0 + 38.958122166503905 + + + Linked Time Series ID + TimeSeriesType-45032480 + + + + + All end uses + Site + 6876.587890625 + 0.0 + 36.52155828710937 + + + Linked Time Series ID + TimeSeriesType-45032520 + + + + + All end uses + Site + 4721.0341796875 + 0.0 + 25.07341252832031 + + + Linked Time Series ID + TimeSeriesType-45032560 + + + + + All end uses + Site + 6964.14501953125 + 0.0 + 36.986574198730466 + + + Linked Time Series ID + TimeSeriesType-45032600 + + + + + All end uses + Site + 9711.4501953125 + 0.0 + 51.57751198730469 + + + Linked Time Series ID + TimeSeriesType-45032640 + + + + + All end uses + Site + 14586.95703125 + 0.0 + 77.47132879296875 + + + Linked Time Series ID + TimeSeriesType-45032680 + + + + + All end uses + Site + 12961.3916015625 + 0.0 + 68.83795079589844 + + + Linked Time Series ID + TimeSeriesType-45032720 + + + + + All end uses + Site + 9101.4970703125 + 0.0 + 48.33805094042968 + + + Linked Time Series ID + TimeSeriesType-45032760 + + + + + All end uses + Site + 6289.236328125 + 0.0 + 33.40213413867187 + + + Linked Time Series ID + TimeSeriesType-45032800 + + + + + All end uses + Site + 5951.3642578125 + 0.0 + 31.607695573242186 + + + Linked Time Series ID + TimeSeriesType-45032840 + + + + + All end uses + Site + 7486.02197265625 + 0.0 + 39.75826269677734 + + + Linked Time Series ID + TimeSeriesType-45032880 + + + + + All end uses + Site + 7271.6220703125 + 0.0 + 38.61958481542968 + + + Linked Time Series ID + TimeSeriesType-45032920 + + + + + All end uses + Site + 6558.404296875 + 0.0 + 34.83168522070313 + + + Linked Time Series ID + TimeSeriesType-45032960 + + + + + All end uses + Site + 6612.28466796875 + 0.0 + 35.11784387158203 + + + Linked Time Series ID + TimeSeriesType-45033000 + + + + + All end uses + Site + 4209.7001953125 + 0.0 + 22.357717737304686 + + + Linked Time Series ID + TimeSeriesType-45033040 + + + + + All end uses + Site + 6437.80859375 + 0.0 + 34.19120144140625 + + + Linked Time Series ID + TimeSeriesType-45033080 + + + + + All end uses + Site + 9278.5087890625 + 0.0 + 49.278160178710934 + + + Linked Time Series ID + TimeSeriesType-45033120 + + + + + All end uses + Site + 14652.4521484375 + 0.0 + 77.81917336035156 + + + Linked Time Series ID + TimeSeriesType-45033160 + + + + + All end uses + Site + 12982.50390625 + 0.0 + 68.95007824609375 + + + Linked Time Series ID + TimeSeriesType-45033200 + + + + + All end uses + Site + 10506.310546875 + 0.0 + 55.79901531445312 + + + Linked Time Series ID + TimeSeriesType-45033240 + + + + + All end uses + Site + 6092.68994140625 + 0.0 + 32.358276278808596 + + + Linked Time Series ID + TimeSeriesType-45033280 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2019-10-01T00:00:00+00:00 + 2019-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2019-11-01T00:00:00+00:00 + 2019-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2019-12-01T00:00:00+00:00 + 2020-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-01-01T00:00:00+00:00 + 2020-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-02-01T00:00:00+00:00 + 2020-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-03-01T00:00:00+00:00 + 2020-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-04-01T00:00:00+00:00 + 2020-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-05-01T00:00:00+00:00 + 2020-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-06-01T00:00:00+00:00 + 2020-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-07-01T00:00:00+00:00 + 2020-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-08-01T00:00:00+00:00 + 2020-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-09-01T00:00:00+00:00 + 2020-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-10-01T00:00:00+00:00 + 2020-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-11-01T00:00:00+00:00 + 2020-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-12-01T00:00:00+00:00 + 2021-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-01-01T00:00:00+00:00 + 2021-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-02-01T00:00:00+00:00 + 2021-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-03-01T00:00:00+00:00 + 2021-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-04-01T00:00:00+00:00 + 2021-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-05-01T00:00:00+00:00 + 2021-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-06-01T00:00:00+00:00 + 2021-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-07-01T00:00:00+00:00 + 2021-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-08-01T00:00:00+00:00 + 2021-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-09-01T00:00:00+00:00 + 2021-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-10-01T00:00:00+00:00 + 2021-11-01T00:00:00+00:00 + Other + 0.0 + + + + + + All end uses + Site + 202061.75 + 0.0 + 81.20057337841547 + + + Linked Time Series ID + TimeSeriesType-45033360 + + + + + All end uses + Site + 201874.0625 + 0.0 + 81.12514924388253 + + + Linked Time Series ID + TimeSeriesType-45033400 + + + + + All end uses + Site + 200889.5625 + 0.0 + 80.72951788618593 + + + Linked Time Series ID + TimeSeriesType-45033440 + + + + + All end uses + Site + 206985.0 + 0.0 + 83.17903156204143 + + + Linked Time Series ID + TimeSeriesType-45033480 + + + + + All end uses + Site + 192076.96875 + 0.0 + 77.188087281675 + + + Linked Time Series ID + TimeSeriesType-45033520 + + + + + All end uses + Site + 189926.421875 + 0.0 + 76.32386810448207 + + + Linked Time Series ID + TimeSeriesType-45033560 + + + + + All end uses + Site + 163250.015625 + 0.0 + 65.60368240295496 + + + Linked Time Series ID + TimeSeriesType-45033600 + + + + + All end uses + Site + 168925.59375 + 0.0 + 67.88447131032606 + + + Linked Time Series ID + TimeSeriesType-45033640 + + + + + All end uses + Site + 172546.65625 + 0.0 + 69.33963217693777 + + + Linked Time Series ID + TimeSeriesType-45033680 + + + + + All end uses + Site + 195745.953125 + 0.0 + 78.66250604211059 + + + Linked Time Series ID + TimeSeriesType-45033720 + + + + + All end uses + Site + 198083.453125 + 0.0 + 79.60185423775891 + + + Linked Time Series ID + TimeSeriesType-45033760 + + + + + All end uses + Site + 170384.203125 + 0.0 + 68.47062835184991 + + + Linked Time Series ID + TimeSeriesType-45033800 + + + + + All end uses + Site + 165798.84375 + 0.0 + 66.62795495920588 + + + Linked Time Series ID + TimeSeriesType-45033840 + + + + + All end uses + Site + 159135.09375 + 0.0 + 63.950059113750626 + + + Linked Time Series ID + TimeSeriesType-45033880 + + + + + All end uses + Site + 168791.953125 + 0.0 + 67.83076646328475 + + + Linked Time Series ID + TimeSeriesType-45033920 + + + + + All end uses + Site + 168367.734375 + 0.0 + 67.66028983553173 + + + Linked Time Series ID + TimeSeriesType-45033960 + + + + + All end uses + Site + 152021.84375 + 0.0 + 61.09152711259745 + + + Linked Time Series ID + TimeSeriesType-45034000 + + + + + All end uses + Site + 168392.078125 + 0.0 + 67.67007261954791 + + + Linked Time Series ID + TimeSeriesType-45034040 + + + + + All end uses + Site + 168713.8125 + 0.0 + 67.79936485682461 + + + Linked Time Series ID + TimeSeriesType-45034080 + + + + + All end uses + Site + 176344.296875 + 0.0 + 70.8657527625269 + + + Linked Time Series ID + TimeSeriesType-45034120 + + + + + All end uses + Site + 181463.859375 + 0.0 + 72.92310112483018 + + + Linked Time Series ID + TimeSeriesType-45034160 + + + + + All end uses + Site + 212326.03125 + 0.0 + 85.3253793984431 + + + Linked Time Series ID + TimeSeriesType-45034200 + + + + + All end uses + Site + 212838.21875 + 0.0 + 85.53120716484251 + + + Linked Time Series ID + TimeSeriesType-45034240 + + + + + All end uses + Site + 195854.21875 + 0.0 + 78.70601368681412 + + + Linked Time Series ID + TimeSeriesType-45034280 + + + + + All end uses + Site + 112568.265625 + 0.0 + 45.236704685393335 + + + Linked Time Series ID + TimeSeriesType-45034320 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Heating + 91669.0 + + + Net + CO2e + 36.83812181685038 + + + + + Electricity + Site + kWh + Not shared + Cooling + 82788.0 + + + Net + CO2e + 33.269201463672665 + + + + + Natural gas + Site + therms + Not shared + Heating + 33203.0 + + + Net + CO2e + 176.341133 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 17150.0 + + + Net + CO2e + 91.08364999999999 + + + + + Natural gas + Site + therms + Not shared + Cooling + 45997.0 + + + Net + CO2e + 244.290067 + + + + + Natural gas + Site + therms + Not shared + Laundry + 3040.0 + + + Net + CO2e + 16.145439999999997 + + + + + Other End Use + Commercial Space Usage + + + + + Electricity + Site + kWh + Not shared + Laundry + 635060.0 + + + Net + CO2e + 255.20533267526648 + + + + + Other End Use + Baseload + + + + + Electricity + Site + kWh + Not shared + Total lighting + 24760.0 + + + Net + CO2e + 9.95005832053601 + + + + + Electricity + Site + kWh + Not shared + Ventilation + 488779.0 + + + Net + CO2e + 196.42082212654566 + + + + + Electricity + Site + kWh + Not shared + Conveyance + 104738.0 + + + Net + CO2e + 42.090032648477404 + + + + + Electricity + Site + kWh + Not shared + Laundry + 675746.0 + + + Net + CO2e + 271.5554163921214 + + + + + Other End Use + Tenant Lighting + + + + + Electricity + Site + kWh + Not shared + Laundry + 22314.0 + + + Net + CO2e + 8.96710829420196 + + + + + Other End Use + Commercial Electric Account + + + + + Electricity + Site + kWh + Not shared + All end uses + 2125854.0 + + + Net + CO2e + 854.296093737672 + + + + + Natural gas + Site + therms + Not shared + All end uses + 99390.0 + + + Net + CO2e + 527.86029 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + Install timer on exhaust fans + Current + + + + + + 5015 + + + Electricity + kWh + 14704.0 + + + Natural gas + therms + 1874.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Hydronic Pump VFD Upgrade + Current + + + + + + + + 39024 + + + Electricity + kWh + 177384.0 + + + Natural gas + therms + 0.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 2.927999973297119 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Low-flow water fixtures + Current + + + + + + 51 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 53.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Air Sealing + Current + + + + + + + 14313 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 15066.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Garage fan CO sensor + Current + + + + + + 6235 + + + Electricity + kWh + 13615.0 + + + Natural gas + therms + 3410.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Optimize heating and cooling + Current + + + + + + + 116826 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 33214.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + + + 2021-12-15 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + 11111 + NY + 2023-12-31 + + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + true + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + ASHRAE Level 2 Base Template + + + Auditor Years Of Experience + 10 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45032020 + Energy Auditor + + + Contact Role For Qualification-45032060 + Energy Auditor + + + Contributor Contact ID For Qualification-45032060 + ContactType-45032040 + + + Contributor Contact Role For Qualification-45032060 + Energy Auditor + + + Other Qualification Type For Qualification-45032060 + + + + + + + Owner + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45032020 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example_ASHRAE_L2_Report_-_with_Energy_Use_Data_2.xml b/spec/files/v2.7.0/Example_ASHRAE_L2_Report_-_with_Energy_Use_Data_2.xml new file mode 100644 index 0000000..1a60c18 --- /dev/null +++ b/spec/files/v2.7.0/Example_ASHRAE_L2_Report_-_with_Energy_Use_Data_2.xml @@ -0,0 +1,4986 @@ + + + + + + + + + + Example ASHRAE L2 Report - with Energy Use Data + Example ASHRAE L2 audit report building for import/export. Includes + example data for all required fields and monthly metered energy use data. + + + Custom + Atlanta Building ID + + + + Custom + City Custom Building ID + + + + Custom + Portfolio Manager Building ID + + + + Custom + Audit Template Building ID + 23863 + + + + + + 215 West 125th Street + + + New York + NY + 10027 + + + NYCW + + Mixed-use commercial + false + 6 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 193850.0 + + + Heated and Cooled + 192850.0 + + + Heated only + 0.0 + + + 31741.0 + 0.0 + 19972.0 + 0.20000000298023224 + 2021 + 1972 + 10.0 + 90.0 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Excellent + + + + + + + + + + + + + + Space function + Office + Office + + + Peak total occupants + 200 + + + + + 60.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 140000.0 + + + Conditioned + 140000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.1 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Health care-Outpatient facility + Health care-Outpatient facility + + + Peak total occupants + 40 + + + + + 70.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 32000.0 + + + Conditioned + 32000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.5 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Other + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Parking + Parking + + + Peak total occupants + 1 + + + + + 70.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 21000.0 + + + Conditioned + 4200.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Retail + Retail + + + Peak total occupants + 12 + + + + + 78.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 14800.0 + + + Conditioned + 14800.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + Space function + Bank + Bank + + + Peak total occupants + 10 + + + + + 40.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 6050.0 + + + Conditioned + 6050.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2019-10-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + true + + + Onsite Generation System For Microturbine Is Not Applicable + true + + + Onsite Generation System For PV Is Not Applicable + true + + + Onsite Generation System For Reciprocating engine Is Not Applicable + true + + + Onsite Generation System For Turbine Is Not Applicable + true + + + Onsite Generation System For Wind Is Not Applicable + true + + + Onsite Generation System Is Not Applicable + true + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + true + + + Onsite Renewable System Is Not Applicable + true + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + true + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + true + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + true + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 21002.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + true + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + true + + + Shared Heating + false + + + Shared Heating Is Not Applicable + true + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + true + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + true + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + true + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + true + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + true + + + Spaces Excluded From Gross Floor Area + Parking garage 21,0000 sf, heated only + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + true + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + Full Modulation Manual + 1 + 2000 + Mechanical forced + 100.0 + 90.0 + kBtu/hr + 90.0 + Thermal Efficiency + 2 + + Good + Mechanical Floor + 2000 + Natural gas + true + + + + + + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Name + Heating Plant 1 + + + Heating Plant Notes Is Not Applicable + false + + + Input Capacity Is Not Applicable + false + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Absorption + Scroll + 1 + Single effect + 555.0 + EER + 0.0 + kBtu/hr + None + 555 + + Excellent + Roof + 1980 + Electricity + false + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Chilled Water Reset Control Is Not Applicable + false + + + Chiller Compressor Driver Is Not Applicable + false + + + Cooling Plant Condition Is Not Applicable + false + + + Cooling Plant Name + Cooling Plant 1 + + + Cooling Plant Notes Is Not Applicable + false + + + Condenser Plant ID Is Not Applicable + false + + + Condenser Type + Air Cooled + + + Condenser Type Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Location Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Cooling tower + Fixed Flow + Single Speed + + + + Condenser Plant Name + Condenser Plant 1 + + + Cooling Tower Fan Control Is Not Applicable + false + + + Water Cooled Condenser Flow Control Is Not Applicable + false + + + + + + + + + + + + + + + + + + + kBtu/hr + + + + Programmable + + + + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + + Programmable + + + + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + false + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + + Dry bulb temperature + + false + false + + + Radiator + + + + + + + + + + + + + None + false + + + + + + + + + Digital + Pneumatic + + + + + + + + + Central Distribution Type + Hydronic + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + LED + + + Standard Electronic + false + + + + Manual On/Off + + + + + + + + + + + + Gross + 100.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45055560 + + + + Common Areas Lighting Power Density For Section-45055560 + + + + Tenant Areas Lighting Power Density For Section-45055560 + + + + Quantity Of Luminaires For Section-45055560 + + + + Common Areas Quantity Of Luminaires For Section-45055560 + + + + Tenant Areas Quantity Of Luminaires For Section-45055560 + + + + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + + + Constant Volume + + + + + + + + Masonry + Brick + + + 13.0 + + + + + + + Built up + false + true + false + + + 30.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Aluminum no thermal break + false + Average + Clear uncoated + Single pane + + + Year Installed Is Not Applicable + false + + + + + + + + + + 13.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + true + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45056100 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + true + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + Average + + + + + + + + + + + Fan + + + + + + + + + Add or upgrade controls + + + + Entire building + Measure Identifier 150817 + Add a timer to the kitchen and toilet exhaust fans serving the tenant + space to shut down the fans when the building is unoccupied + + 0.0 + + 15 + 400.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Motor + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure Identifier 150818 + Add a variable frequency drive to the condenser water pumps + + 5915.0 + + 15 + 20746.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Motor + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure Identifier 150819 + Add variable frequency drives to the chilled water pumps + + 10940.0 + + 15 + 37992.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Motor + + + + + + + + + Add VSD motor controller + + + + Entire building + Measure Identifier 150820 + Add variable frequency drives to the hot water pumps + + 5540.0 + + 15 + 17246.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Water Use + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + Measure Identifier 150821 + Add low-flow aerators to the bathroom sinks + + 0.0 + + 10 + 60.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Fenestration + + + + + + + + + Add window films + + + + Entire building + Measure Identifier 150822 + Install add-on insulation to the windows + + 0.0 + + 15 + 24752.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Fenestration + + + + + + + + + Air seal envelope + + + + Entire building + Measure Identifier 150823 + Add weatherstripping to the exterior doors + + 0.0 + + 15 + 25.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + Measure Identifier 150824 + Add CO sensors to the garage fan controls to allow them to shut down + when the CO in the space is below threshold level + + 0.0 + + 15 + 14000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + Measure Identifier 150825 + Boiler/Chiller plant improvement - replace steam boiler generating + steam for heating and cooling system with hydronic boiler, replace absorption chiller + with centrifugal chiller + + 232500.0 + + 20 + 1125000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Heating System + + + + + + + + + Replace chiller + + + + Entire building + Measure Identifier 150826 + Replace absorption chiller with centrifugal chiller + + 0.0 + + 20 + 1375000.0 + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + + 2021 + + + + + All end uses + Site + 89.0 + 2.65 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 58.0 + 1.8 + + + + + + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2019-10-01T00:00:00+00:00 + 2019-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2019-11-01T00:00:00+00:00 + 2019-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2019-12-01T00:00:00+00:00 + 2020-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-01-01T00:00:00+00:00 + 2020-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-02-01T00:00:00+00:00 + 2020-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-03-01T00:00:00+00:00 + 2020-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-04-01T00:00:00+00:00 + 2020-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-05-01T00:00:00+00:00 + 2020-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-06-01T00:00:00+00:00 + 2020-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-07-01T00:00:00+00:00 + 2020-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-08-01T00:00:00+00:00 + 2020-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-09-01T00:00:00+00:00 + 2020-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-10-01T00:00:00+00:00 + 2020-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-11-01T00:00:00+00:00 + 2020-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2020-12-01T00:00:00+00:00 + 2021-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-01-01T00:00:00+00:00 + 2021-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-02-01T00:00:00+00:00 + 2021-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-03-01T00:00:00+00:00 + 2021-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-04-01T00:00:00+00:00 + 2021-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-05-01T00:00:00+00:00 + 2021-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-06-01T00:00:00+00:00 + 2021-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-07-01T00:00:00+00:00 + 2021-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-08-01T00:00:00+00:00 + 2021-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-09-01T00:00:00+00:00 + 2021-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2021-10-01T00:00:00+00:00 + 2021-11-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 6087.89697265625 + 0.0 + 32.33282082177734 + + + Linked Time Series ID + TimeSeriesType-45056460 + + + + + All end uses + Site + 6042.39501953125 + 0.0 + 32.091159948730464 + + + Linked Time Series ID + TimeSeriesType-45056500 + + + + + All end uses + Site + 7783.25634765625 + 0.0 + 41.336874462402335 + + + Linked Time Series ID + TimeSeriesType-45056540 + + + + + All end uses + Site + 7903.1220703125 + 0.0 + 41.97348131542969 + + + Linked Time Series ID + TimeSeriesType-45056580 + + + + + All end uses + Site + 7335.36474609375 + 0.0 + 38.958122166503905 + + + Linked Time Series ID + TimeSeriesType-45056620 + + + + + All end uses + Site + 6876.587890625 + 0.0 + 36.52155828710937 + + + Linked Time Series ID + TimeSeriesType-45056660 + + + + + All end uses + Site + 4721.0341796875 + 0.0 + 25.07341252832031 + + + Linked Time Series ID + TimeSeriesType-45056700 + + + + + All end uses + Site + 6964.14501953125 + 0.0 + 36.986574198730466 + + + Linked Time Series ID + TimeSeriesType-45056740 + + + + + All end uses + Site + 9711.4501953125 + 0.0 + 51.57751198730469 + + + Linked Time Series ID + TimeSeriesType-45056780 + + + + + All end uses + Site + 14586.95703125 + 0.0 + 77.47132879296875 + + + Linked Time Series ID + TimeSeriesType-45056820 + + + + + All end uses + Site + 12961.3916015625 + 0.0 + 68.83795079589844 + + + Linked Time Series ID + TimeSeriesType-45056860 + + + + + All end uses + Site + 9101.4970703125 + 0.0 + 48.33805094042968 + + + Linked Time Series ID + TimeSeriesType-45056900 + + + + + All end uses + Site + 6289.236328125 + 0.0 + 33.40213413867187 + + + Linked Time Series ID + TimeSeriesType-45056940 + + + + + All end uses + Site + 5951.3642578125 + 0.0 + 31.607695573242186 + + + Linked Time Series ID + TimeSeriesType-45056980 + + + + + All end uses + Site + 7486.02197265625 + 0.0 + 39.75826269677734 + + + Linked Time Series ID + TimeSeriesType-45057020 + + + + + All end uses + Site + 7271.6220703125 + 0.0 + 38.61958481542968 + + + Linked Time Series ID + TimeSeriesType-45057060 + + + + + All end uses + Site + 6558.404296875 + 0.0 + 34.83168522070313 + + + Linked Time Series ID + TimeSeriesType-45057100 + + + + + All end uses + Site + 6612.28466796875 + 0.0 + 35.11784387158203 + + + Linked Time Series ID + TimeSeriesType-45057140 + + + + + All end uses + Site + 4209.7001953125 + 0.0 + 22.357717737304686 + + + Linked Time Series ID + TimeSeriesType-45057180 + + + + + All end uses + Site + 6437.80859375 + 0.0 + 34.19120144140625 + + + Linked Time Series ID + TimeSeriesType-45057220 + + + + + All end uses + Site + 9278.5087890625 + 0.0 + 49.278160178710934 + + + Linked Time Series ID + TimeSeriesType-45057260 + + + + + All end uses + Site + 14652.4521484375 + 0.0 + 77.81917336035156 + + + Linked Time Series ID + TimeSeriesType-45057300 + + + + + All end uses + Site + 12982.50390625 + 0.0 + 68.95007824609375 + + + Linked Time Series ID + TimeSeriesType-45057340 + + + + + All end uses + Site + 10506.310546875 + 0.0 + 55.79901531445312 + + + Linked Time Series ID + TimeSeriesType-45057380 + + + + + All end uses + Site + 6092.68994140625 + 0.0 + 32.358276278808596 + + + Linked Time Series ID + TimeSeriesType-45057420 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2019-10-01T00:00:00+00:00 + 2019-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2019-11-01T00:00:00+00:00 + 2019-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2019-12-01T00:00:00+00:00 + 2020-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-01-01T00:00:00+00:00 + 2020-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-02-01T00:00:00+00:00 + 2020-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-03-01T00:00:00+00:00 + 2020-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-04-01T00:00:00+00:00 + 2020-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-05-01T00:00:00+00:00 + 2020-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-06-01T00:00:00+00:00 + 2020-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-07-01T00:00:00+00:00 + 2020-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-08-01T00:00:00+00:00 + 2020-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-09-01T00:00:00+00:00 + 2020-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-10-01T00:00:00+00:00 + 2020-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-11-01T00:00:00+00:00 + 2020-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2020-12-01T00:00:00+00:00 + 2021-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-01-01T00:00:00+00:00 + 2021-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-02-01T00:00:00+00:00 + 2021-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-03-01T00:00:00+00:00 + 2021-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-04-01T00:00:00+00:00 + 2021-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-05-01T00:00:00+00:00 + 2021-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-06-01T00:00:00+00:00 + 2021-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-07-01T00:00:00+00:00 + 2021-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-08-01T00:00:00+00:00 + 2021-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-09-01T00:00:00+00:00 + 2021-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2021-10-01T00:00:00+00:00 + 2021-11-01T00:00:00+00:00 + Other + 0.0 + + + + + + All end uses + Site + 202061.75 + 0.0 + 81.20057337841547 + + + Linked Time Series ID + TimeSeriesType-45057500 + + + + + All end uses + Site + 201874.0625 + 0.0 + 81.12514924388253 + + + Linked Time Series ID + TimeSeriesType-45057540 + + + + + All end uses + Site + 200889.5625 + 0.0 + 80.72951788618593 + + + Linked Time Series ID + TimeSeriesType-45057580 + + + + + All end uses + Site + 206985.0 + 0.0 + 83.17903156204143 + + + Linked Time Series ID + TimeSeriesType-45057620 + + + + + All end uses + Site + 192076.96875 + 0.0 + 77.188087281675 + + + Linked Time Series ID + TimeSeriesType-45057660 + + + + + All end uses + Site + 189926.421875 + 0.0 + 76.32386810448207 + + + Linked Time Series ID + TimeSeriesType-45057700 + + + + + All end uses + Site + 163250.015625 + 0.0 + 65.60368240295496 + + + Linked Time Series ID + TimeSeriesType-45057740 + + + + + All end uses + Site + 168925.59375 + 0.0 + 67.88447131032606 + + + Linked Time Series ID + TimeSeriesType-45057780 + + + + + All end uses + Site + 172546.65625 + 0.0 + 69.33963217693777 + + + Linked Time Series ID + TimeSeriesType-45057820 + + + + + All end uses + Site + 195745.953125 + 0.0 + 78.66250604211059 + + + Linked Time Series ID + TimeSeriesType-45057860 + + + + + All end uses + Site + 198083.453125 + 0.0 + 79.60185423775891 + + + Linked Time Series ID + TimeSeriesType-45057900 + + + + + All end uses + Site + 170384.203125 + 0.0 + 68.47062835184991 + + + Linked Time Series ID + TimeSeriesType-45057940 + + + + + All end uses + Site + 165798.84375 + 0.0 + 66.62795495920588 + + + Linked Time Series ID + TimeSeriesType-45057980 + + + + + All end uses + Site + 159135.09375 + 0.0 + 63.950059113750626 + + + Linked Time Series ID + TimeSeriesType-45058020 + + + + + All end uses + Site + 168791.953125 + 0.0 + 67.83076646328475 + + + Linked Time Series ID + TimeSeriesType-45058060 + + + + + All end uses + Site + 168367.734375 + 0.0 + 67.66028983553173 + + + Linked Time Series ID + TimeSeriesType-45058100 + + + + + All end uses + Site + 152021.84375 + 0.0 + 61.09152711259745 + + + Linked Time Series ID + TimeSeriesType-45058140 + + + + + All end uses + Site + 168392.078125 + 0.0 + 67.67007261954791 + + + Linked Time Series ID + TimeSeriesType-45058180 + + + + + All end uses + Site + 168713.8125 + 0.0 + 67.79936485682461 + + + Linked Time Series ID + TimeSeriesType-45058220 + + + + + All end uses + Site + 176344.296875 + 0.0 + 70.8657527625269 + + + Linked Time Series ID + TimeSeriesType-45058260 + + + + + All end uses + Site + 181463.859375 + 0.0 + 72.92310112483018 + + + Linked Time Series ID + TimeSeriesType-45058300 + + + + + All end uses + Site + 212326.03125 + 0.0 + 85.3253793984431 + + + Linked Time Series ID + TimeSeriesType-45058340 + + + + + All end uses + Site + 212838.21875 + 0.0 + 85.53120716484251 + + + Linked Time Series ID + TimeSeriesType-45058380 + + + + + All end uses + Site + 195854.21875 + 0.0 + 78.70601368681412 + + + Linked Time Series ID + TimeSeriesType-45058420 + + + + + All end uses + Site + 112568.265625 + 0.0 + 45.236704685393335 + + + Linked Time Series ID + TimeSeriesType-45058460 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Heating + 91669.0 + + + Net + CO2e + 36.83812181685038 + + + + + Electricity + Site + kWh + Not shared + Cooling + 82788.0 + + + Net + CO2e + 33.269201463672665 + + + + + Natural gas + Site + therms + Not shared + Heating + 33203.0 + + + Net + CO2e + 176.341133 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 17150.0 + + + Net + CO2e + 91.08364999999999 + + + + + Natural gas + Site + therms + Not shared + Cooling + 45997.0 + + + Net + CO2e + 244.290067 + + + + + Natural gas + Site + therms + Not shared + Laundry + 3040.0 + + + Net + CO2e + 16.145439999999997 + + + + + Other End Use + Commercial Space Usage + + + + + Electricity + Site + kWh + Not shared + Laundry + 635060.0 + + + Net + CO2e + 255.20533267526648 + + + + + Other End Use + Baseload + + + + + Electricity + Site + kWh + Not shared + Total lighting + 24760.0 + + + Net + CO2e + 9.95005832053601 + + + + + Electricity + Site + kWh + Not shared + Ventilation + 488779.0 + + + Net + CO2e + 196.42082212654566 + + + + + Electricity + Site + kWh + Not shared + Conveyance + 104738.0 + + + Net + CO2e + 42.090032648477404 + + + + + Electricity + Site + kWh + Not shared + Laundry + 675746.0 + + + Net + CO2e + 271.5554163921214 + + + + + Other End Use + Tenant Lighting + + + + + Electricity + Site + kWh + Not shared + Laundry + 22314.0 + + + Net + CO2e + 8.96710829420196 + + + + + Other End Use + Commercial Electric Account + + + + + Electricity + Site + kWh + Not shared + All end uses + 2125854.0 + + + Net + CO2e + 854.296093737672 + + + + + Natural gas + Site + therms + Not shared + All end uses + 99390.0 + + + Net + CO2e + 527.86029 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + Install timer on exhaust fans + Current + + + + + + 5015 + + + Electricity + kWh + 14704.0 + + + Natural gas + therms + 1874.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Hydronic Pump VFD Upgrade + Current + + + + + + + + 39024 + + + Electricity + kWh + 177384.0 + + + Natural gas + therms + 0.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 2.927999973297119 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Low-flow water fixtures + Current + + + + + + 51 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 53.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Air Sealing + Current + + + + + + + 14313 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 15066.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Garage fan CO sensor + Current + + + + + + 6235 + + + Electricity + kWh + 13615.0 + + + Natural gas + therms + 3410.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Optimize heating and cooling + Current + + + + + + + 116826 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 33214.0 + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + + + 2021-12-15 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + 11111 + NY + 2023-12-31 + + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + true + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + ASHRAE Level 2 Base Template + + + Auditor Years Of Experience + 10 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45056160 + Energy Auditor + + + Contact Role For Qualification-45056200 + Energy Auditor + + + Contributor Contact ID For Qualification-45056200 + ContactType-45056180 + + + Contributor Contact Role For Qualification-45056200 + Energy Auditor + + + Other Qualification Type For Qualification-45056200 + + + + + + + Owner + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45056160 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example_HOMES_Template_Building.xml b/spec/files/v2.7.0/Example_HOMES_Template_Building.xml new file mode 100644 index 0000000..0728f24 --- /dev/null +++ b/spec/files/v2.7.0/Example_HOMES_Template_Building.xml @@ -0,0 +1,4746 @@ + + + + + + + + + + Example HOMES Template Building + + + + Custom + City Custom Building ID + 2909 + + + Custom + Portfolio Manager Building ID + 24241504 + + + Custom + Audit Template Building ID + 46821 + + + + + + ABC Street + + + Denver + CO + 80405 + + Multifamily + Property management company + false + 9 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 57400.0 + + + Heated and Cooled + 57400.0 + + + Heated only + 0.0 + + + 28500.0 + 0.0 + 0.0 + 0.30000001192092896 + 1972 + 2022 + 2021-01-01 + 2020 + 0.0 + 100.0 + 1 + + + Whole building + L-Shape + + + + + + + + + + + + + + + Average + + + + + + + + + + + 50121 HOMES Whole Building Reported Energy Savings Percentage + 34 + + + + + Space function + Multifamily + Multifamily + + + Peak total occupants + 75 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Apartment units + 90 + + + + + Gross + 57400.0 + + + Conditioned + 57400.0 + + + Common + 5740.0 + + + Tenant + 51660.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Four Pipe Fan Coil Unit + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2023-01-01,2024-01-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + false + + + Onsite Generation System + false + + + Onsite Generation System For Fuel cell Is Not Applicable + true + + + Onsite Generation System For Microturbine Is Not Applicable + true + + + Onsite Generation System For PV Is Not Applicable + true + + + Onsite Generation System For Reciprocating engine Is Not Applicable + true + + + Onsite Generation System For Turbine Is Not Applicable + true + + + Onsite Generation System For Wind Is Not Applicable + true + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + false + + + Onsite Renewable System For Solar Is Not Applicable + true + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + true + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + true + + + Premises Identifier For Atlanta Building ID Is Not Applicable + false + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + false + + + Roof Area + 6400.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + false + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + On Off + 4 + 2003 + Natural + 1825.0 + kBtu/hr + 81.0 + AFUE + 2 + + Average + Mechanical Room + 2003 + Natural gas + false + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Notes + + + + Heating Plant Notes Is Not Applicable + true + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Vapor compression + Electric Motor + Scroll + 12.0 + EER + 360.0 + kBtu/hr + None + 4 + + Average + Mechanical Room + 2006 + Electricity + false + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Chilled Water Reset Control Is Not Applicable + true + + + Chiller Compressor Driver Is Not Applicable + false + + + Cooling Plant Condition Is Not Applicable + false + + + Cooling Plant Notes + + + + Cooling Plant Notes Is Not Applicable + true + + + Condenser Plant ID Is Not Applicable + true + + + Condenser Type + Water Cooled + + + Condenser Type Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Location Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + + + Single zone + + + + + + kBtu/hr + + + + Manual + + + + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + + Manual + + + + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + false + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + Fan coil 4 pipe + + + false + false + + + + + + + + + + + + + None + false + + + + + + + + + + + + + + + + + + + + + + + + Common + 20 + + + Tenant + 80 + + + + + + + + Central Distribution Type + Forced Air + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + + + + LED + + + Premium Electronic + 12 + 1 + false + + + + Manual On/Off + + + + + + + + + + + + Common + 60.0 + + + Tenant + 40.0 + + + + + + + + Lighting System Name + Lounge + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45135520 + + + + Common Areas Lighting Power Density For Section-45135520 + + + + Tenant Areas Lighting Power Density For Section-45135520 + + + + Quantity Of Luminaires For Section-45135520 + 14 + + + Common Areas Quantity Of Luminaires For Section-45135520 + + + + Tenant Areas Quantity Of Luminaires For Section-45135520 + + + + + + + + LED + + + Standard Electronic + 17 + 2 + false + + + + Manual On/Off + + + + + + + + + + + + Common + 80.0 + + + Tenant + 20.0 + + + + + + + + Lighting System Name + Gym - 2x4 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45135520 + + + + Common Areas Lighting Power Density For Section-45135520 + + + + Tenant Areas Lighting Power Density For Section-45135520 + + + + Quantity Of Luminaires For Section-45135520 + 4 + + + Common Areas Quantity Of Luminaires For Section-45135520 + + + + Tenant Areas Quantity Of Luminaires For Section-45135520 + + + + + + + + LED + + + Standard Electronic + 17 + 2 + false + + + + Manual On/Off + + + + + + + + + + + + Common + 20.0 + + + Tenant + 80.0 + + + + + + + + Lighting System Name + Leasing office 2x4 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45135520 + + + + Common Areas Lighting Power Density For Section-45135520 + + + + Tenant Areas Lighting Power Density For Section-45135520 + + + + Quantity Of Luminaires For Section-45135520 + 4 + + + Common Areas Quantity Of Luminaires For Section-45135520 + + + + Tenant Areas Quantity Of Luminaires For Section-45135520 + + + + + + + + Unknown + Unknown + + + Standard Electronic + 12 + 1 + false + + + + Manual On/Off + + + + + + + + + + + + Common + 20.0 + + + Tenant + 80.0 + + + + + + + + Lighting System Name + 2 Bed Apartments + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45135520 + + + + Common Areas Lighting Power Density For Section-45135520 + + + + Tenant Areas Lighting Power Density For Section-45135520 + + + + Quantity Of Luminaires For Section-45135520 + 168 + + + Common Areas Quantity Of Luminaires For Section-45135520 + + + + Tenant Areas Quantity Of Luminaires For Section-45135520 + + + + + + + + + + + + + + + + + + + AFUE + 85.0 + 2023 + Natural gas + + Mechanical Room + + + + + + + + + Common + 10 + + + Tenant + 90 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + true + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + true + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + true + + + Storage Tank Insulation Thickness Is Not Applicable + true + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + Pump Control Type Is Not Applicable + true + + + + + + + 80.0 + Constant Volume + + + + + + + + 80.0 + + + + + + + + Steel frame + Brick + + + 14.0 + + + + + + + Built up + false + false + false + + + 20.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Vinyl + false + Average + Clear uncoated + Double pane + 1968 + + + Year Installed Is Not Applicable + false + + + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45136020 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + true + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + Other HVAC + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + HVAC - Smart Thermostats + Replace existing thermostats in apartments and common areas with + Energy Star smart thermostats that include occupancy sensors + + + + + 2035 + + + Electricity + kWh + 4085.0 + + + Natural gas + therms + 1395.0 + + + 0.0 + 0.0 + 7850.0 + + 600.0 + 20 + 47100.0 + 14130.0 + 32970.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2027 + + + + + Pump + + + + + + + + + Replace with variable speed pump + + + + Entire building + HVAC - Chiller VFD + Replace existing single-speed chiller pump to/with a variable + frequency drive (VFD) controlled pump + + + + + 701 + + + Electricity + kWh + 4469.0 + + + Natural gas + therms + 0.0 + + + 0.0 + 0.0 + 1130.0 + + 400.0 + 20 + 3000.0 + 1000.0 + 2000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2027 + + + + + Heating System + + + + + + + + + Add or upgrade controls + + + + Entire building + Heating - Garage Heaters + Add an in-line thermostatic radiator valve with thermostat to + regulate heating hot water in garage + + + + + 156 + + + Electricity + kWh + 36.0 + + + Natural gas + therms + 150.0 + + + 0.0 + 0.0 + 0.0 + + 300.0 + 15 + 300.0 + 100.0 + 200.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2027 + + + + + Domestic Hot Water + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + DHW - Bathroom Sink Aerators + Replace bathroom sink aerators with low-flow aerators + + + + + 342 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 342.0 + + + 0.0 + 0.0 + 0.0 + + 400.0 + 15 + 4005.0 + 1201.0 + 2804.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2025 + + + + + Domestic Hot Water + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + DHW - Kitchen Sink Aerators + Replace kitchen sink aerators with low-flow aerators + + + + + 656 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 656.0 + + + 0.0 + 0.0 + 0.0 + + 400.0 + 15 + 2925.0 + 877.5 + 2048.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2025 + + + + + Domestic Hot Water + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + DHW - TSV Tub/Shower Valves + Install thermostatic tub or shower valves in tenant bathrooms + + + + + 217 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 217.0 + + + 0.0 + 0.0 + 0.0 + + 400.0 + 15 + 10680.0 + 3204.0 + 7476.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2025 + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + Lighting - Bi-level garage lights + Upgrade garage lights to bi-level to reduce operation time + + + + + 255 + + + Electricity + kWh + 1626.0 + + + Natural gas + therms + 0.0 + + + 0.0 + 0.0 + 0.0 + + 400.0 + 15 + 1200.0 + 400.0 + 800.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2025 + + + + + Cooling System + + + + + + + + + Replace chiller + + + + Entire building + Capital - Chiller + Upgrade chiller system to higher efficiency, variable speed units + + + + + 1677 + + + Electricity + kWh + 10695.0 + + + Natural gas + therms + 0.0 + + + 0.0 + 0.0 + 1352.0 + + 1000.0 + 20 + 180000.0 + 54000.0 + 126000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2026 + + + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + Capital - Space Heating Boiler + Upgrade existing space heating hot water boiler to a higher + efficiency boiler + + + + + 3993 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 3993.0 + + + 0.0 + 0.0 + 8000.0 + + 800.0 + 20 + 220000.0 + 66000.0 + 154000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2026 + + + + + Domestic Hot Water + + + + + + + + + Install heat pump SHW system + + + + Entire building + Capital - Hot Water Heat Pump + Replace central domestic hot water gas boiler with a hot water heat + pump + + + + + 0 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 10388.0 + + + 0.0 + 0.0 + 2000.0 + + 1000.0 + 20 + 130000.0 + 39000.0 + 91000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2026 + + + + + Onsite Storage, Transmission, Generation + + + + + + + + + Install photovoltaic system + + + + Entire building + Capital - Rooftop Solar + Install a rooftop solar photovoltaic (PV) system with 80 kW DC + capacity (qty = DC kW) + + + + + 2500 + + + Electricity + kWh + 127797.0 + + + Natural gas + therms + 0.0 + + + 0.0 + 0.0 + 5112.0 + + 1200.0 + 30 + 200000.0 + 60000.0 + 140000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + Implementation Year + 2027 + + + + + + + + + benchmark + + Current + + + + + + 2024 + + + + + All end uses + Site + 86.19999694824219 + 0.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 51.2 + 0.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + 2023-01-01T00:00:00+00:00 + 2024-12-31T00:00:00+00:00 + Annual + + + + + + All end uses + Site + 0 + + + Percentage Of Annual Energy Cost Paid By Tenant + 95 + + + Linked Time Series ID + TimeSeriesType-45136400 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Average + Energy + 2023-01-01T00:00:00+00:00 + 2024-12-31T00:00:00+00:00 + Annual + + + + + + All end uses + Site + 0 + + + Percentage Of Annual Energy Cost Paid By Tenant + 95 + + + Linked Time Series ID + TimeSeriesType-45136480 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2023-01-01T00:00:00+00:00 + 2023-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-02-01T00:00:00+00:00 + 2023-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-03-01T00:00:00+00:00 + 2023-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-04-01T00:00:00+00:00 + 2023-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-05-01T00:00:00+00:00 + 2023-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-06-01T00:00:00+00:00 + 2023-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-07-01T00:00:00+00:00 + 2023-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-08-01T00:00:00+00:00 + 2023-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-09-01T00:00:00+00:00 + 2023-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-10-01T00:00:00+00:00 + 2023-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-11-01T00:00:00+00:00 + 2023-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2023-12-01T00:00:00+00:00 + 2024-01-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-01-01T00:00:00+00:00 + 2024-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-02-01T00:00:00+00:00 + 2024-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-03-01T00:00:00+00:00 + 2024-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-04-01T00:00:00+00:00 + 2024-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-05-01T00:00:00+00:00 + 2024-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-06-01T00:00:00+00:00 + 2024-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-07-01T00:00:00+00:00 + 2024-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-08-01T00:00:00+00:00 + 2024-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-09-01T00:00:00+00:00 + 2024-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-10-01T00:00:00+00:00 + 2024-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-11-01T00:00:00+00:00 + 2024-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2024-12-01T00:00:00+00:00 + 2025-01-01T00:00:00+00:00 + Other + 0.0 + + + + + + All end uses + Site + 24824.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45136600 + + + + + All end uses + Site + 23923.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45136720 + + + + + All end uses + Site + 24758.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45136800 + + + + + All end uses + Site + 22928.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45136880 + + + + + All end uses + Site + 21572.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45136960 + + + + + All end uses + Site + 27713.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137040 + + + + + All end uses + Site + 45703.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137120 + + + + + All end uses + Site + 45663.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137200 + + + + + All end uses + Site + 39280.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137280 + + + + + All end uses + Site + 31447.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137360 + + + + + All end uses + Site + 23666.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137440 + + + + + All end uses + Site + 26318.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137520 + + + + + All end uses + Site + 25595.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137600 + + + + + All end uses + Site + 23798.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137680 + + + + + All end uses + Site + 24471.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137760 + + + + + All end uses + Site + 22788.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137860 + + + + + All end uses + Site + 20573.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45137940 + + + + + All end uses + Site + 34477.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138020 + + + + + All end uses + Site + 37818.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138100 + + + + + All end uses + Site + 13258.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138180 + + + + + All end uses + Site + 32194.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138260 + + + + + All end uses + Site + 31755.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138340 + + + + + All end uses + Site + 23933.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138440 + + + + + All end uses + Site + 23870.0 + 0.0 + + + Linked Time Series ID + TimeSeriesType-45138520 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Meter Readings - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Peak + Voltage + 2023-01-01T00:00:00+00:00 + 2023-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-02-01T00:00:00+00:00 + 2023-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-03-01T00:00:00+00:00 + 2023-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-04-01T00:00:00+00:00 + 2023-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-05-01T00:00:00+00:00 + 2023-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-06-01T00:00:00+00:00 + 2023-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-07-01T00:00:00+00:00 + 2023-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-08-01T00:00:00+00:00 + 2023-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-09-01T00:00:00+00:00 + 2023-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-10-01T00:00:00+00:00 + 2023-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-11-01T00:00:00+00:00 + 2023-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2023-12-01T00:00:00+00:00 + 2024-01-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-01-01T00:00:00+00:00 + 2024-02-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-02-01T00:00:00+00:00 + 2024-03-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-03-01T00:00:00+00:00 + 2024-04-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-04-01T00:00:00+00:00 + 2024-05-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-05-01T00:00:00+00:00 + 2024-06-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-06-01T00:00:00+00:00 + 2024-07-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-07-01T00:00:00+00:00 + 2024-08-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-08-01T00:00:00+00:00 + 2024-09-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-09-01T00:00:00+00:00 + 2024-10-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-10-01T00:00:00+00:00 + 2024-11-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-11-01T00:00:00+00:00 + 2024-12-01T00:00:00+00:00 + Other + + + + Peak + Voltage + 2024-12-01T00:00:00+00:00 + 2025-01-01T00:00:00+00:00 + Other + + + + + + All end uses + Site + 6900.0 + 6900.0 + 36.645900000000005 + + + Linked Time Series ID + TimeSeriesType-45136680 + + + + + All end uses + Site + 5970.0 + 5970.0 + 31.70667 + + + Linked Time Series ID + TimeSeriesType-45136760 + + + + + All end uses + Site + 5730.0 + 5730.0 + 30.432029999999997 + + + Linked Time Series ID + TimeSeriesType-45136840 + + + + + All end uses + Site + 3900.0 + 3900.0 + 20.712899999999998 + + + Linked Time Series ID + TimeSeriesType-45136920 + + + + + All end uses + Site + 1790.0 + 1790.0 + 9.506689999999999 + + + Linked Time Series ID + TimeSeriesType-45137000 + + + + + All end uses + Site + 680.0 + 680.0 + 3.61148 + + + Linked Time Series ID + TimeSeriesType-45137080 + + + + + All end uses + Site + 650.0 + 650.0 + 3.4521499999999996 + + + Linked Time Series ID + TimeSeriesType-45137160 + + + + + All end uses + Site + 620.0 + 620.0 + 3.29282 + + + Linked Time Series ID + TimeSeriesType-45137240 + + + + + All end uses + Site + 630.0 + 630.0 + 3.3459299999999996 + + + Linked Time Series ID + TimeSeriesType-45137320 + + + + + All end uses + Site + 1910.0 + 1910.0 + 10.14401 + + + Linked Time Series ID + TimeSeriesType-45137400 + + + + + All end uses + Site + 4030.0 + 4030.0 + 21.403329999999997 + + + Linked Time Series ID + TimeSeriesType-45137480 + + + + + All end uses + Site + 4820.0 + 4820.0 + 25.59902 + + + Linked Time Series ID + TimeSeriesType-45137560 + + + + + All end uses + Site + 6800.0 + 6800.0 + 36.114799999999995 + + + Linked Time Series ID + TimeSeriesType-45137640 + + + + + All end uses + Site + 4870.0 + 4870.0 + 25.86457 + + + Linked Time Series ID + TimeSeriesType-45137720 + + + + + All end uses + Site + 4370.0 + 4370.0 + 23.20907 + + + Linked Time Series ID + TimeSeriesType-45137800 + + + + + All end uses + Site + 3360.0 + 3360.0 + 17.84496 + + + Linked Time Series ID + TimeSeriesType-45137900 + + + + + All end uses + Site + 2200.0 + 2200.0 + 11.684199999999999 + + + Linked Time Series ID + TimeSeriesType-45137980 + + + + + All end uses + Site + 370.0 + 370.0 + 1.9650699999999999 + + + Linked Time Series ID + TimeSeriesType-45138060 + + + + + All end uses + Site + 360.0 + 360.0 + 1.9119599999999999 + + + Linked Time Series ID + TimeSeriesType-45138140 + + + + + All end uses + Site + 380.0 + 380.0 + 2.0181799999999996 + + + Linked Time Series ID + TimeSeriesType-45138220 + + + + + All end uses + Site + 420.0 + 420.0 + 2.23062 + + + Linked Time Series ID + TimeSeriesType-45138300 + + + + + All end uses + Site + 1490.0 + 1490.0 + 7.91339 + + + Linked Time Series ID + TimeSeriesType-45138380 + + + + + All end uses + Site + 4400.0 + 4400.0 + 23.368399999999998 + + + Linked Time Series ID + TimeSeriesType-45138480 + + + + + All end uses + Site + 4580.0 + 4580.0 + 24.324379999999998 + + + Linked Time Series ID + TimeSeriesType-45138560 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + Natural gas + Site + therms + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Refrigeration + 42020.37890625 + + + Electricity + Site + kWh + Not shared + Cooling + 47903.23046875 + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Ventilation + 39499.1484375 + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Laundry + 16808.150390625 + + + Other End Use + Appliances + + + + + Electricity + Site + kWh + Not shared + Total lighting + 33616.1015625 + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Plug load + 156315.796875 + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Heating + 17213.919921875 + + + Net + CO2e + 91.42312870507813 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 18401.080078125 + + + Net + CO2e + 97.72813629492188 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + All end uses + 336162.806640625 + + + Natural gas + Site + therms + Not shared + All end uses + 35615.0 + + + Net + CO2e + 189.151265 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + HVAC + Current + + + + + + + + 2870 + + + Electricity + kWh + 7800.0 + + + Natural gas + therms + 1180.0 + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Application Scale + Entire site + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + DHW + Current + + + + + + + + 1215 + + + Electricity + kWh + 0.0 + + + Natural gas + therms + 1380.0 + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Application Scale + Entire site + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Lighting + Current + + + + + + 255 + + + Electricity + kWh + 1800.0 + + + Natural gas + therms + -80.0 + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Application Scale + Entire site + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Capital + Current + + + + + + + + + 8170 + + + Electricity + kWh + 24890.0 + + + Natural gas + therms + 13670.0 + + + 0.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Application Scale + Entire site + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + + + 2025-06-27 + Site Visit + + + 2024-07-03 + Custom + Level 1: Walk-through + + + 2025-06-27 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + 21539 + CO + 2026-12-31 + + + + + + + + + + + Direct metering + + + + + + PSCO + + + Direct metering + 0087141601 + + + + + + + + + + + 50121 Program Pathway + Measured Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + Level 3 audit not performed + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + 50121 HOMES Template + + + Auditor Years Of Experience + 15 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + Contributor Contact ID + ContactType-45136100 + + + Contributor Contact Role + Contributor + + + + + + + + Contributor + + Annabelle Mathis + Energetics Consulting Engineers, LLC + Energy Engineer + + + + 6140 S Gun Club Rd + + + Aurora + CO + 80016 + + + + 303-876-7655 + + + + + annabelle@energetics-eng.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45136080 + Contributor + + + + + + Energy Auditor + + Larry Katz + Energetics Consulting Engineers + Existing Buildings Director + + + + 6140 S. Gun Club Rd. Suite K + + + Aurora + CO + 80016 + + + + 908-489-5677 + + + + + larry@energetics-eng.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45136080 + Energy Auditor + + + Contact Role For Qualification-45136140 + Energy Auditor + + + Contributor Contact ID For Qualification-45136140 + ContactType-45136120 + + + Contributor Contact Role For Qualification-45136140 + Energy Auditor + + + Other Qualification Type For Qualification-45136140 + + + + + + + Operator + Owner + + Kara Kesler + Curtis Capital Group, LLC + Asset Manager + + + + 10500 NE 8th St #301 + + + Bellevue + WA + 98004 + + + + 425-214-1104 + + + + + kara@curtiscapitalgroup.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45136080 + Operator + + + Contact Role For ReportType-45136080 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example_NYC_Energy_Efficiency_Report_Property.xml b/spec/files/v2.7.0/Example_NYC_Energy_Efficiency_Report_Property.xml new file mode 100644 index 0000000..7eee733 --- /dev/null +++ b/spec/files/v2.7.0/Example_NYC_Energy_Efficiency_Report_Property.xml @@ -0,0 +1,5029 @@ + + + + + + + + + + Custom + Borough + Manhattan + + + Custom + Tax Block + 12345 + + + Custom + Tax Lot + 6789 + + + Example NYC Energy Efficiency Report Property + + New York + NY + + + + Example NYC Energy Efficiency Report Building 1 + Example NYC building for import/export. Inputs for nearly all + fields have been entered, including most yes/no fields set to 'yes'. Input + data entered may not necessarily be considered reflective of a typical building. + This example is configured to import and export with BuildingSync version 2.3.0. The + building will also successfully convert to an Asset Score building for modeling. + + + Custom + Atlanta Building ID + + + + Custom + BIN + 1111111 + + + Custom + EER + A + + + Custom + Portfolio Manager Building ID + 898989 + + + Custom + Audit Template Building ID + 23856 + + + + + + 123 Example Street + + + New York + NY + 10118 + + + NYCW + + Multifamily with commercial + true + 7 + 1 + true + true + + + Cooled only + 4000.0 + + + Gross + 40000.0 + + + Heated and Cooled + 30000.0 + + + Heated only + 6000.0 + + + 100000.0 + 10000.0 + 3500.0 + 0.4000000059604645 + 1999 + 2006 + 2010-01-01 + 2011 + 50.0 + 50.0 + 2 + + + Whole building + Rectangular + + + + + + + + + + + + + + + Average + + + + + + + + + + + + + + + + + + + + + + + + + + Space function + Lodging with extended amenities + + + Peak total occupants + 100 + + + + + 168.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 30000.0 + + + Conditioned + 30000.0 + + + Common + 3000.0 + + + Tenant + 27000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.5 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + VAV with Hot Water Reheat + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + + 72 + 75 + + + + + Space function + Retail + + + Peak total occupants + 200 + + + + + 50.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 10000.0 + + + Conditioned + 10000.0 + + + Common + 10000.0 + + + Tenant + 0.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 2.0 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + VAV with Hot Water Reheat + + + Principal Lighting System Type + T12 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + + 70 + 76 + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + true + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2016-01-01 + + + Multi Tenant Is Not Applicable + false + + + Number Of Facilities On Site Is Not Applicable + false + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity + 100000.0 + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + false + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity + 5 + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + false + + + Percentage Skylight Area + 2.0 + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + true + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + true + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + false + + + Roof Area + 35000.0 + + + Shared Chilled water + true + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + true + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + true + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + true + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + true + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + true + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + true + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + true + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + Above ground Parking Garage not included. + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + true + + + Validate 100% Lighting Status Is Not Applicable + false + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + Full Modulation Manual + 12 + 2012 + Unknown + Condensing + 250000.0 + kBtu/hr + 85.0 + AFUE + 2 + + Average + Mechanical Room + 2012 + Natural gas + true + + + + + + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Name + Heating Plant 1 + + + Heating Plant Notes + + + + Heating Plant Notes Is Not Applicable + true + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Vapor compression + Electric Motor + Screw + + + + 3.5 + COP + 300000.0 + kBtu/hr + Other + 2 + + Excellent + Roof + 2014 + District chilled water + true + + + + + + + + + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Chilled Water Reset Control Is Not Applicable + false + + + Chiller Compressor Driver Is Not Applicable + false + + + Cooling Plant Condition Is Not Applicable + false + + + Cooling Plant Name + Cooling Plant 1 + + + Cooling Plant Notes + + + + Cooling Plant Notes Is Not Applicable + true + + + Condenser Plant ID Is Not Applicable + false + + + Condenser Type + Water Cooled + + + Condenser Type Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Location Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Cooling tower + Variable Flow + Variable Speed + + + + Condenser Plant Name + Condenser Plant + + + Cooling Tower Fan Control Is Not Applicable + false + + + Water Cooled Condenser Flow Control Is Not Applicable + false + + + + + + + + + + + + + + Multi zone + + + + + + kBtu/hr + + + + Manual + + + + + None + + + + + Programmable + + + + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + + Manual + + + + + None + + + + + Programmable + + + + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + false + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + Central fan + VAV terminal box not fan powered with reheat + Heating plant + + + + + + + + + + + + Dry bulb temperature + + true + true + + + + + + + + + + + + + Heat recovery ventilator + true + + + + + + + + + + Digital + Pneumatic + + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Central Distribution Type + Forced Air + + + Demand Control Ventilation Is Not Applicable + false + + + Exhaust Ventilation For Corridor + true + + + Exhaust Ventilation For Corridor Is Not Applicable + false + + + Exhaust Ventilation For Kitchen + true + + + Exhaust Ventilation For Kitchen Is Not Applicable + false + + + Exhaust Ventilation For Other + true + + + Exhaust Ventilation For Other Is Not Applicable + false + + + Exhaust Ventilation For Parking + true + + + Exhaust Ventilation For Parking Is Not Applicable + false + + + Exhaust Ventilation For Restroom + true + + + Exhaust Ventilation For Restroom Is Not Applicable + false + + + Minimum Air Flow Fraction + 0.4 + + + Minimum Air Flow Fraction Is Not Applicable + false + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + false + + + Supply Air Temperature Reset Control Is Not Applicable + false + + + Supply Ventilation For Common area + true + + + Supply Ventilation For Common area Is Not Applicable + false + + + Supply Ventilation For Corridor + true + + + Supply Ventilation For Corridor Is Not Applicable + false + + + Supply Ventilation For Other + true + + + Supply Ventilation For Other Is Not Applicable + false + + + Supply Ventilation For Tenant Spaces + true + + + Supply Ventilation For Tenant Spaces Is Not Applicable + false + + + Terminal Unit Is Not Applicable + false + + + Ventilation System > 5 hp + true + + + Ventilation Type Is Not Applicable + false + + + + + + Single zone + + + + + High Low + 4 + 2015 + Unknown + Condensing + + + 65.0 + Thermal Efficiency + 1000.0 + kBtu/hr + Natural gas + Good + + + + Manual + + + + Interior + 2015 + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + false + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + 10 + + + + + + + + 3.0 + COP + 1000.0 + kBtu/hr + Electricity + Good + + + + Manual + + + + Interior + 2000 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 10 + + + + + + + Local fan + + + + + + + + + + false + false + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + Common + 100 + + + Tenant + 0 + + + + + + + + Central Distribution Type + None (unitized heating/cooling) + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + false + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + false + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + false + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + false + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + false + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type + PTAC/PTHP + + + Packaged Terminal Equipment Type Is Not Applicable + false + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + true + + + Supply Ventilation For Common area Is Not Applicable + false + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + false + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + false + + + Supply Ventilation For Tenant Spaces + true + + + Supply Ventilation For Tenant Spaces Is Not Applicable + false + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + true + + + + + + + + + Unknown + Unknown + + + Premium Electronic + false + + + + Advanced + + + + + EMCS + + + + + Manual On/Off + + + + + Occupancy Sensors + + + + + Other + + + + + Photocell + + + + + Chronological + + + + + + + + + + + + Common + 100.0 + + + Tenant + 0.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-44964320 + + + + Common Areas Lighting Power Density For Section-44964320 + + + + Tenant Areas Lighting Power Density For Section-44964320 + + + + Quantity Of Luminaires For Section-44964320 + + + + Common Areas Quantity Of Luminaires For Section-44964320 + 350 + + + Tenant Areas Quantity Of Luminaires For Section-44964320 + 0 + + + + + + + LED + + + Standard Electronic + false + + + + Advanced + + + + + EMCS + + + + + Manual On/Off + + + + + Occupancy Sensors + + + + + Other + + + + + Photocell + + + + + Chronological + + + + + + + + + + + + Common + 50.0 + + + Tenant + 100.0 + + + + + + + + Lighting System Name + Fixture 3 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-44964320 + + + + Common Areas Lighting Power Density For Section-44964320 + + + + Tenant Areas Lighting Power Density For Section-44964320 + + + + Quantity Of Luminaires For Section-44964320 + + + + Common Areas Quantity Of Luminaires For Section-44964320 + 2500 + + + Tenant Areas Quantity Of Luminaires For Section-44964320 + 8000 + + + + + + + T12 + Unknown + + + Electromagnetic + false + + + + Advanced + + + + + EMCS + + + + + Occupancy Sensors + + + + + Photocell + + + + + Chronological + + + + + + + + + + + + Common + 100.0 + + + Tenant + 0.0 + + + + + + + + Lighting System Name + Fixture 4 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-44964340 + + + + Common Areas Lighting Power Density For Section-44964340 + + + + Tenant Areas Lighting Power Density For Section-44964340 + + + + Quantity Of Luminaires For Section-44964340 + + + + Common Areas Quantity Of Luminaires For Section-44964340 + 2000 + + + Tenant Areas Quantity Of Luminaires For Section-44964340 + 0 + + + + + + + Sodium Vapor High Pressure + Unknown + + + Electromagnetic + true + + + + Manual On/Off + + + + + + + + + + + Lighting System Name + Fixture 2 + + + LED Application Type Is Not Applicable + true + + + + + + + + + + + + + Hot water + + + + + + + + + + + + + + + + + + + + Unknown + Condensing + + + + + 20.0 + 3.0 + + + Thermal Efficiency + 75.0 + + + + Aquastat + + + + + Demand + + + + + EMCS + + + + + Other + + + + + Chronological + + + + 2000 + Natural gas + Mechanical Room + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + Common + 100 + + + Tenant + 0 + + + + + + + + Draft Type Is Not Applicable + false + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + false + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + false + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Variable Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + + + 85.0 + Variable Volume + + + + + + Constant Volume + + + + + + + + 75.0 + + + + + + + + Masonry + Brick + + + 15.0 + + + + + + + Built up + true + true + true + + + 20.0 + + + Concrete + Less than 2 to 12 + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + Other + + + + + Other Exterior Door Type + glass + + + + + + + + Other + 1.0 + 0.4 + 0.4 + + + + + + Aluminum no thermal break + true + Tight + Clear uncoated + Air + Double pane + 1.22 + 0.817 + 0.893 + + + Year Installed Is Not Applicable + false + + + + + + + 15.0 + Steel + + + + + + + + 4.0 + 20.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + false + + + + + + + + 25.0 + + + + + + Foundation Wall R Value Is Not Applicable + false + + + Linked Wall ID + WallSystemType-44965100 + + + + + + + Server + 2.0 + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area + 10000.0 + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + Metering + true + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness + 45.0 + + + Power Usage Effectiveness Is Not Applicable + false + + + + + Other + 1.100000023841858 + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area + 1000.0 + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + Other + 1.2000000476837158 + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area + 1000.0 + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + + + UPS + 30.0 + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + false + + + + + + + Broadcast Antenna + 1000.0 + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + Kitchen Equipment + 3.5 + + + + + + + + Gross Floor Area + 2000.0 + + + Gross Floor Area Is Not Applicable + false + + + Plug Load Peak Power Is Not Applicable + false + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + 6.0 + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + + + Miscellaneous Gas Load + 0.5 + + + + + + + + Miscellaneous Gas Load + 0.4 + + + + + + + + + + Elevator + 8 + 2000 + + + + + + + + Elevator Type + Hydraulic + + + + + + + + + + + Standby generator + Diesel + + + + + true + true + 50000.0 + kBtu/hr + 2015 + + + + + + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Other Energy Generation Technology Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + 200 + + + + + Natural gas + + + + + false + true + 100000.0 + kBtu/hr + 2016 + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + Fuel cell + + + + + + + + + + + + + + + + Turbine + + + + + + + + + + + + + + + + Microturbine + + + + + + + + + + + + + + + + Reciprocating engine + + + + + + + + + + + + + + + + Other + + + + + + + + + + + + + + + + Wind + + + + + + + + + + + + + + Average + + + + + + + + + + + + + Saturday + 00:00:00 + 00:00:00 + + + Sunday + 00:00:00 + 00:00:00 + + + Weekday + 00:00:00 + 00:00:00 + + + + + + + Saturday + 07:00:00 + 18:00:00 + + + Sunday + 08:00:00 + 05:00:00 + + + Weekday + 06:00:00 + 21:00:00 + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure Identifier 150791 + Add LEDs + + + + + 3000.0 + 500.0 + + 6 + 10000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + Measure Identifier 150792 + Add sensors + + + + + 900.0 + 200.0 + + 10 + 1800.0 + Proposed + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Air Distribution + + + + + + + + + Replace or modify AHU + + + + Entire building + Measure Identifier 150793 + Install new AHU + + + + + 2800.0 + 1500.0 + + 15 + 50000.0 + Proposed + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Air Distribution + + + + + + + + + Add energy recovery + + + + Entire building + Measure Identifier 150794 + Install ERV system + + + + + 1200.0 + 500.0 + + 10 + 20000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Air Distribution + + + + + + + + + Convert CV system to VAV system + + + + Entire building + Measure Identifier 150795 + CAV to VAV + + + + + 1800.0 + 0.0 + + 12 + 10000.0 + Evaluated + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Insulate SHW tank + + + + Entire building + Measure Identifier 150796 + Add H20 insulation + + + + + 150.0 + 100.0 + + 20 + 400.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Decrease SHW temperature + + + + Entire building + Measure Identifier 150797 + Lower temp + + + + + 200.0 + 50.0 + + 20 + 250.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Clean and/or repair + + + + Entire building + Measure Identifier 150798 + Fix leaks + + + + + 100.0 + 0.0 + + 20 + 300.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Diesel + Site + Gallons + All end uses + + + Fuel oil no 1 + Site + Gallons + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + + + + + + + + Contributor Contact ID + ContactType-44967240 + + + Contributor Contact Role + Contributor + + + + + + + benchmark + + Current + + + + + + 2015 + 78.0 + + + + + All end uses + Site + 33.0 + 1.5 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + Net + CO2e + 30000.0 + + + + + GHG Emissions Is Not Applicable + false + + + + + + + All end uses + Site + 40000.0 + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + 32.0 + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 40.0 + 1.2 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + Annual + 2000000.0 + + + + + + All end uses + Site + 50000.0 + 803.7203813033934 + + + Percentage Of Annual Energy Cost Paid By Tenant + 75 + + + Linked Time Series ID + TimeSeriesType-44965560 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Diesel + Current + + + + + + Diesel + Site + Gallons + Not shared + + + + + Average + Energy + Annual + 800.0 + + + + + + All end uses + Site + 6000.0 + 8.192784 + + + Percentage Of Annual Energy Cost Paid By Tenant + 60 + + + Linked Time Series ID + TimeSeriesType-44965640 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Fuel oil no 1 + Current + + + + + + Fuel oil no 1 + Site + Gallons + Not shared + + + + + Average + Energy + Annual + 4000.0 + + + + + + All end uses + Site + 10000.0 + 40.866 + + + Percentage Of Annual Energy Cost Paid By Tenant + 100 + + + Linked Time Series ID + TimeSeriesType-44965720 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Deliveries - Fuel oil no 1 + Current + + + + + + Fuel oil no 1 + Site + Gallons + Not shared + + + + + Point + Energy + 2016-09-01T00:00:00+00:00 + 2016-09-02T00:00:00+00:00 + Day + 400.0 + + + + + + All end uses + Site + 3000.0 + 4.0866 + + + Linked Time Series ID + TimeSeriesType-44965860 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Deliveries + + + + + Audit Template Energy Deliveries - Diesel + Current + + + + + + Diesel + Site + Gallons + Not shared + + + + + Point + Energy + 2016-01-01T00:00:00+00:00 + 2016-01-02T00:00:00+00:00 + Day + 800.0 + + + + + + All end uses + Site + 9000.0 + 8.192784 + + + Linked Time Series ID + TimeSeriesType-44965940 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Deliveries + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Total lighting + 900000.0 + + + Net + CO2e + 361.674171586527 + + + + + Electricity + Site + kWh + Not shared + Ventilation + 200000.0 + + + Net + CO2e + 80.37203813033933 + + + + + Electricity + Site + kWh + Not shared + IT equipment + 400000.0 + + + Net + CO2e + 160.74407626067867 + + + + + Fuel oil no 1 + Site + Gallons + Not shared + Heating + 4000.0 + + + Net + CO2e + 40.866 + + + + + Diesel + Site + Gallons + Not shared + Laundry + 600.0 + + + Net + CO2e + 6.144588 + + + + + Other End Use + Backup power + + + + + Electricity + Site + kWh + Not shared + All end uses + 1500000.0 + + + Net + CO2e + 602.7902859775451 + + + + + Fuel oil no 1 + Site + Gallons + Not shared + All end uses + 4000.0 + + + Net + CO2e + 40.866 + + + + + Diesel + Site + Gallons + Not shared + All end uses + 600.0 + + + Net + CO2e + 6.144588 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Shared Resource System Energy Uses + Current + + + + + + Natural gas + Site + therms + Other + Heating + 100.0 + + + Net + CO2e + 0.5311 + + + + + Natural gas + Site + therms + Other + All end uses + 100.0 + + + Net + CO2e + 0.5311 + + + + + + + + + + + + Other Scenario Type + Audit Template Shared Resource System Energy Uses + + + + + Lighting upgrades + Current + + + + + + + 1000 + + + Electricity + kWh + 1000.0 + + + Natural gas + therms + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + 400.0 + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + 5.0 + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 100.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + HVAC upgrade + Current + + + + + + + + 20000 + + + Electricity + kWh + 30000.0 + + + Natural gas + therms + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + 1800.0 + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + 20.0 + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 1500.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Water Heater improvements + Current + + + + + + + + 200 + + + Electricity + kWh + 300.0 + + + Natural gas + therms + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + 20.0 + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + 1.0 + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 50.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2016-07-01 + Custom + Level 1: Walk-through + + + 2017-01-01 + Custom + Level 2: Energy Survey and Analysis + + + 2018-01-01 + Custom + Level 3: Detailed Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Auditor (CEA) + 12345 + NY + 2030-10-01 + + + + 123456 + NY + 2030-10-01 + + Building Performance Institute (BPI) Certification + + + 123456 + NY + 2030-10-01 + + Professional Engineer (PE) + + + + + + + monthly + + + Direct metering + 987654321 + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + false + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + Deep energy retrofit information to be attached separately. + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + Example contacts added 10/29/19. + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + New York City Energy Efficiency Report + + + Auditor Years Of Experience + 5 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Energy Auditor + + A. Example Auditor + Auditor Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.auditor@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44965160 + Energy Auditor + + + Contact Role For Qualification-44965200 + Energy Auditor + + + Contributor Contact ID For Qualification-44965200 + ContactType-44965180 + + + Contributor Contact Role For Qualification-44965200 + Energy Auditor + + + Other Qualification Type For Qualification-44965200 + + + + + + + Operator + + A. Example Building Operator + Building Operator Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.operator@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44965160 + Operator + + + Contact Role For Qualification-44965240 + Operator + + + Contributor Contact ID For Qualification-44965240 + ContactType-44965220 + + + Contributor Contact Role For Qualification-44965240 + Operator + + + Other Qualification Type For Qualification-44965240 + + + + + + + Owner + + A. Example Building Owner + Building Owner Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.owner@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44965160 + Owner + + + + + + Qualified Assessor + + A. Example Licensed Pro + Licensed Pro Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.pro@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44965160 + Qualified Assessor + + + Contact Role For Qualification-44965300 + Qualified Assessor + + + Contributor Contact ID For Qualification-44965300 + ContactType-44965280 + + + Contributor Contact Role For Qualification-44965300 + Qualified Assessor + + + Other Qualification Type For Qualification-44965300 + + + + + + + Property Management Company + + A. Example Property Manager + Property Manager Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.manager@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44965160 + Property Management Company + + + + + + Contributor + + A. Example Submitter + Submitter Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.submitter@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44964180 + Contributor + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example_NYC_Energy_Efficiency_Report_Property_2.xml b/spec/files/v2.7.0/Example_NYC_Energy_Efficiency_Report_Property_2.xml new file mode 100644 index 0000000..9296158 --- /dev/null +++ b/spec/files/v2.7.0/Example_NYC_Energy_Efficiency_Report_Property_2.xml @@ -0,0 +1,3053 @@ + + + + + + + + + + Custom + Borough + Manhattan + + + Custom + Tax Block + 12345 + + + Custom + Tax Lot + 6789 + + + Example NYC Energy Efficiency Report Property + + New York + NY + + + + Example NYC Energy Efficiency Report Building 2 + Example NYC building for import/export. Multiple input fields have + been marked as 'n/a' for this building to demonstrate this capability. + Input data entered may not necessarily be considered reflective of a typical + building. This example is configured to import and export with BuildingSync version + 2.3.0. The building will also successfully convert to an Asset Score building for + modeling. + + + Custom + Atlanta Building ID + + + + Custom + BIN + 2222222 + + + Custom + EER + A + + + Custom + Portfolio Manager Building ID + 1234 + + + Custom + Audit Template Building ID + 23857 + + + + + + 456 Example Street + + + New York + NY + 10118 + + + NYCW + + Office + false + 15 + 0 + true + true + + + Cooled only + 0.0 + + + Gross + 200000.0 + + + Heated and Cooled + 200000.0 + + + Heated only + 0.0 + + + 18000.0 + 0.0 + 1500.0 + 0.5 + 1950 + 20.0 + 80.0 + 2 + + + Whole building + L-Shape + + + + + + + + + + + + + + + Good + + + + + + + + + + + + + + Space function + Office + Office + + + Peak total occupants + 1500 + + + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 200000.0 + + + Conditioned + 200000.0 + + + Common + 0.0 + + + Tenant + 200000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.5 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Packaged Rooftop Air Conditioner + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + + 72 + 78 + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2016-01-01 + + + Multi Tenant Is Not Applicable + false + + + Number Of Facilities On Site Is Not Applicable + false + + + Onsite Generation System + false + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + false + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology + no backup system present + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + false + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Retrocommissioning Date Is Not Applicable + true + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + none + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + false + + + Validate 100% Lighting Status Is Not Applicable + true + + + Year Of Last Energy Audit Is Not Applicable + true + + + Year Of Last Major Remodel Is Not Applicable + true + + + + + + + + + + + Single zone + + + + + High Low + 1 + 1990 + Natural + + + 66.0 + Thermal Efficiency + 100000.0 + kBtu/hr + Natural gas + Poor + + + + None + + + + Mechanical Room + 1990 + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + false + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + 1 + + + + + + + + 3.200000047683716 + COP + 200000.0 + kBtu/hr + Electricity + Average + + + + None + + + + Mechanical Room + 2000 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 4 + + + + + + + Local fan + + + + + + + + + + false + false + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + Common + 0 + + + Tenant + 100 + + + + + + + + Central Distribution Type + None (unitized heating/cooling) + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + true + + + Packaged Terminal Equipment Type + PTAC/PTHP + + + Packaged Terminal Equipment Type Is Not Applicable + false + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + true + + + + + + + + + T8 + Unknown + + + Standard Electronic + false + + + + Manual On/Off + + + + + + + + + + + + Common + 0.0 + + + Tenant + 100.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-44987460 + + + + Common Areas Lighting Power Density For Section-44987460 + + + + Tenant Areas Lighting Power Density For Section-44987460 + + + + Quantity Of Luminaires For Section-44987460 + + + + Common Areas Quantity Of Luminaires For Section-44987460 + 0 + + + Tenant Areas Quantity Of Luminaires For Section-44987460 + 2000 + + + + + + + + + + + + + + 20.0 + 2.0 + + + AFUE + 75.0 + + + + Chronological + + + + 1995 + Fuel oil no 1 + Mechanical Floor + + + + + + + + + Common + 0 + + + Tenant + 100 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + false + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + false + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + 65.0 + Constant Volume + + + + + + + + 76.0 + + + + + + + + Wood frame + Other + + + 15.0 + + + + + + + Built up + false + false + false + + + 10.0 + + + Wood + Flat + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + Solid wood + + + + + Other Exterior Door Type + + + + + + + + + Vinyl + false + Leaky + Clear uncoated + Single pane + 0.7 + 0.6 + 0.8 + + + Year Installed Is Not Applicable + false + + + + + + + + + + 4.0 + 25.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + false + + + + + + + Foundation Wall R Value Is Not Applicable + false + + + Linked Wall ID + WallSystemType-44988020 + + + + + + + Server + 1.2000000476837158 + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area + 1000.0 + + + Gross Floor Area Is Not Applicable + false + + + IT Peak Power Is Not Applicable + false + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness + 5.0 + + + Power Usage Effectiveness Is Not Applicable + false + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + 2.299999952316284 + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + false + + + + + + + Broadcast Antenna + 1.399999976158142 + + + + + + + + Plug Load Peak Power Is Not Applicable + false + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + Miscellaneous Gas Load + 0.28 + + + + + + + + + + Elevator + 2 + 1960 + + + + + + + + + + + Elevator Type + Traction + + + + + + + + + + + Other + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + Very Leaky + + + + + + + + + + + + + Weekday + 06:00:00 + 18:00:00 + + + + + + + Roof + + + + + + + + + Increase roof insulation + + + + Entire building + Measure Identifier 150799 + add insulation + + + + + 300.0 + 1000.0 + + 10 + 4800.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Roof + + + + + + + + + Clean and/or repair + + + + Entire building + Measure Identifier 150800 + fix leaks + + + + + 150.0 + 0.0 + + 10 + 1200.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Diesel + Site + Gallons + All end uses + + + Fuel oil no 1 + Site + Gallons + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + + + + + + + + Contributor Contact ID + ContactType-44988100 + + + Contributor Contact Role + Contributor + + + + + + + benchmark + + Current + + + + + + 2015 + 80.0 + + + + + All end uses + Site + 75.0 + 60.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + Net + CO2e + 100000.0 + + + + + GHG Emissions Is Not Applicable + false + + + + + + + All end uses + Site + 20000.0 + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + 65.0 + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 72.0 + 58.0 + + + + + + + + + + Audit Template Energy Deliveries - Fuel oil no 1 + Current + + + + + + Fuel oil no 1 + Site + Gallons + Not shared + + + + + Point + Energy + 2016-10-01T00:00:00+00:00 + 2016-10-02T00:00:00+00:00 + Day + 120.0 + + + + + + All end uses + Site + 3000.0 + 1.22598 + + + Linked Time Series ID + TimeSeriesType-44988480 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Deliveries + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2016-01-01T00:00:00+00:00 + 2016-02-01T00:00:00+00:00 + Other + 100.0 + + + + Peak + Voltage + 2016-02-01T00:00:00+00:00 + 2016-03-01T00:00:00+00:00 + Other + 70.0 + + + + Peak + Voltage + 2016-03-01T00:00:00+00:00 + 2016-04-01T00:00:00+00:00 + Other + 100.0 + + + + Peak + Voltage + 2016-04-01T00:00:00+00:00 + 2016-05-01T00:00:00+00:00 + Other + 70.0 + + + + Peak + Voltage + 2016-05-01T00:00:00+00:00 + 2016-06-01T00:00:00+00:00 + Other + 100.0 + + + + Peak + Voltage + 2016-06-01T00:00:00+00:00 + 2016-07-01T00:00:00+00:00 + Other + 70.0 + + + + Peak + Voltage + 2016-07-01T00:00:00+00:00 + 2016-08-01T00:00:00+00:00 + Other + 100.0 + + + + Peak + Voltage + 2016-08-01T00:00:00+00:00 + 2016-09-01T00:00:00+00:00 + Other + 70.0 + + + + Peak + Voltage + 2016-09-01T00:00:00+00:00 + 2016-10-01T00:00:00+00:00 + Other + 100.0 + + + + Peak + Voltage + 2016-10-01T00:00:00+00:00 + 2016-11-01T00:00:00+00:00 + Other + 70.0 + + + + Peak + Voltage + 2016-11-01T00:00:00+00:00 + 2016-12-01T00:00:00+00:00 + Other + 100.0 + + + + Peak + Voltage + 2016-12-01T00:00:00+00:00 + 2017-01-01T00:00:00+00:00 + Other + 70.0 + + + + + + All end uses + Site + 366.35406494140625 + 1000.0 + 0.14722311438337757 + + + Linked Time Series ID + TimeSeriesType-44988580 + + + + + All end uses + Site + 381.0082092285156 + 800.0 + 0.15311203160043282 + + + Linked Time Series ID + TimeSeriesType-44988620 + + + + + All end uses + Site + 322.3915710449219 + 1000.0 + 0.12955633820461232 + + + Linked Time Series ID + TimeSeriesType-44988660 + + + + + All end uses + Site + 263.77490234375 + 800.0 + 0.10600063254499205 + + + Linked Time Series ID + TimeSeriesType-44988700 + + + + + All end uses + Site + 249.12075805664062 + 1000.0 + 0.1001117153279368 + + + Linked Time Series ID + TimeSeriesType-44988740 + + + + + All end uses + Site + 205.15826416015625 + 800.0 + 0.08244493914917154 + + + Linked Time Series ID + TimeSeriesType-44988780 + + + + + All end uses + Site + 212.4853515625 + 1000.0 + 0.08538940388959905 + + + Linked Time Series ID + TimeSeriesType-44988820 + + + + + All end uses + Site + 225.67410278320312 + 800.0 + 0.0906894379696086 + + + Linked Time Series ID + TimeSeriesType-44988860 + + + + + All end uses + Site + 175.84994506835938 + 1000.0 + 0.07066709245126128 + + + Linked Time Series ID + TimeSeriesType-44988900 + + + + + All end uses + Site + 199.29660034179688 + 800.0 + 0.08008936980958949 + + + Linked Time Series ID + TimeSeriesType-44988940 + + + + + All end uses + Site + 271.10198974609375 + 1000.0 + 0.10894509728541955 + + + Linked Time Series ID + TimeSeriesType-44988980 + + + + + All end uses + Site + 293.083251953125 + 800.0 + 0.11777849150670207 + + + Linked Time Series ID + TimeSeriesType-44989020 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Cooling + 2000.0 + + + Net + CO2e + 0.8037203813033934 + + + + + Fuel oil no 1 + Site + Gallons + Not shared + Domestic hot water + 100.0 + + + Net + CO2e + 1.02165 + + + + + Electricity + Site + kWh + Not shared + All end uses + 2000.0 + + + Net + CO2e + 0.8037203813033934 + + + + + Fuel oil no 1 + Site + Gallons + Not shared + All end uses + 100.0 + + + Net + CO2e + 1.02165 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Roof repair and insulation + Current + + + + + + + 1000 + + + Electricity + kWh + 2000.0 + + + Natural gas + therms + + + District chilled water + Ton-hour + + + District hot water + therms + + + District steam + Mlbs + + + Fuel oil no 1 + Gallons + 30.0 + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + 20.0 + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 1500.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2016-07-01 + Custom + Level 1: Walk-through + + + 2017-07-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + Association of Energy Engineers Certified Energy Manager (CEM) + 12345 + NY + 2030-10-01 + + + + 12345 + NY + 2030-10-01 + + Building Performance Institute (BPI) Certification + + + 123456 + NY + 2030-10-01 + + Professional Engineer (PE) + + + + + + + monthly + + + Master meter without sub metering + 1234 + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + New York City Energy Efficiency Report + + + Auditor Years Of Experience + 5 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + + Contributor + + A. Example Submitter + Submitter Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.submitter@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44988080 + Contributor + + + + + + Energy Auditor + + A. Example Auditor + Auditor Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.auditor@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44988080 + Energy Auditor + + + Contact Role For Qualification-44988140 + Energy Auditor + + + Contributor Contact ID For Qualification-44988140 + ContactType-44988120 + + + Contributor Contact Role For Qualification-44988140 + Energy Auditor + + + Other Qualification Type For Qualification-44988140 + + + + + + + Operator + Owner + + A. Example Building Operator + Building Operator Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.operator@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44988080 + Operator + + + Contact Role For Qualification-44988180 + Operator + + + Contributor Contact ID For Qualification-44988180 + ContactType-44988160 + + + Contributor Contact Role For Qualification-44988180 + Operator + + + Other Qualification Type For Qualification-44988180 + + + + Contact Role For ReportType-44988080 + Owner + + + + + + Qualified Assessor + + A. Example Licensed Pro + Licensed Pro Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.pro@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44988080 + Qualified Assessor + + + Contact Role For Qualification-44988220 + Qualified Assessor + + + Contributor Contact ID For Qualification-44988220 + ContactType-44988200 + + + Contributor Contact Role For Qualification-44988220 + Qualified Assessor + + + Other Qualification Type For Qualification-44988220 + + + + + + + Property Management Company + + A. Example Property Manager + Property Manager Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.manager@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-44988080 + Property Management Company + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Example_San_Francisco_Audit_Report.xml b/spec/files/v2.7.0/Example_San_Francisco_Audit_Report.xml new file mode 100644 index 0000000..68e9fd7 --- /dev/null +++ b/spec/files/v2.7.0/Example_San_Francisco_Audit_Report.xml @@ -0,0 +1,3680 @@ + + + + + + + + + + Example San Francisco Audit Report + Example San Francisco audit report building for import/export. + Input data entered may not necessarily be considered reflective of a typical + building. + This example is configured to import and export with BuildingSync version 2.3.0. The + building will also successfully convert to an Asset Score building for modeling. + + + Custom + Atlanta Building ID + + + + Custom + City Custom Building ID + 1234/5678 + + + Custom + Portfolio Manager Building ID + 62 + + + Custom + Audit Template Building ID + 23858 + + + + + + 123 Example Street + + + San Francisco + CA + 94104 + + + CAMX + + Office + Property management company + false + 4 + 1 + true + true + + + Cooled only + 40000.0 + + + Gross + 200000.0 + + + Heated and Cooled + 100000.0 + + + Heated only + 60000.0 + + + 25000.0 + 15000.0 + 12000.0 + 0.30000001192092896 + 1950 + 2015 + 2010 + 20.0 + 80.0 + + + Whole building + L-Shape + + + + + + + + + + + + + + + Good + + + + + + + + + + + + + + + + + + + + + + + Space function + Office + + + Peak total occupants + 350 + + + + + 50.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 150000.0 + + + Conditioned + 150000.0 + + + Common + 15000.0 + + + Tenant + 135000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.5 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Packaged Rooftop Air Conditioner + + + Principal Lighting System Type + T8 + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + + 72 + 78 + + + + + Space function + Food service + + + Peak total occupants + 60 + + + + + 45.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 50000.0 + + + Conditioned + 50000.0 + + + Common + 5000.0 + + + Tenant + 45000.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load + 1.1 + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + true + + + Principal HVAC System Type + Packaged Terminal Air Conditioner + + + Principal Lighting System Type + LED + + + Quantity Of Dwellings Is Not Applicable + true + + + Section Notes For Not Applicable + + + + + + + + + 70 + 75 + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + true + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2016-01-01 + + + Multi Tenant Is Not Applicable + true + + + Number Of Facilities On Site Is Not Applicable + true + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + true + + + Onsite Generation System For Microturbine Is Not Applicable + true + + + Onsite Generation System For PV Is Not Applicable + true + + + Onsite Generation System For Reciprocating engine Is Not Applicable + true + + + Onsite Generation System For Turbine Is Not Applicable + true + + + Onsite Generation System For Wind Is Not Applicable + true + + + Onsite Generation System Is Not Applicable + true + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + true + + + Onsite Renewable System Is Not Applicable + true + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + true + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + true + + + Percentage Skylight Area + 4.0 + + + Premises Identifier For Atlanta Building ID Is Not Applicable + true + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + true + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + true + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 20000.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + true + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + true + + + Shared Heating + false + + + Shared Heating Is Not Applicable + true + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + true + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + true + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + true + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + true + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + true + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + true + + + Validate 100% Lighting Status Is Not Applicable + false + + + Year Of Last Energy Audit Is Not Applicable + false + + + Year Of Last Major Remodel Is Not Applicable + false + + + + + + + + + + + + + + Hot water + Unknown + Condensing + 200000.0 + kBtu/hr + 70.0 + Thermal Efficiency + 1 + + Average + Mechanical Room + 2010 + Fuel oil no 1 + true + + + + + + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Notes + See attachment for details + + + Heating Plant Notes Is Not Applicable + false + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Vapor compression + Electric Motor + Screw + + + + 2.5 + COP + 300000.0 + kBtu/hr + Other + 1 + + Poor + Mechanical Room + 1991 + Electricity + false + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Building Automation System Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Chilled Water Reset Control Is Not Applicable + false + + + Chiller Compressor Driver Is Not Applicable + false + + + Cooling Plant Condition Is Not Applicable + false + + + Cooling Plant Notes + needs replacing + + + Cooling Plant Notes Is Not Applicable + false + + + Condenser Plant ID Is Not Applicable + false + + + Condenser Type + Water Cooled + + + Condenser Type Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Location Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Cooling tower + Fixed Flow + Single Speed + + + + Cooling Tower Fan Control Is Not Applicable + false + + + Water Cooled Condenser Flow Control Is Not Applicable + false + + + + + + + + + + + + + + Multi zone + + + + + + kBtu/hr + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + false + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + Central fan + VAV terminal box not fan powered with reheat + Heating plant + + + + + + + + + + + + Dry bulb temperature + + false + true + + + + + + + + + + + + + Energy recovery ventilator + true + + + + + + + + + + Digital + Pneumatic + + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Central Distribution Type + Forced Air + + + Demand Control Ventilation Is Not Applicable + false + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction + 0.3 + + + Minimum Air Flow Fraction Is Not Applicable + false + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + false + + + Supply Air Temperature Reset Control Is Not Applicable + false + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + false + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + false + + + + + + Single zone + + + + + + 65.0 + Thermal Efficiency + 1000.0 + kBtu/hr + Natural gas + Good + + + + Manual + + + + Interior + 2015 + + + Annual Heating Efficiency Units Is Not Applicable + false + + + Annual Heating Efficiency Value Is Not Applicable + false + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + false + + + Heating Source Notes + PTAC + + + Heating Source Notes Is Not Applicable + false + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Source Heating Plant ID Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + 10 + + + + + + + + 3.0 + COP + 1000.0 + kBtu/hr + Electricity + Good + + + + Manual + + + + Interior + 2000 + + + Annual Cooling Efficiency Units Is Not Applicable + false + + + Annual Cooling Efficiency Value Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Cooling Plant ID Is Not Applicable + true + + + Cooling Source Condition Is Not Applicable + false + + + Cooling Source Notes + PTAC + + + Cooling Source Notes Is Not Applicable + false + + + Location Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + 10 + + + + + + + Local fan + + + + + + + + + + false + false + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Central Distribution Type + None (unitized heating/cooling) + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + true + + + Exhaust Ventilation For Kitchen + false + + + Exhaust Ventilation For Kitchen Is Not Applicable + true + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + true + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + false + + + Exhaust Ventilation For Restroom Is Not Applicable + true + + + Minimum Air Flow Fraction Is Not Applicable + true + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + false + + + Supply Ventilation For Common area Is Not Applicable + true + + + Supply Ventilation For Corridor + false + + + Supply Ventilation For Corridor Is Not Applicable + true + + + Supply Ventilation For Other + false + + + Supply Ventilation For Other Is Not Applicable + true + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + true + + + Ventilation System > 5 hp + false + + + Ventilation Type Is Not Applicable + true + + + + + + + + + T8 + Unknown + + + Premium Electronic + Recessed + 40 + 4 + false + + + + Advanced + + + + + EMCS + + + + + Manual On/Off + + + + + Occupancy Sensors + + + + + Chronological + + + + + + + + + + + + Common + 100.0 + + + Tenant + 100.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45003000 + + + + Common Areas Lighting Power Density For Section-45003000 + + + + Tenant Areas Lighting Power Density For Section-45003000 + + + + Quantity Of Luminaires For Section-45003000 + + + + Common Areas Quantity Of Luminaires For Section-45003000 + 250 + + + Tenant Areas Quantity Of Luminaires For Section-45003000 + 1500 + + + + + + + LED + + + Electromagnetic + Suspended + 15 + 1 + false + + + + Advanced + + + + + EMCS + + + + + Occupancy Sensors + + + + + Other + + + + + Photocell + + + + + Chronological + + + + + + + + + + + + Common + 60000.0 + + + Gross + 0.0 + + + Tenant + 50000.0 + + + + + + + + Lighting System Name + Fixture 2 + + + LED Application Type + A Lamp + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45003020 + + + + Common Areas Lighting Power Density For Section-45003020 + + + + Tenant Areas Lighting Power Density For Section-45003020 + + + + Quantity Of Luminaires For Section-45003020 + + + + Common Areas Quantity Of Luminaires For Section-45003020 + 120 + + + Tenant Areas Quantity Of Luminaires For Section-45003020 + 360 + + + + + + + + + + + Direct + + + + + AFUE + 65.0 + 2010 + Natural gas + Mechanical Room + + + + + + + + + Common + 100 + + + Tenant + 100 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + false + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + false + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + true + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + false + + + Water Heater Efficiency Type Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + Constant Volume + + + + + + Pump Control Type Is Not Applicable + false + + + + + + + 60.0 + Variable Volume + + + + + + Constant Volume + + + + + + + + 60.0 + + + + + + + + Wood frame + Other + + + 15.0 + + + + + + + Built up + true + true + true + + + 15.0 + + + Concrete + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Plastic + 1.0 + 0.4 + 0.4 + + + + + + Vinyl + true + Average + Low e + Air + Triple pane + 0.9 + 0.3 + 0.3 + + + Year Installed Is Not Applicable + false + + + + + + + 19.0 + Wood + + + + + + + + 12.0 + + + + + + Foundation Wall R Value Is Not Applicable + false + + + Linked Wall ID + WallSystemType-45003720 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + true + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + Miscellaneous Gas Load + 0.5 + + + + + + + + Miscellaneous Gas Load + 0.4 + + + + + + + + + + Elevator + 3 + 2006 + + + + + + + + + + + Elevator Type + Hydraulic + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + true + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + Very Leaky + + + + + + + + + + + + + Weekday + 06:00:00 + 18:00:00 + + + + + + + Saturday + 07:00:00 + 23:00:00 + + + Weekday + 22:00:00 + 22:00:00 + + + + + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + Measure Identifier 150801 + Install high eff boiler + + 10000.0 + + 20 + 300000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + true + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Common areas + Measure Identifier 150802 + Replace T8 with LED + + 500.0 + + 15 + 2500.0 + Proposed + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + true + + + Equipment Is Not Applicable + false + + + + + + + + + benchmark + + Current + + + + + + 2015 + + + + + All end uses + Site + 89.0 + 75.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + true + + + Benchmark Year Is Not Applicable + false + + + San Francisco Affidavit Benchmark Affirmation + affirm the historical energy use data in ENERGY STAR Portfolio + Manager is complete for the calendar year prior to the audit and consistent with + my observations. Gross floor area herein is accurate within +/-3%, and is + consistent with Portfolio Manager. + + + San Francisco Affidavit Benchmark Signature + A. Example Auditor + + + San Francisco Affidavit Benchmark Not Verified Reason + + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + true + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + true + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 80.0 + 70.0 + + + + + + + + + + Audit Template Energy Deliveries - Fuel oil no 1 + Current + + + + + + Fuel oil no 1 + Site + Gallons + Not shared + + + + + Point + Energy + 2016-09-01T00:00:00+00:00 + 2016-09-02T00:00:00+00:00 + Day + 500.0 + + + + + + All end uses + Site + 2500.0 + 5.10825 + + + Linked Time Series ID + TimeSeriesType-45004080 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Deliveries + + + + + Audit Template Energy Meter Readings - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Peak + Voltage + 2016-01-01T00:00:00+00:00 + 2016-02-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-02-01T00:00:00+00:00 + 2016-03-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-03-01T00:00:00+00:00 + 2016-04-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-04-01T00:00:00+00:00 + 2016-05-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-05-01T00:00:00+00:00 + 2016-06-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-06-01T00:00:00+00:00 + 2016-07-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-07-01T00:00:00+00:00 + 2016-08-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-08-01T00:00:00+00:00 + 2016-09-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-09-01T00:00:00+00:00 + 2016-10-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-10-01T00:00:00+00:00 + 2016-11-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-11-01T00:00:00+00:00 + 2016-12-01T00:00:00+00:00 + Other + 0.0 + + + + Peak + Voltage + 2016-12-01T00:00:00+00:00 + 2017-01-01T00:00:00+00:00 + Other + 0.0 + + + + + + All end uses + Site + 366.35406494140625 + 0.0 + 0.08290877541011978 + + + Linked Time Series ID + TimeSeriesType-45004180 + + + + + All end uses + Site + 381.0082092285156 + 0.0 + 0.08622512228270535 + + + Linked Time Series ID + TimeSeriesType-45004220 + + + + + All end uses + Site + 322.3915710449219 + 0.0 + 0.07295972097963233 + + + Linked Time Series ID + TimeSeriesType-45004260 + + + + + All end uses + Site + 263.77490234375 + 0.0 + 0.05969431277019393 + + + Linked Time Series ID + TimeSeriesType-45004300 + + + + + All end uses + Site + 249.12075805664062 + 0.0 + 0.05637796589760837 + + + Linked Time Series ID + TimeSeriesType-45004340 + + + + + All end uses + Site + 205.15826416015625 + 0.0 + 0.04642891146712092 + + + Linked Time Series ID + TimeSeriesType-45004380 + + + + + All end uses + Site + 212.4853515625 + 0.0 + 0.04808708835659639 + + + Linked Time Series ID + TimeSeriesType-45004420 + + + + + All end uses + Site + 225.67410278320312 + 0.0 + 0.05107180537637917 + + + Linked Time Series ID + TimeSeriesType-45004460 + + + + + All end uses + Site + 175.84994506835938 + 0.0 + 0.03979621081558442 + + + Linked Time Series ID + TimeSeriesType-45004500 + + + + + All end uses + Site + 199.29660034179688 + 0.0 + 0.04510237133681362 + + + Linked Time Series ID + TimeSeriesType-45004540 + + + + + All end uses + Site + 271.10198974609375 + 0.0 + 0.0613524896596694 + + + Linked Time Series ID + TimeSeriesType-45004580 + + + + + All end uses + Site + 293.083251953125 + 0.0 + 0.06632702032809581 + + + Linked Time Series ID + TimeSeriesType-45004620 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Meter Readings + + + + + Audit Template Energy Supply Sources + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Supply Sources + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Cooling + 2000.0 + + + Net + CO2e + 0.452615561524505 + + + + + Fuel oil no 1 + Site + Gallons + Not shared + Heating + 480.0 + + + Net + CO2e + 4.90392 + + + + + Electricity + Site + kWh + Not shared + Total lighting + 1000.0 + + + Net + CO2e + 0.2263077807622525 + + + + + Electricity + Site + kWh + Not shared + All end uses + 3000.0 + + + Net + CO2e + 0.6789233422867574 + + + + + Fuel oil no 1 + Site + Gallons + Not shared + All end uses + 480.0 + + + Net + CO2e + 4.90392 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Fuel oil no 1 + Site + Gallons + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + HVAC Upgrade + Current + + + + + + 20000 + + + Electricity + kWh + 15000.0 + + + Fuel oil no 1 + Gallons + 400.0 + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 1500.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Potential Capital Recommendations + + + + + Lighting retrofit + Current + + + + + + 4000 + + + Electricity + kWh + 9000.0 + + + Fuel oil no 1 + Gallons + 300.0 + + + Fuel oil no 2 + Gallons + + + Fuel oil + Gallons + + + Fuel oil no 4 + Gallons + + + Fuel oil no 5 (light) + Gallons + + + Fuel oil no 5 (heavy) + Gallons + + + Fuel oil no 6 + Gallons + + + Diesel + Gallons + + + Gasoline + Gallons + + + Kerosene + Gallons + + + Liquid propane + Gallons + + + Propane + kcf + + + Dual fuel + kBtu + + + Other + kBtu + + + Thermal-Onsite generated + kBtu + + + Electricity-Onsite generated + kWh + + + Thermal-Exported + kBtu + + + Electricity-Exported + kWh + + + Other delivered-Onsite generated + kBtu + + + Other delivered-Exported + kBtu + + + Other metered-Exported + kBtu + + + Other metered-Onsite generated + kBtu + + + Biofuel B5 + Gallons + + + Biofuel B10 + Gallons + + + Biofuel B20 + Gallons + + + 800.0 + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2019-06-01 + Custom + Level 1: Walk-through + + + 2019-07-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + Level 2: Energy Survey and Analysis + false + + + Association of Energy Engineers Certified Energy Auditor (CEA) + 123456 + CA + 2030-10-01 + + + + + + + + monthly + + + Direct metering + 123456 + + + + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + false + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + San Francisco Report + + + Auditor Years Of Experience + 3 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + San Francisco Affidavit Whole Audit Signature + A. Example Auditor + + + + + + + + Energy Auditor + + A. Example Auditor + Auditor Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.auditor@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45003780 + Energy Auditor + + + Contact Role For Qualification-45003820 + Energy Auditor + + + Contributor Contact ID For Qualification-45003820 + ContactType-45003800 + + + Contributor Contact Role For Qualification-45003820 + Energy Auditor + + + Other Qualification Type For Qualification-45003820 + + + + + + + Owner + + A. Example Building Owner + Building Owner Company Example + + + + 123 Example Street + + + New York + NY + 10118 + + + + 111-111-1111 + + + + + a.example.owner@aol.com + + + + + City Is Not Applicable + false + + + Contact Company Is Not Applicable + false + + + Contact Email Address Is Not Applicable + false + + + Contact Name Is Not Applicable + false + + + Contact Telephone Number Is Not Applicable + false + + + Postal Code Is Not Applicable + false + + + State Is Not Applicable + false + + + Street Address Is Not Applicable + false + + + Title Is Not Applicable + false + + + Contact Role For ReportType-45003780 + Owner + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Golden Test File.xml b/spec/files/v2.7.0/Golden Test File.xml new file mode 100644 index 0000000..317040a --- /dev/null +++ b/spec/files/v2.7.0/Golden Test File.xml @@ -0,0 +1,251 @@ + + + + + + + + NREL Campus +
+ + + 15013 Denver West Parkway + + + Golden + CO + 80401 +
+ + + RSF + Office + + + Adults + 1325 + + + Owned + + + Conditioned + 360000 + + + 2011 + +
+ Whole building + + + + 10000 + + + + + 10000 + + + +
+
+ + + Note + This is a note on the RSF + + +
+ + ESIF + Laboratory-Testing + + + Adults + 200 + + + Owned + 3 + 1 + + + Gross + 185000 + + + 2013 + +
+ Wholebuilding2 + Whole building +
+
+
+
+ + + Note + This is a note on the site + + +
+
+ + + + + + + + Hot water + Mechanical forced + + + + + + + + + + + Hot water + Fuel oil no 5 and no 6 + + + + + + + + + + + + + + + Vapor compression + + + + + + + + + + + + + + + + + + + + + Chilled water + Fuel oil no 2 + + + + + + + + + + + + + + Built up + 38 + + + Concrete solid + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Remove all the PV from the RSF + + + + + + + + + + Remove all the PV from campus + + + + + + + + + + + +
+
+
diff --git a/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_01.xml b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_01.xml new file mode 100644 index 0000000..622b1b6 --- /dev/null +++ b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_01.xml @@ -0,0 +1,52 @@ + + + + + + + + + Willis Tower + + Chicago + IL + + Commercial + Office + + + Gross + 4477800.0 + + + 1973 + + + + + + + + + Baseline + + + + + Not Started + + + + + + + + + + + + + + + + diff --git a/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_02.xml b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_02.xml new file mode 100644 index 0000000..d7ea968 --- /dev/null +++ b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_02.xml @@ -0,0 +1,63 @@ + + + + + + + + + Office Carolina + + + + 6A + + + Commercial + Office + + + Gross + 31053 + + + 1915 + + + + + + + + + Baseline + + + + + + Not Started + + + + + + + + + + + + + + + + + diff --git a/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_03.xml b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_03.xml new file mode 100644 index 0000000..4aacc47 --- /dev/null +++ b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_03.xml @@ -0,0 +1,54 @@ + + + + + + + + + Premises 0 + + + 1A + + + Commercial + Retail + + + Gross + 10000 + + + 1975 + + + + + + + + + + Baseline + + + + + Not Started + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_04.xml b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_04.xml new file mode 100644 index 0000000..5793184 --- /dev/null +++ b/spec/files/v2.7.0/L000_OpenStudio_Pre-Simulation_04.xml @@ -0,0 +1,53 @@ + + + + + + + + + Office Carolina + + + 6A + + + Commercial + Office + + + Gross + 31053 + + + 1915 + + + + + + + + + Baseline + + + + + Not Started + + + + + + + + + + + + + + + + diff --git a/spec/files/v2.7.0/L100_Audit-1.0.0.xml b/spec/files/v2.7.0/L100_Audit-1.0.0.xml new file mode 100644 index 0000000..6e55fbd --- /dev/null +++ b/spec/files/v2.7.0/L100_Audit-1.0.0.xml @@ -0,0 +1,1229 @@ + + + + + + + + + + + + Building Name + + + Problems or Needs + ----------------- + Problems or needs identified in walkthrough survey, + including revisions to operations and maintenance procedures + + Comfort or Health Concerns + ----------------- + Comfort or health concerns, including indoor environmental quality (IEQ) deficiencies + + Need for Repairs + ----------------- + Need for repairs + + Opportunities to Improve Maintenance Practices + ----------------- + Opportunities to improve maintenance practices + + Other Conditions Causing Unusual Operating Costs + ----------------- + Other conditions causing unusual operating costs + + + + + + + 123 Main Street + + + + Rome + GA + 30161 + + + Mixed use commercial + Office + + + + + Apartment units + 1 + 100 + + + + + 2 + 2 + 1 + 1 + + true + + + + Gross + 5502 + + + Conditioned + 5502 + + + + 1993 + + 2018 + + 2016 + + + + Space function + Office + Office + + + + + Peak total occupants + 123 + + + + + + 40 + Hours per week + + + + 30 + Weeks per year + + + + + + Gross + 123 + + + Conditioned + 23 + + + + + + + + + + + + + Packaged Terminal Air Conditioner + + + + + + + + + + + + + + + 2D + + + + + + + + + + + + + 123 + + + + + + + + + + + + + Air Distribution + + + + Other + + + + + Low Cost Measure Name + + This measure does something cheap + + + + + Air Distribution + + + + Install advanced metering systems + + + + + Capital Measure + + This measure does something expensive + + + + + + + + + + + + + + + + + + Electricity + + Sampling Methodology + ------------------- + Notes on meter sampling methods (if sampling was used) + + Irregularities + -------------- + Notes on any irregularities in meter readings + + kWh + All end uses + 52943.01 + 180.65 + + + + + + + + + + + + + + + kW + 19.07 + 5029.59 + + + + + + Natural gas + + Sampling Methodology + ------------------- + Notes on meter sampling methods (if sampling was used) + + Irregularities + -------------- + Notes on any irregularities in meter readings + + MMBtu + All end uses + 0.22 + 0.22 + + + + + + + + + + + + + + + 324 + + + + + + Electricity-Onsite generated + + Sampling Methodology + ------------------- + Notes on meter sampling methods (if sampling was used) + + Irregularities + -------------- + Notes on any irregularities in meter readings + + kWh + All end uses + 5929 + 20.21 + + + + + + + + + + + + + + + 543 + + + + + + + + + + + Total + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 4102.51 + + + + Total + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 3737.04 + + + + Total + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 4167.07 + + + + Total + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 3897.44 + + + + Total + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 4565.50 + + + + Total + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 4870.87 + + + + Total + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 4977.64 + + + + Total + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 5275.05 + + + + Total + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 4788.79 + + + + Total + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 4353.99 + + + + Total + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 4154.67 + + + + Total + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 4052.43 + + + + + Peak + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 14.78 + + + + Peak + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 14.12 + + + + Peak + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 14.36 + + + + Peak + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 15.14 + + + + Peak + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 16.41 + + + + Peak + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 17.51 + + + + Peak + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 18.14 + + + + Peak + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 19.07 + + + + Peak + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 17.85 + + + + Peak + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 16.54 + + + + Peak + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 15.19 + + + + Peak + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 15.05 + + + + + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 389.74 + + + + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 355.02 + + + + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 395.87 + + + + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 370.26 + + + + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 433.72 + + + + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 462.73 + + + + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 472.88 + + + + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 501.13 + + + + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 454.94 + + + + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 413.63 + + + + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 394.69 + + + + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 384.98 + + + + + Total + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 0.1 + + + + Total + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 0.05 + + + + Total + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 0.01 + + + + Total + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 0 + + + + Total + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 0 + + + + Total + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 0 + + + + Total + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 0 + + + + Total + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 0 + + + + Total + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 0 + + + + Total + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 0 + + + + Total + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 0 + + + + Total + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 0.06 + + + + + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 27 + + + + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 27 + + + + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 27 + + + + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 27 + + + + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 27 + + + + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 27 + + + + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 27 + + + + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 27 + + + + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 27 + + + + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 27 + + + + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 27 + + + + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 27 + + + + + + Total + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 385 + + + + Total + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 436 + + + + Total + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 560 + + + + Total + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 532 + + + + Total + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 568 + + + + Total + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 590 + + + + Total + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 573 + + + + Total + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 543 + + + + Total + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 514 + + + + Total + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 461 + + + + Total + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 408 + + + + Total + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 359 + + + + + + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 35 + + + + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 40 + + + + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 51 + + + + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 49 + + + + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 52 + + + + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 54 + + + + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 53 + + + + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 50 + + + + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 47 + + + + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 42 + + + + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 37 + + + + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 33 + + + + + + + 170870 + 31.06 + 191080 + 34.73 + 180.87 + 20.21 + 0 + 10 + 5896.59 + 1.07 + + + + + + + + + 123 + 123 + + + + + 123 + 123 + 123 + 123 + + + + + + + + + + + + Portfolio Manager + 2020 + 75 + + + + + 123 + 123 + + + + + + + + + + + + + Low-Cost or No-Cost + + Notes on impact on occupant comfort go here + Low + Medium + High + Low + + + + + + + + + + + + + + + + --01-01 + --12-01 + --01-01 + --12-01 + 123 + 123 + + + + + + + + 12345 + + + + + + + + + + --01-01 + --12-01 + + + 00:00:00 + 12:00:00 + 123 + + + 12:00:00 + 24:00:00 + 123 + + + + + + + + + + 12345 + + + + + + + + + + + --01-01 + --12-01 + --01-01 + --12-01 + + + 123 + 123 + + + 123 + 123 + + + + + + + + + + + 12345 + + + + + + + + + + Owner + + Building Owner + Owner Company + + + + + 123-456-7890 + + + + + + owner@example.com + + + + + + + Energy Auditor + + Building Auditor + Auditor Company + + + + + 123-456-7890 + + + + + + auditor@example.com + + + + + + + diff --git a/spec/files/v2.7.0/L100_Audit-1.0.0_and_BSyncr-1.0.0.xml b/spec/files/v2.7.0/L100_Audit-1.0.0_and_BSyncr-1.0.0.xml new file mode 100644 index 0000000..a1625c9 --- /dev/null +++ b/spec/files/v2.7.0/L100_Audit-1.0.0_and_BSyncr-1.0.0.xml @@ -0,0 +1,1231 @@ + + + + + + + + + + + + Building Name + + + Problems or Needs + ----------------- + Problems or needs identified in walkthrough survey, + including revisions to operations and maintenance procedures + + Comfort or Health Concerns + ----------------- + Comfort or health concerns, including indoor environmental quality (IEQ) deficiencies + + Need for Repairs + ----------------- + Need for repairs + + Opportunities to Improve Maintenance Practices + ----------------- + Opportunities to improve maintenance practices + + Other Conditions Causing Unusual Operating Costs + ----------------- + Other conditions causing unusual operating costs + + + + + + + 123 Main Street + + + + Rome + GA + 30161 + + 12.4964 + 41.9028 + + Mixed use commercial + Office + + + + + Apartment units + 1 + 100 + + + + + 2 + 2 + 1 + 1 + + true + + + + Gross + 5502 + + + Conditioned + 5502 + + + + 1993 + + 2018 + + 2016 + + + + Space function + Office + Office + + + + + Peak total occupants + 123 + + + + + + 40 + Hours per week + + + + 30 + Weeks per year + + + + + + Gross + 123 + + + Conditioned + 23 + + + + + + + + + + + + + Packaged Terminal Air Conditioner + + + + + + + + + + + + + + + 2D + + + + + + + + + + + + + 123 + + + + + + + + + + + + + Air Distribution + + + + Other + + + + + Low Cost Measure Name + + This measure does something cheap + + + + + Air Distribution + + + + Install advanced metering systems + + + + + Capital Measure + + This measure does something expensive + + + + + + + + + + + + + + + + + + Electricity + + Sampling Methodology + ------------------- + Notes on meter sampling methods (if sampling was used) + + Irregularities + -------------- + Notes on any irregularities in meter readings + + kWh + All end uses + 52943.01 + 180.65 + + + + + + + + + + + + + + + kW + 19.07 + 5029.59 + + + + + + Natural gas + + Sampling Methodology + ------------------- + Notes on meter sampling methods (if sampling was used) + + Irregularities + -------------- + Notes on any irregularities in meter readings + + MMBtu + All end uses + 0.22 + 0.22 + + + + + + + + + + + + + + + 324 + + + + + + Electricity-Onsite generated + + Sampling Methodology + ------------------- + Notes on meter sampling methods (if sampling was used) + + Irregularities + -------------- + Notes on any irregularities in meter readings + + kWh + All end uses + 5929 + 20.21 + + + + + + + + + + + + + + + 543 + + + + + + + + + + + Total + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 4102.51 + + + + Total + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 3737.04 + + + + Total + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 4167.07 + + + + Total + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 3897.44 + + + + Total + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 4565.50 + + + + Total + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 4870.87 + + + + Total + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 4977.64 + + + + Total + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 5275.05 + + + + Total + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 4788.79 + + + + Total + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 4353.99 + + + + Total + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 4154.67 + + + + Total + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 4052.43 + + + + + Peak + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 14.78 + + + + Peak + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 14.12 + + + + Peak + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 14.36 + + + + Peak + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 15.14 + + + + Peak + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 16.41 + + + + Peak + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 17.51 + + + + Peak + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 18.14 + + + + Peak + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 19.07 + + + + Peak + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 17.85 + + + + Peak + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 16.54 + + + + Peak + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 15.19 + + + + Peak + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 15.05 + + + + + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 389.74 + + + + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 355.02 + + + + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 395.87 + + + + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 370.26 + + + + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 433.72 + + + + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 462.73 + + + + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 472.88 + + + + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 501.13 + + + + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 454.94 + + + + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 413.63 + + + + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 394.69 + + + + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 384.98 + + + + + Total + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 0.1 + + + + Total + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 0.05 + + + + Total + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 0.01 + + + + Total + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 0 + + + + Total + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 0 + + + + Total + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 0 + + + + Total + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 0 + + + + Total + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 0 + + + + Total + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 0 + + + + Total + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 0 + + + + Total + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 0 + + + + Total + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 0.06 + + + + + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 27 + + + + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 27 + + + + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 27 + + + + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 27 + + + + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 27 + + + + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 27 + + + + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 27 + + + + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 27 + + + + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 27 + + + + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 27 + + + + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 27 + + + + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 27 + + + + + + Total + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 385 + + + + Total + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 436 + + + + Total + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 560 + + + + Total + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 532 + + + + Total + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 568 + + + + Total + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 590 + + + + Total + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 573 + + + + Total + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 543 + + + + Total + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 514 + + + + Total + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 461 + + + + Total + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 408 + + + + Total + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 359 + + + + + + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 35 + + + + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 40 + + + + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 51 + + + + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 49 + + + + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 52 + + + + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 54 + + + + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 53 + + + + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 50 + + + + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 47 + + + + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 42 + + + + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 37 + + + + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 33 + + + + + + + 170870 + 31.06 + 191080 + 34.73 + 180.87 + 20.21 + 0 + 10 + 5896.59 + 1.07 + + + + + + + + + 123 + 123 + + + + + 123 + 123 + 123 + 123 + + + + + + + + + + + + Portfolio Manager + 2020 + 75 + + + + + 123 + 123 + + + + + + + + + + + + + Low-Cost or No-Cost + + Notes on impact on occupant comfort go here + Low + Medium + High + Low + + + + + + + + + + + + + + + + --01-01 + --12-01 + --01-01 + --12-01 + 123 + 123 + + + + + + + + 12345 + + + + + + + + + + --01-01 + --12-01 + + + 00:00:00 + 12:00:00 + 123 + + + 12:00:00 + 24:00:00 + 123 + + + + + + + + + + 12345 + + + + + + + + + + + --01-01 + --12-01 + --01-01 + --12-01 + + + 123 + 123 + + + 123 + 123 + + + + + + + + + + + 12345 + + + + + + + + + + Owner + + Building Owner + Owner Company + + + + + 123-456-7890 + + + + + + owner@example.com + + + + + + + Energy Auditor + + Building Auditor + Auditor Company + + + + + 123-456-7890 + + + + + + auditor@example.com + + + + + + + diff --git a/spec/files/v2.7.0/L100_Pre-Simulation-1.0.0.xml b/spec/files/v2.7.0/L100_Pre-Simulation-1.0.0.xml new file mode 100644 index 0000000..990fd00 --- /dev/null +++ b/spec/files/v2.7.0/L100_Pre-Simulation-1.0.0.xml @@ -0,0 +1,292 @@ + + + + + + + + + + L100_Instance1 + + + + + 233 S Wacker Dr + + + Chicago + IL + 60606 + + Mixed use commercial + Retail + 2 + 0 + 2 + 0 + + + + Cooled only + 0.0 + + + Gross + 49390 + + + Heated and Cooled + 49261 + + + Heated only + 129 + + + 2016 + + + + Space function + Retail + + + + Peak total occupants + 371 + + + + + + 91.0 + Hours per week + + + 52.0 + Weeks per year + + + + + Gross + 24695.0 + + + Conditioned + 24695.0 + + + + + Space function + Office + + + Peak total occupants + 123 + + + + + 86 + Hours per week + + + 52 + Weeks per year + + + + + Gross + 24695 + + + Conditioned + 24695 + + + + + + + + + + + + + Packaged Rooftop Air Conditioner + + + + + + + + Packaged Rooftop VAV with Electric Reheat + + + + + + + + + + + + + 2D + + + + + + + + + + + + LED + + + + + + + + + + + + + Miscellaneous Electric Load + 0.5 + + + + + + + + Miscellaneous Electric Load + 0.75 + + + + + + + + + + + + Lighting + + + + + Retrofit with light emitting diode technologies + + + + + + + + + + Baseline + + + + + + Not Started + + + + + + + + + + + + + + + + + + + + + + Not Started + + + + + + + + + + + + + + + + + diff --git a/spec/files/v2.7.0/NYC_BBL_AT_Demo_Property.xml b/spec/files/v2.7.0/NYC_BBL_AT_Demo_Property.xml new file mode 100644 index 0000000..b404821 --- /dev/null +++ b/spec/files/v2.7.0/NYC_BBL_AT_Demo_Property.xml @@ -0,0 +1,2903 @@ + + + + + + + + + + Custom + Borough + Manhattan + + + Custom + Tax Block + 01013 + + + Custom + Tax Lot + 0120 + + + NYC BBL AT Demo Property + + New York + NY + + + + NYC BBL Example Building 1 + Example NYC Building 1 for demonstration purposes only. + + + Custom + BIN + 1111111 + + + Custom + EER + A + + + Custom + Audit Template Building ID + 46818 + + + + + + 123 Example Street + + + Brooklyn + NY + 11203 + + + NYCW + + Education-Primary + false + 8 + 0 + false + false + + + Cooled only + 0.0 + + + Gross + 400000.0 + + + Heated and Cooled + 100.0 + + + Heated only + 0.0 + + + 120000.0 + 0.11999999731779099 + 2021 + 100.0 + 0.0 + 1 + + + Whole building + T-Shape + + + + + + + + + + + + + + + Excellent + + + + + + + + + + + + + + + + + + + + + Space function + Education-Primary + Education-Primary + + + Gross + 400000.0 + + + Conditioned + 400000.0 + + + Common + 400000.0 + + + Tenant + 0.0 + + + + + Floor Area For Gross Is Not Applicable + false + + + Miscellaneous Electric Load Is Not Applicable + false + + + Occupancy Classification Is Not Applicable + false + + + Percentage Dwellings Occupied Is Not Applicable + false + + + Principal HVAC System Type + Packaged Rooftop Air Conditioner + + + Principal Lighting System Type + Super T8 + + + Quantity Of Dwellings Is Not Applicable + false + + + Section Notes For Not Applicable + + + + + + + + Alternative Roof Surface Construction Method + false + + + Alternative Roof Surface Construction Method Is Not Applicable + true + + + Calculate Annual Energy Use Summary + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Commercial Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Conditioned Floors Above Grade Is Not Applicable + false + + + Conditioned Floors Below Grade Is Not Applicable + false + + + Floor Area For Cooled only Is Not Applicable + false + + + Floor Area For Gross Is Not Applicable + false + + + Floor Area For Heated only Is Not Applicable + false + + + Floor Area For Heated and Cooled Is Not Applicable + false + + + Metering Year Start Dates + 2018-01-01 + + + Multi Tenant Is Not Applicable + false + + + Number Of Facilities On Site Is Not Applicable + false + + + Onsite Generation System + true + + + Onsite Generation System For Fuel cell Is Not Applicable + false + + + Onsite Generation System For Microturbine Is Not Applicable + false + + + Onsite Generation System For PV Is Not Applicable + false + + + Onsite Generation System For Reciprocating engine Is Not Applicable + false + + + Onsite Generation System For Turbine Is Not Applicable + false + + + Onsite Generation System For Wind Is Not Applicable + false + + + Onsite Generation System Is Not Applicable + false + + + Onsite Renewable Peak Generating Capacity Is Not Applicable + true + + + Onsite Renewable System + true + + + Onsite Renewable System For Solar Is Not Applicable + false + + + Onsite Renewable System Is Not Applicable + false + + + Other Energy Generation Technology + + + + Other Energy Generation Technology Is Not Applicable + false + + + Percentage Onsite Generation Peak Generating Capacity Is Not + Applicable + false + + + Percentage Skylight Area + 10.0 + + + Premises Identifier For Atlanta Building ID Is Not Applicable + false + + + Premises Identifier For City Custom Building ID Is Not Applicable + false + + + Premises Identifier For Portfolio Manager Building ID Is Not + Applicable + false + + + Premises Notes For Not Applicable + + + + Premises Notes For Shared Metering Not Applicable + + + + Premises Notes For Space functions For Not Applicable + + + + Premises Notes For Tenant Metering Configuration For Not Applicable + + + + Premises Notes Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering + false + + + Residential Tenant Metering Configuration For Electricity Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Electricity Is Master + meter without sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Direct + metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter with sub metering Is Not Applicable + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering + false + + + Residential Tenant Metering Configuration For Natural gas Is Master + meter without sub metering Is Not Applicable + false + + + Retrocommissioning Date Is Not Applicable + true + + + Roof Area + 75000.0 + + + Shared Chilled water + false + + + Shared Chilled water Is Not Applicable + false + + + Shared Fuel oil + false + + + Shared Fuel oil Is Not Applicable + false + + + Shared Heating + false + + + Shared Heating Is Not Applicable + false + + + Shared Meter For District steam + false + + + Shared Meter For District steam Is Not Applicable + false + + + Shared Meter For Electricity + false + + + Shared Meter For Electricity Is Not Applicable + false + + + Shared Meters For Multiple buildings on a single lot + false + + + Shared Meters For Multiple buildings on a single lot Is Not + Applicable + false + + + Shared Meters For Multiple buildings on multiple lots + false + + + Shared Meters For Multiple buildings on multiple lots Is Not + Applicable + false + + + Shared Meter For Natural gas + false + + + Shared Meter For Natural gas Is Not Applicable + false + + + Spaces Excluded From Gross Floor Area + + + + Spaces Excluded From Gross Floor Area Is Not Applicable + false + + + Terrace R Value Is Not Applicable + true + + + Validate 100% Lighting Status + true + + + Validate 100% Lighting Status Is Not Applicable + false + + + Year Of Last Energy Audit Is Not Applicable + true + + + Year Of Last Major Remodel Is Not Applicable + true + + + + + + + + + + + + + + Steam + High Low + 2 + 2000 + Mechanical forced + 9096.0 + kBtu/hr + 2 + + Average + Mechanical Room + 2000 + Dual fuel + true + + + + + + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Building Automation System Is Not Applicable + false + + + Burner Control Type Is Not Applicable + false + + + Burner Quantity Is Not Applicable + false + + + Burner Year Installed Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Draft Type Is Not Applicable + false + + + Heating Plant Condition Is Not Applicable + false + + + Heating Plant Name + Heating Plant 1 + + + Heating Plant Notes + + + + Heating Plant Notes Is Not Applicable + true + + + Input Capacity Is Not Applicable + true + + + Location Is Not Applicable + false + + + Output Capacity Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Vapor compression + Electric Motor + 9600.0 + kBtu/hr + None + 2 + + Mechanical Room + 2000 + Electricity + true + + + + + + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Building Automation System Is Not Applicable + false + + + Capacity Is Not Applicable + false + + + Chilled Water Reset Control Is Not Applicable + false + + + Chiller Compressor Driver Is Not Applicable + false + + + Cooling Plant Condition Is Not Applicable + false + + + Cooling Plant Name + Cooling Plant 1 + + + Cooling Plant Notes + + + + Cooling Plant Notes Is Not Applicable + true + + + Condenser Plant ID Is Not Applicable + false + + + Condenser Type + Water Cooled + + + Condenser Type Is Not Applicable + false + + + Control System Type For Digital Is Not Applicable + false + + + Control System Type For Pneumatic Is Not Applicable + false + + + Location Is Not Applicable + false + + + Quantity Is Not Applicable + false + + + Year Installed Is Not Applicable + false + + + + + + + + Cooling tower + + + + Condenser Plant Name + Condenser Plant 1 + + + Cooling Tower Fan Control Is Not Applicable + false + + + Water Cooled Condenser Flow Control Is Not Applicable + false + + + + + + + + + + + + + + Multi zone + + + + + + kBtu/hr + + + + Manual + + + + + + Annual Heating Efficiency Units Is Not Applicable + true + + + Annual Heating Efficiency Value Is Not Applicable + true + + + Burner Control Type Is Not Applicable + true + + + Burner Quantity Is Not Applicable + true + + + Burner Year Installed Is Not Applicable + true + + + Draft Type Is Not Applicable + true + + + Heat Pump Sink Source Type Is Not Applicable + true + + + Heating Source Condition Is Not Applicable + true + + + Heating Source Notes + + + + Heating Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Output Capacity Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Source Heating Plant ID Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + kBtu/hr + + + + Manual + + + + + + Annual Cooling Efficiency Units Is Not Applicable + true + + + Annual Cooling Efficiency Value Is Not Applicable + true + + + Capacity Is Not Applicable + true + + + Cooling Plant ID Is Not Applicable + false + + + Cooling Source Condition Is Not Applicable + true + + + Cooling Source Notes + + + + Cooling Source Notes Is Not Applicable + true + + + Location Is Not Applicable + true + + + Primary Fuel Is Not Applicable + true + + + Quantity Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + + + Central fan + + + + + + + + + + false + false + + + + + + + + + + + + + false + + + + + + + + + + Pneumatic + + + + + + + + + + Common + 100 + + + Tenant + 0 + + + + + + + + Central Distribution Type + Two Pipe Steam + + + Demand Control Ventilation Is Not Applicable + true + + + Exhaust Ventilation For Corridor + false + + + Exhaust Ventilation For Corridor Is Not Applicable + false + + + Exhaust Ventilation For Kitchen + true + + + Exhaust Ventilation For Kitchen Is Not Applicable + false + + + Exhaust Ventilation For Other + false + + + Exhaust Ventilation For Other Is Not Applicable + false + + + Exhaust Ventilation For Parking + false + + + Exhaust Ventilation For Parking Is Not Applicable + true + + + Exhaust Ventilation For Restroom + true + + + Exhaust Ventilation For Restroom Is Not Applicable + false + + + Minimum Air Flow Fraction Is Not Applicable + false + + + Other Central Distribution Type + + + + Other Central Distribution Type Is Not Applicable + true + + + Other Distribution Equipment Type + + + + Other Distribution Equipment Type Is Not Applicable + true + + + Outdoor Air Type + None + + + Outdoor Air Type Is Not Applicable + false + + + Packaged Terminal Equipment Type Is Not Applicable + true + + + Static Pressure Reset Control Is Not Applicable + true + + + Supply Air Temperature Reset Control Is Not Applicable + true + + + Supply Ventilation For Common area + true + + + Supply Ventilation For Common area Is Not Applicable + false + + + Supply Ventilation For Corridor + true + + + Supply Ventilation For Corridor Is Not Applicable + false + + + Supply Ventilation For Other + true + + + Supply Ventilation For Other Is Not Applicable + false + + + Supply Ventilation For Tenant Spaces + false + + + Supply Ventilation For Tenant Spaces Is Not Applicable + true + + + Terminal Unit Is Not Applicable + false + + + Ventilation System > 5 hp + true + + + Ventilation Type Is Not Applicable + true + + + + + + + + + T8 + Unknown + + + Standard Electronic + false + + + + Manual On/Off + + + + + + + + + + + + Common + 40.0 + + + Tenant + 0.0 + + + + + + + + Lighting System Name + Fixture 1 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45079780 + + + + Common Areas Lighting Power Density For Section-45079780 + + + + Tenant Areas Lighting Power Density For Section-45079780 + + + + Quantity Of Luminaires For Section-45079780 + + + + Common Areas Quantity Of Luminaires For Section-45079780 + 2700 + + + Tenant Areas Quantity Of Luminaires For Section-45079780 + 0 + + + + + + + T12 + Unknown + + + Standard Electronic + false + + + + Manual On/Off + + + + + + + + + + + + Common + 35.0 + + + Tenant + 0.0 + + + + + + + + Lighting System Name + Fixture 2 + + + LED Application Type Is Not Applicable + true + + + Lighting Power Density For Section-45079780 + + + + Common Areas Lighting Power Density For Section-45079780 + + + + Tenant Areas Lighting Power Density For Section-45079780 + + + + Quantity Of Luminaires For Section-45079780 + + + + Common Areas Quantity Of Luminaires For Section-45079780 + 1500 + + + Tenant Areas Quantity Of Luminaires For Section-45079780 + 0 + + + + + + + LED + + + No Ballast + false + + + + Manual On/Off + + + + + + + + + + + + Common + 25.0 + + + Tenant + 0.0 + + + + + + + + Lighting System Name + Fixture 3 + + + LED Application Type Is Not Applicable + false + + + Lighting Power Density For Section-45079780 + + + + Common Areas Lighting Power Density For Section-45079780 + + + + Tenant Areas Lighting Power Density For Section-45079780 + + + + Quantity Of Luminaires For Section-45079780 + + + + Common Areas Quantity Of Luminaires For Section-45079780 + 250 + + + Tenant Areas Quantity Of Luminaires For Section-45079780 + 0 + + + + + + + + + + + + + + + + 2000 + Natural gas + + Mechanical Room + + + + + + + + + Common + 100 + + + Tenant + 0 + + + + + + + + Draft Type Is Not Applicable + true + + + Heating Plant ID Is Not Applicable + true + + + Hot Water Distribution Type Is Not Applicable + true + + + Hot Water Setpoint Temperature Is Not Applicable + true + + + Location Is Not Applicable + false + + + Model Number Is Not Applicable + true + + + Primary Fuel Is Not Applicable + false + + + Storage Tank Insulation R Value Is Not Applicable + false + + + Storage Tank Insulation Thickness Is Not Applicable + false + + + Tank Volume Is Not Applicable + true + + + Water Heater Efficiency Is Not Applicable + true + + + Water Heater Efficiency Type Is Not Applicable + true + + + Year Installed Is Not Applicable + false + + + + + + + + + + + + Pump Control Type Is Not Applicable + false + + + + + + + + + + Pump Control Type Is Not Applicable + false + + + + + + + Constant Volume + + + + + + + + Masonry + Brick + + + 3.125 + + + + + + + Built up + false + false + false + + + 22.0 + + + Concrete + Flat + + + Blue Roof Is Not Applicable + false + + + Cool Roof Is Not Applicable + false + + + Green Roof Is Not Applicable + false + + + Year Installed Is Not Applicable + true + + + + + + + + + + + + + Other Exterior Door Type + + + + + + + + + Other + 0.25 + 0.25 + 0.5 + + + + + + Aluminum no thermal break + true + Clear uncoated + Double pane + 0.3 + 0.25 + 0.6 + + + Year Installed Is Not Applicable + false + + + + + + + + + + 5.0 + + + + + + Other Foundation Type + + + + Slab Insulation Thickness Is Not Applicable + false + + + + + + + Foundation Wall R Value Is Not Applicable + true + + + Linked Wall ID + WallSystemType-45080320 + + + + + + + Server + + + + + + + + Occupancy Classification + Data center + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + Metering + false + + + Metering Is Not Applicable + false + + + Power Usage Effectiveness Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + Trading floor + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Occupancy Classification + TV studio + + + Gross Floor Area Is Not Applicable + true + + + IT Peak Power Is Not Applicable + true + + + + + UPS + + + + + + + + Occupancy Classification + Data center + + + IT Peak Power Is Not Applicable + true + + + + + + + Broadcast Antenna + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + Kitchen Equipment + + + + + + + + Gross Floor Area Is Not Applicable + true + + + Plug Load Peak Power Is Not Applicable + true + + + + + Other + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + Plug Load Total Power Is Not Applicable + true + + + + + Signage Display + + + + + + + + Plug Load Peak Power Is Not Applicable + true + + + + + + + true + false + kBtu/hr + + + + + + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + true + + + Other Energy Generation Technology Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + false + false + kBtu/hr + + + + + + + + Average Annual Operating Hours Is Not Applicable + false + + + Capacity Is Not Applicable + true + + + Demand Reduction Is Not Applicable + false + + + Output Resource Type Is Not Applicable + true + + + Year Installed Is Not Applicable + true + + + + + + + Tight + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 1 + Upgrade Non-Assembly Space Lighting + + + + + 0.0 + 0.0 + + 20 + 1058566.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Upgrade exterior lighting + + + + Entire building + Measure 4 + Upgrade Exterior Fixtures to LED + + + + + 0.0 + 0.0 + + 30 + 34152.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Measure 5 + Upgrade Assembly Space Lighting + + + + + 0.0 + 0.0 + + 20 + 138819.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + Measure 2 + Install Occupancy and Daylight based Lighting Controls + + + + + 0.0 + 0.0 + + 20 + 65967.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + General Controls and Operations + + + + + + + + + Replace with variable speed pump + + + + Entire building + Measure 3 + Install Variable Frequency Drives on Dual Temperature Pumps + + + + + 0.0 + 0.0 + + 20 + 63925.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + Domestic Hot Water + + + + + + + + + Add or upgrade controls + + + + Entire building + Measure 6 + Add controls to SHW + + + + + 0.0 + 0.0 + + 20 + 5000.0 + true + + + Reduces Scope 1 Emissions + false + + + Shared Resource Affected + false + + + Is 179D + false + + + Rebate Available + false + + + Equipment Is Not Applicable + false + + + + + + + + + Audit Template Available Energy + Current + + + + + + Electricity + Site + kWh + All end uses + + + Natural gas + Site + therms + All end uses + + + + + + + + + + Other Scenario Type + Audit Template Available Energy + + + + + + + + + + + + + + benchmark + Current + + + + + + All end uses + Site + 0.0 + + + Weather Normalized Pre-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Weather Normalized Post-retrofit Site Energy Use Intensity Is + Not Applicable + false + + + Site Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + Benchmark Value Is Not Applicable + false + + + Benchmark Year Is Not Applicable + false + + + Scenario Notes For Not Applicable + + + + + + current_building + Current + + + + + + Unknown + + + GHG Emissions Is Not Applicable + false + + + + + + + + + + + + current_building_with_normalization + Current + Weather normalized + + + + + + All end uses + Source + + + Source Energy Use Intensity Is Not Applicable + false + + + + + + + + + + + + target + Target + + + + + + All end uses + Site + 0.0 + 0.0 + + + + + + + + + + Audit Template Annual Summary - Electricity + Current + + + + + + Electricity + Site + kWh + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 5639918.5 + + + + + + All end uses + Site + 578767.875 + 2266.4587236700313 + + + Linked Time Series ID + TimeSeriesType-45080620 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Annual Summary - Natural gas + Current + + + + + + Natural gas + Site + therms + Not shared + + + + + Average + Energy + 2018-01-01T00:00:00+00:00 + 2018-12-31T00:00:00+00:00 + Annual + 104410.90625 + + + + + + All end uses + Site + 69980.8046875 + 554.52632309375 + + + Linked Time Series ID + TimeSeriesType-45080700 + + + + + + + + + + + + Other Scenario Type + Audit Template Annual Summary + + + + + Audit Template Energy Uses + Current + + + + + + Electricity + Site + kWh + Not shared + Heating + 541483.0 + + + Net + CO2e + 217.6004616146527 + + + + + Electricity + Site + kWh + Not shared + Cooling + 1052761.0 + + + Net + CO2e + 423.06273617067086 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Ventilation + 492429.0 + + + Net + CO2e + 197.88761182242433 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Domestic hot water + 196515.0 + + + Net + CO2e + 78.97155536591818 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Cooking + 2899766.0 + + + Net + CO2e + 1165.300517605308 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Refrigeration + 49054.0 + + + Net + CO2e + 19.71284979222833 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Plug load + 245268.0 + + + Net + CO2e + 98.56344524076034 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + Conveyance + 367902.0 + + + Net + CO2e + 147.8451678611405 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Heating + 55061.0 + + + Net + CO2e + 292.42897099999993 + + + + + Natural gas + Site + therms + Not shared + Domestic hot water + 38226.0 + + + Net + CO2e + 203.018286 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Cooking + 6471.0 + + + Net + CO2e + 34.367481 + + + + + Other End Use + + + + + + Natural gas + Site + therms + Not shared + Laundry + 10367.0 + + + Net + CO2e + 55.05913699999999 + + + + + Other End Use + + + + + + Electricity + Site + kWh + Not shared + All end uses + 5845178.0 + + + Net + CO2e + 2348.944345473103 + + + + + Natural gas + Site + therms + Not shared + All end uses + 110125.0 + + + Net + CO2e + 584.873875 + + + + + + + + + + + + Other Scenario Type + Audit Template Energy Uses + + + + + Lighting Improvements + Current + + + + + + + + + 34552 + + + Electricity + kWh + 850000.0 + + + Natural gas + therms + -21000.0 + + + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + Controls + Current + + + + + + + 15000 + + + Electricity + kWh + 81000.0 + + + Natural gas + therms + 11000.0 + + + + + USGBC Package Category + Alternative + + + + + + + + + + + + Recommended Resource Savings Category + Low Cost and No Cost Recommendations + + + + + + + 2021-11-01 + Custom + Level 2: Energy Survey and Analysis + + + Initial filing + false + + + + + + + + 50121 Program Pathway + Modeled Energy Savings + + + Audit Date For Level 1: Walk-through Is Not Applicable + true + + + Audit Date For Level 2: Energy Survey and Analysis Is Not Applicable + false + + + Audit Date For Level 3: Detailed Survey and Analysis Is Not Applicable + true + + + Audit Date For Final Installation Placed in Service Is Not Applicable + false + + + Audit Date For Completion of Pre-retrofit Audit Is Not Applicable + false + + + Audit Date For Completion of Post-retrofit Audit Is Not Applicable + false + + + Audit Date For Building Originally Placed in Service Is Not Applicable + false + + + Audit Date For Qualified Retrofit Plan Established Is Not Applicable + false + + + Audit Date For Qualified Retrofit Property Placed in Service Is Not + Applicable + false + + + Audit Filing Status Is Not Applicable + true + + + Audit Notes + + + + Audit Notes For Not Applicable + Audit Level 3 not required. + + + Audit Notes Is Not Applicable + false + + + Audit Team Notes + + + + Audit Team Notes Is Not Applicable + false + + + Audit Template Report Type + New York City Energy Efficiency Report + + + Auditor Years Of Experience + 5 + + + Early Compliance + false + + + Early Compliance Is Not Applicable + true + + + GGRF Grantee - Appalachian Community Capital Corporation (ACC) + false + + + GGRF Grantee - Climate United Fund (CUF) + false + + + GGRF Grantee - Coalition for Green Capital (CGC) + false + + + GGRF Grantee - Inclusiv (INC) + false + + + GGRF Grantee - Justice Climate Fund (JCF) + false + + + GGRF Grantee - Native CDFI Network (NCN) + false + + + GGRF Grantee - Opportunity Finance Network (OFN) + false + + + GGRF Grantee - Power Forward Communities (PFC) + false + + + Required Audit Year Is Not Applicable + true + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/Reference-PrimarySchool-L100-Audit.xml b/spec/files/v2.7.0/Reference-PrimarySchool-L100-Audit.xml new file mode 100644 index 0000000..ad212e9 --- /dev/null +++ b/spec/files/v2.7.0/Reference-PrimarySchool-L100-Audit.xml @@ -0,0 +1,1955 @@ + + + + + + + + + + Primary School Prototype + Here we record general problems / issues identified in a walkthrough survey. +
+ + + 15013 Denver West Parkway + + + Golden + CO + 80401 +
+ Commercial + Education-Primary + + 1 + 0 + 1 + 0 + false + + + Gross + 73960.000000 + + + Conditioned + 73960.000000 + + + 2018 + 2018 + 2018 + +
+ Space function + Office work area + Education-Primary + + + Peak total occupants + 23.730000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 4746.880000 + + + Conditioned + 4746.880000 + + +
+
+ Space function + Mechanical room + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 30.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 2712.510000 + + + Conditioned + 2712.510000 + + +
+
+ Space function + Media center + Education-Primary + + + Peak total occupants + 42.900000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 4294.800000 + + + Conditioned + 4294.800000 + + +
+
+ Space function + Kitchen + Education-Primary + + + Peak total occupants + 27.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 1808.330000 + + + Conditioned + 1808.330000 + + +
+
+ Space function + Sport play area + Education-Primary + + + Peak total occupants + 115.160000 + + + + + 25.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 3842.710000 + + + Conditioned + 3842.710000 + + +
+
+ Space function + Dining area + Education-Primary + + + Peak total occupants + 338.700000 + + + + + 30.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 3390.630000 + + + Conditioned + 3390.630000 + + +
+
+ Space function + Restroom + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 2045.140000 + + + Conditioned + 2045.140000 + + +
+
+ Space function + Computer lab + Education-Primary + + + Peak total occupants + 43.640000 + + + + + 65.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 1743.750000 + + + Conditioned + 1743.750000 + + +
+
+ Space function + Classroom + Education-Primary + + + Peak total occupants + 309.700000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 12400.020000 + + + Conditioned + 12400.020000 + + +
+
+ Space function + Classroom + Education-Primary + + + Peak total occupants + 309.700000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 12400.020000 + + + Conditioned + 12400.020000 + + +
+
+ Space function + Classroom + Education-Primary + + + Peak total occupants + 266.120000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 10656.270000 + + + Conditioned + 10656.270000 + + +
+
+ Space function + Corridor + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 2066.670000 + + + Conditioned + 2066.670000 + + +
+
+ Space function + Corridor + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 2066.670000 + + + Conditioned + 2066.670000 + + +
+
+ Space function + Corridor + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 2066.670000 + + + Conditioned + 2066.670000 + + +
+
+ Space function + Corridor + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 2066.670000 + + + Conditioned + 2066.670000 + + +
+
+ Space function + Lobby + Education-Primary + + + Peak total occupants + 0.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 1840.620000 + + + Conditioned + 1840.620000 + + +
+
+ Whole building + Education-Primary + + + Peak total occupants + 1849.000000 + + + + + 45.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 73960.000000 + + + Conditioned + 73960.000000 + + +
+
+
+
+
+
+ + + + Packaged Rooftop VAV with Hot Water Reheat + +
+ + +
+
+
+ + Packaged Rooftop VAV with Hot Water Reheat + +
+ + +
+
+
+ + Packaged Rooftop VAV with Hot Water Reheat + +
+ + +
+
+
+ + Packaged Rooftop VAV with Hot Water Reheat + +
+ + + + + + + +
+
+
+ + Packaged Rooftop Air Conditioner + +
+ +
+
+
+ + Packaged Rooftop Air Conditioner + +
+ +
+
+
+ + Packaged Rooftop Air Conditioner + +
+ +
+
+
+
+ + + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+ + + + T8 + + + Standard Electronic + +
+ +
+
+
+
+ + + 4.000000 + +
+ +
+
+
+ + 4.000000 + +
+ +
+
+
+ + 4.000000 + +
+ +
+
+
+ + 4.000000 + +
+ +
+
+
+ + 4.000000 + +
+ +
+
+
+ + 15.000000 + +
+ +
+
+
+ + 15.000000 + +
+ +
+
+
+ + 15.000000 + +
+ +
+
+
+ + 20.000000 + +
+ +
+
+
+ + 4.000000 + +
+ +
+
+
+ + 25.390000 + +
+ +
+
+
+ + 5.000000 + +
+ +
+
+
+ + 1630.389300 + +
+ +
+
+
+ + 15.000000 + +
+ +
+
+
+ + 10.000000 + +
+ +
+
+
+ + 10.800000 + +
+ +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + Lighting + + + + Retrofit with light emitting diode technologies + + + + This measure is designed to replace all fluorescent bulbs with LEDs + + + + + + + + + + + + + + + + Electricity + This is required for L1 to document irregularities in monthly energy patterns (Std 211 6.1.2.1.j). No irregularities found. + kWh + All end uses + 653761.110000 + 2230.840000 + + + + + + + + + + + + + + + kW + 248431.130000 + 248431.130000 + 16412.130000 + + + + + + Indirect + CO2e + 0.000507 + Utility + 331.236350 + + + + + Natural gas + No irregularities in monthly energy consumption found. + MMBtu + All end uses + 994.950000 + 994.950000 + + + + + + + + + + + + + + + 1152.520000 + + + + + + Indirect + CO2e + 14.430000 + US EPA + 14357.128500 + + + + + + + Total + Energy + 2021-01-01T00:00:00 + 2021-02-01T00:00:00 + 1 + Month + Month + 52651.670000 + + + + Total + Energy + 2021-02-01T00:00:00 + 2021-03-01T00:00:00 + 1 + Month + Month + 46018.330000 + + + + Total + Energy + 2021-03-01T00:00:00 + 2021-04-01T00:00:00 + 1 + Month + Month + 52645.000000 + + + + Total + Energy + 2021-04-01T00:00:00 + 2021-05-01T00:00:00 + 1 + Month + Month + 49929.170000 + + + + Total + Energy + 2021-05-01T00:00:00 + 2021-06-01T00:00:00 + 1 + Month + Month + 58176.390000 + + + + Total + Energy + 2021-06-01T00:00:00 + 2021-07-01T00:00:00 + 1 + Month + Month + 66276.940000 + + + + Total + Energy + 2021-07-01T00:00:00 + 2021-08-01T00:00:00 + 1 + Month + Month + 52738.060000 + + + + Total + Energy + 2021-08-01T00:00:00 + 2021-09-01T00:00:00 + 1 + Month + Month + 56057.780000 + + + + Total + Energy + 2021-09-01T00:00:00 + 2021-10-01T00:00:00 + 1 + Month + Month + 60436.110000 + + + + Total + Energy + 2021-10-01T00:00:00 + 2021-11-01T00:00:00 + 1 + Month + Month + 57091.670000 + + + + Total + Energy + 2021-11-01T00:00:00 + 2021-12-01T00:00:00 + 1 + Month + Month + 51428.890000 + + + + Total + Energy + 2021-12-01T00:00:00 + 2022-01-01T00:00:00 + 1 + Month + Month + 50311.110000 + + + + Total + Energy + 2021-01-01T00:00:00 + 2021-02-01T00:00:00 + 1 + Month + Month + 165.210000 + + + + Total + Energy + 2021-02-01T00:00:00 + 2021-03-01T00:00:00 + 1 + Month + Month + 143.790000 + + + + Total + Energy + 2021-03-01T00:00:00 + 2021-04-01T00:00:00 + 1 + Month + Month + 103.090000 + + + + Total + Energy + 2021-04-01T00:00:00 + 2021-05-01T00:00:00 + 1 + Month + Month + 60.020000 + + + + Total + Energy + 2021-05-01T00:00:00 + 2021-06-01T00:00:00 + 1 + Month + Month + 49.660000 + + + + Total + Energy + 2021-06-01T00:00:00 + 2021-07-01T00:00:00 + 1 + Month + Month + 40.180000 + + + + Total + Energy + 2021-07-01T00:00:00 + 2021-08-01T00:00:00 + 1 + Month + Month + 36.890000 + + + + Total + Energy + 2021-08-01T00:00:00 + 2021-09-01T00:00:00 + 1 + Month + Month + 40.950000 + + + + Total + Energy + 2021-09-01T00:00:00 + 2021-10-01T00:00:00 + 1 + Month + Month + 37.870000 + + + + Total + Energy + 2021-10-01T00:00:00 + 2021-11-01T00:00:00 + 1 + Month + Month + 60.750000 + + + + Total + Energy + 2021-11-01T00:00:00 + 2021-12-01T00:00:00 + 1 + Month + Month + 86.850000 + + + + Total + Energy + 2021-12-01T00:00:00 + 2022-01-01T00:00:00 + 1 + Month + Month + 169.700000 + + + + Peak + Unknown + Power + 2021-01-01T00:00:00 + 2021-02-01T00:00:00 + 1 + Month + Month + 167.374990 + + + + Peak + Unknown + Power + 2021-02-01T00:00:00 + 2021-03-01T00:00:00 + 1 + Month + Month + 155.851460 + + + + Peak + Unknown + Power + 2021-03-01T00:00:00 + 2021-04-01T00:00:00 + 1 + Month + Month + 165.633220 + + + + Peak + Unknown + Power + 2021-04-01T00:00:00 + 2021-05-01T00:00:00 + 1 + Month + Month + 191.066240 + + + + Peak + Unknown + Power + 2021-05-01T00:00:00 + 2021-06-01T00:00:00 + 1 + Month + Month + 219.526400 + + + + Peak + Unknown + Power + 2021-06-01T00:00:00 + 2021-07-01T00:00:00 + 1 + Month + Month + 248.431130 + + + + Peak + Unknown + Power + 2021-07-01T00:00:00 + 2021-08-01T00:00:00 + 1 + Month + Month + 181.331960 + + + + Peak + Unknown + Power + 2021-08-01T00:00:00 + 2021-09-01T00:00:00 + 1 + Month + Month + 178.148530 + + + + Peak + Unknown + Power + 2021-09-01T00:00:00 + 2021-10-01T00:00:00 + 1 + Month + Month + 227.075020 + + + + Peak + Unknown + Power + 2021-10-01T00:00:00 + 2021-11-01T00:00:00 + 1 + Month + Month + 223.758040 + + + + Peak + Unknown + Power + 2021-11-01T00:00:00 + 2021-12-01T00:00:00 + 1 + Month + Month + 194.377020 + + + + Peak + Unknown + Power + 2021-12-01T00:00:00 + 2022-01-01T00:00:00 + 1 + Month + Month + 150.135320 + + + + Cost + Cost + 2021-01-01T00:00:00 + 2021-02-01T00:00:00 + 1 + Month + Month + 1221.220000 + + + + Cost + Cost + 2021-02-01T00:00:00 + 2021-03-01T00:00:00 + 1 + Month + Month + 1125.760000 + + + + Cost + Cost + 2021-03-01T00:00:00 + 2021-04-01T00:00:00 + 1 + Month + Month + 1211.380000 + + + + Cost + Cost + 2021-04-01T00:00:00 + 2021-05-01T00:00:00 + 1 + Month + Month + 1342.050000 + + + + Cost + Cost + 2021-05-01T00:00:00 + 2021-06-01T00:00:00 + 1 + Month + Month + 1540.300000 + + + + Cost + Cost + 2021-06-01T00:00:00 + 2021-07-01T00:00:00 + 1 + Month + Month + 1740.370000 + + + + Cost + Cost + 2021-07-01T00:00:00 + 2021-08-01T00:00:00 + 1 + Month + Month + 1300.190000 + + + + Cost + Cost + 2021-08-01T00:00:00 + 2021-09-01T00:00:00 + 1 + Month + Month + 1297.570000 + + + + Cost + Cost + 2021-09-01T00:00:00 + 2021-10-01T00:00:00 + 1 + Month + Month + 1593.210000 + + + + Cost + Cost + 2021-10-01T00:00:00 + 2021-11-01T00:00:00 + 1 + Month + Month + 1559.120000 + + + + Cost + Cost + 2021-11-01T00:00:00 + 2021-12-01T00:00:00 + 1 + Month + Month + 1367.600000 + + + + Cost + Cost + 2021-12-01T00:00:00 + 2022-01-01T00:00:00 + 1 + Month + Month + 1113.370000 + + + + Cost + Cost + 2021-01-01T00:00:00 + 2021-02-01T00:00:00 + 1 + Month + Month + 191.310000 + + + + Cost + Cost + 2021-02-01T00:00:00 + 2021-03-01T00:00:00 + 1 + Month + Month + 166.500000 + + + + Cost + Cost + 2021-03-01T00:00:00 + 2021-04-01T00:00:00 + 1 + Month + Month + 119.380000 + + + + Cost + Cost + 2021-04-01T00:00:00 + 2021-05-01T00:00:00 + 1 + Month + Month + 69.500000 + + + + Cost + Cost + 2021-05-01T00:00:00 + 2021-06-01T00:00:00 + 1 + Month + Month + 57.500000 + + + + Cost + Cost + 2021-06-01T00:00:00 + 2021-07-01T00:00:00 + 1 + Month + Month + 46.520000 + + + + Cost + Cost + 2021-07-01T00:00:00 + 2021-08-01T00:00:00 + 1 + Month + Month + 42.720000 + + + + Cost + Cost + 2021-08-01T00:00:00 + 2021-09-01T00:00:00 + 1 + Month + Month + 47.430000 + + + + Cost + Cost + 2021-09-01T00:00:00 + 2021-10-01T00:00:00 + 1 + Month + Month + 43.860000 + + + + Cost + Cost + 2021-10-01T00:00:00 + 2021-11-01T00:00:00 + 1 + Month + Month + 70.350000 + + + + Cost + Cost + 2021-11-01T00:00:00 + 2021-12-01T00:00:00 + 1 + Month + Month + 100.580000 + + + + Cost + Cost + 2021-12-01T00:00:00 + 2022-01-01T00:00:00 + 1 + Month + Month + 196.510000 + + + + + + 3236419.050000 + 43.750000 + 8177253.314000 + 110.560000 + 3236419.050000 + 43.750000 + 3236.419050 + 0.000000 + 0.000000 + 0.000000 + 17564.290000 + 0.237500 + + + + + + + + + + + + + + 2021-03-24 + + + Portfolio Manager + 2021 + 69.000000 + + + + + 3236419.050000 + 43.500000 + + + + + + + + + + + + + 67181.500000 + 931 + 70.000000 + + + + + 207643.500000 + 37.800000 + 4451.510000 + 0.810000 + + + + + + + + + + + + + + + + Capital + + Low + Medium + Medium + High + Medium + + + + + + + + + + + + + + + + + + + --01-01 + --01-01 + --01-01 + --01-01 + 0.004610 + 5.630000 + + + + + https://www.xcelenergy.com/staticfiles/xe/Regulatory/COBusRates.pdf + 36.170000 + + + XCEL Energy + some-account-number + + + + + + + + + --01-01 + --01-01 + 1.158000 + + + + + https://www.xcelenergy.com/staticfiles/xe/Regulatory/COBusRates.pdf + + + XCEL Energy + some-other-account-number + + + + + + + + + + + + + + Owner + + Bill Dean O'Nerr + ACME + + + bd.onerr@acme.net + + + + + + Energy Auditor + + Odette Or + La Audit Compagnie + + + odette.orr@la-audit-co.fr + + + + +
+
+
diff --git a/spec/files/v2.7.0/building_151 copy.xml b/spec/files/v2.7.0/building_151 copy.xml new file mode 100644 index 0000000..ea365ed --- /dev/null +++ b/spec/files/v2.7.0/building_151 copy.xml @@ -0,0 +1,878 @@ + + + + + + + + + + 123 Main St + + + San Francisco + CA + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 151 + + + + Assessor parcel number + PN 123 + + + Custom + Custom ID 1 + 151 + + + Custom + City Custom Building ID + 151 + + + Retail + 1 + 0 + + + Gross + 69452 + + + Heated and Cooled + 69452 + + + Footprint + 73872.6457 + + + 3.6732677131179763 + 1325 + 1954 + 2003 + + + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + TBD + Retrofit with light emitting diode technologies + 0 + 12 + 267390.2 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Air seal envelope + + + + Entire building + TBD + Air seal envelope + 0 + 11 + 162517.68 + 0 + 0 + true + Proposed + + + Cooling System + + + + + + + + + Replace package units + + + + Entire building + TBD + Replace package units + 0 + 15 + 290309.36 + 0 + 0 + true + Proposed + + + Heating System + + + + + + + + + Replace burner + + + + Entire building + TBD + Replace burner + 0 + 20 + 61812.28 + 0 + 0 + true + Proposed + + + Lighting + + + + + + + + + Add daylight controls + + + + Entire building + TBD + Add daylight controls + 0 + 8 + 36809.560000000005 + 0 + 0 + true + Proposed + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + TBD + Add occupancy sensors + 0 + 8 + 107650.6 + 0 + 0 + true + Proposed + + + Plug Load + + + + + + + + + Install plug load controls + + + + Entire building + TBD + Install plug load controls + 0 + 6 + 56950.64 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Increase wall insulation + + + + Entire building + TBD + Increase wall insulation + 0 + 20 + 113206.76 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Insulate thermal bypasses + + + + Entire building + TBD + Insulate thermal bypasses + 0 + 20 + 69452.0 + 0 + 0 + true + Proposed + + + Roof + + + + + + + + + Increase roof insulation + + + + Entire building + TBD + Increase roof insulation + 0 + 20 + 1004275.92 + 0 + 0 + true + Proposed + + + Ceiling + + + + + + + + + Increase ceiling insulation + + + + Entire building + TBD + Increase ceiling insulation + 0 + 20 + 185436.84 + 0 + 0 + true + Proposed + + + General Controls and Operations + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + TBD + Upgrade operating protocols, calibration, and/or sequencing + 0 + 11 + 347.26 + 0 + 0 + true + Proposed + + + Refrigeration + + + + + + + + + Replace ice/refrigeration equipment with high efficiency units + + + + Entire building + TBD + Replace ice/refrigeration equipment with high efficiency units + 0 + 13 + 135431.4 + 0 + 0 + true + Proposed + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + TBD + Replace boiler + 0 + 20 + 65979.4 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + TBD + Install demand control ventilation + 0 + 10 + 22919.16 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Add or repair economizer + + + + Entire building + TBD + Add or repair economizer + 0 + 13 + 55561.600000000006 + 0 + 0 + true + Proposed + + + + + + + Baseline + + + + + + + + + + LED Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Air_Seal_Infiltration_30%_More_Airtight Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Cooling_System_SEER 14 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Heating_System_Efficiency_0.93 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add daylight controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add occupancy sensors Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install plug load controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase wall insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Insulate thermal bypasses Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase roof insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase ceiling insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Upgrade operating protocols calibration and-or sequencing Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace ice-refrigeration equipment with high efficiency units Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace boiler Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install demand control ventilation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add or repair economizer Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + + + + + diff --git a/spec/files/v2.7.0/building_151.xml b/spec/files/v2.7.0/building_151.xml new file mode 100644 index 0000000..ea365ed --- /dev/null +++ b/spec/files/v2.7.0/building_151.xml @@ -0,0 +1,878 @@ + + + + + + + + + + 123 Main St + + + San Francisco + CA + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 151 + + + + Assessor parcel number + PN 123 + + + Custom + Custom ID 1 + 151 + + + Custom + City Custom Building ID + 151 + + + Retail + 1 + 0 + + + Gross + 69452 + + + Heated and Cooled + 69452 + + + Footprint + 73872.6457 + + + 3.6732677131179763 + 1325 + 1954 + 2003 + + + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + TBD + Retrofit with light emitting diode technologies + 0 + 12 + 267390.2 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Air seal envelope + + + + Entire building + TBD + Air seal envelope + 0 + 11 + 162517.68 + 0 + 0 + true + Proposed + + + Cooling System + + + + + + + + + Replace package units + + + + Entire building + TBD + Replace package units + 0 + 15 + 290309.36 + 0 + 0 + true + Proposed + + + Heating System + + + + + + + + + Replace burner + + + + Entire building + TBD + Replace burner + 0 + 20 + 61812.28 + 0 + 0 + true + Proposed + + + Lighting + + + + + + + + + Add daylight controls + + + + Entire building + TBD + Add daylight controls + 0 + 8 + 36809.560000000005 + 0 + 0 + true + Proposed + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + TBD + Add occupancy sensors + 0 + 8 + 107650.6 + 0 + 0 + true + Proposed + + + Plug Load + + + + + + + + + Install plug load controls + + + + Entire building + TBD + Install plug load controls + 0 + 6 + 56950.64 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Increase wall insulation + + + + Entire building + TBD + Increase wall insulation + 0 + 20 + 113206.76 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Insulate thermal bypasses + + + + Entire building + TBD + Insulate thermal bypasses + 0 + 20 + 69452.0 + 0 + 0 + true + Proposed + + + Roof + + + + + + + + + Increase roof insulation + + + + Entire building + TBD + Increase roof insulation + 0 + 20 + 1004275.92 + 0 + 0 + true + Proposed + + + Ceiling + + + + + + + + + Increase ceiling insulation + + + + Entire building + TBD + Increase ceiling insulation + 0 + 20 + 185436.84 + 0 + 0 + true + Proposed + + + General Controls and Operations + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + TBD + Upgrade operating protocols, calibration, and/or sequencing + 0 + 11 + 347.26 + 0 + 0 + true + Proposed + + + Refrigeration + + + + + + + + + Replace ice/refrigeration equipment with high efficiency units + + + + Entire building + TBD + Replace ice/refrigeration equipment with high efficiency units + 0 + 13 + 135431.4 + 0 + 0 + true + Proposed + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + TBD + Replace boiler + 0 + 20 + 65979.4 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + TBD + Install demand control ventilation + 0 + 10 + 22919.16 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Add or repair economizer + + + + Entire building + TBD + Add or repair economizer + 0 + 13 + 55561.600000000006 + 0 + 0 + true + Proposed + + + + + + + Baseline + + + + + + + + + + LED Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Air_Seal_Infiltration_30%_More_Airtight Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Cooling_System_SEER 14 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Heating_System_Efficiency_0.93 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add daylight controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add occupancy sensors Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install plug load controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase wall insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Insulate thermal bypasses Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase roof insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase ceiling insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Upgrade operating protocols calibration and-or sequencing Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace ice-refrigeration equipment with high efficiency units Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace boiler Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install demand control ventilation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add or repair economizer Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + + + + + diff --git a/spec/files/v2.7.0/building_151_level1.xml b/spec/files/v2.7.0/building_151_level1.xml new file mode 100644 index 0000000..5e5c2df --- /dev/null +++ b/spec/files/v2.7.0/building_151_level1.xml @@ -0,0 +1,1737 @@ + + + + + + + + + + 123 Main St + + + San Francisco + CA + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 151 + + + + Assessor parcel number + PN 123 + + + Custom + Custom ID 1 + 151 + + + Custom + City Custom Building ID + 151 + + + Retail + + + 15000 + + + + + 18 + + + Property management company + + 1 + 0 + true + true + + + Gross + 69452 + + + Heated and Cooled + 69452 + + + Footprint + 73872.6457 + + + 3.6732677131179763 + 1325 + 1954 + 2010 + 2019-01-01 + 2003 + 60 + + + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + + VAV with Hot Water Reheat + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + Retrofit with light emitting diode technologies + + 2 + 26956 + 5 + + 0 + 12 + 267390.2 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Plug Load + + + + + + + + + Replace with ENERGY STAR rated + + + + Entire building + Replace with ENERGY STAR rated + 0 + 9 + 35420.520000000004 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Wall + + + + + + + + + Air seal envelope + + + + Entire building + Air seal envelope + 0 + 11 + 162517.68 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Cooling System + + + + + + + + + Replace package units + + + + Entire building + Replace package units + 0 + 15 + 290309.36 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Heating System + + + + + + + + + Replace burner + + + + Entire building + Replace burner + 0 + 20 + 61812.28 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Lighting + + + + + + + + + Add daylight controls + + + + Entire building + Add daylight controls + 0 + 8 + 36809.560000000005 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + Add occupancy sensors + 0 + 8 + 107650.6 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Plug Load + + + + + + + + + Install plug load controls + + + + Entire building + Install plug load controls + 0 + 6 + 56950.64 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Wall + + + + + + + + + Increase wall insulation + + + + Entire building + Increase wall insulation + 0 + 20 + 113206.76 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Wall + + + + + + + + + Insulate thermal bypasses + + + + Entire building + Insulate thermal bypasses + 0 + 20 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Roof + + + + + + + + + Increase roof insulation + + + + Entire building + Increase roof insulation + 0 + 20 + 1004275.92 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Ceiling + + + + + + + + + Increase ceiling insulation + + + + Entire building + Increase ceiling insulation + 0 + 20 + 185436.84 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Fenestration + + + + + + + + + Add window films + + + + Entire building + Add window films + 0 + 10 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + General Controls and Operations + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + Upgrade operating protocols, calibration, and/or sequencing + 0 + 11 + 347.26 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Domestic Hot Water + + + + + + + + + Replace or upgrade water heater + + + + Entire building + Replace or upgrade water heater + 0 + 10 + 11806.84 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Refrigeration + + + + + + + + + Replace ice/refrigeration equipment with high efficiency units + + + + Entire building + Replace ice/refrigeration equipment with high efficiency units + 0 + 12 + 135431.4 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Fenestration + + + + + + + + + Replace windows + + + + Entire building + Replace windows + 0 + 20 + 154877.96 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + Replace boiler + 0 + 20 + 65979.4 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Other HVAC + + + + + + + + + Replace AC and heating units with ground coupled heat pump systems + + + + Entire building + Replace AC and heating units with ground coupled heat pump systems + 0 + 15 + 972328.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Other HVAC + + + + + + + + + Other + + + + Entire building + VRF with DOAS + 0 + 10 + 1157070.32 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + Replace HVAC system type to VRF + + + + + Other HVAC + + + + + + + + + Other + + + + Entire building + Replace HVAC system type to PZHP + 0 + 15 + 295865.51999999996 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + Replace HVAC system type to PZHP + + + + + Fan + + + + + + + + + Replace with higher efficiency + + + + Entire building + Replace with higher efficiency + 0 + 15 + 746609.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Air Distribution + + + + + + + + + Improve ventilation fans + + + + Entire building + Improve ventilation fans + 0 + 4 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + Install demand control ventilation + 0 + 10 + 22919.16 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Air Distribution + + + + + + + + + Add or repair economizer + + + + Entire building + Add or repair economizer + 0 + 12 + 55561.600000000006 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Heat Recovery + + + + + + + + + Add energy recovery + + + + Entire building + Add energy recovery + 0 + 14 + 314617.56 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Domestic Hot Water + + + + + + + + + Add pipe insulation + + + + Entire building + Add pipe insulation + 0 + 12 + 9723.28 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Domestic Hot Water + + + + + + + + + Add recirculating pumps + + + + Entire building + Add recirculating pumps + 0 + 15 + 12501.359999999999 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + Water Use + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + Install low-flow faucets and showerheads + 0 + 10 + 69452.0 + 0 + 0 + true + Proposed + + + OpenStudioMeasureName + TBD + + + + + + + + + + + + + + + + + + 123 + + + + + 10.5 + 1000 + + + + + + + + + + Portfolio Manager + + + + + 9.7 + + + + + Baseline + + + + + + + + + + LED Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Electric_Appliance_30%_Reduction Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Air_Seal_Infiltration_30%_More_Airtight Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Cooling_System_SEER 14 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Heating_System_Efficiency_0.93 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add daylight controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add occupancy sensors Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install plug load controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase wall insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Insulate thermal bypasses Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase roof insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase ceiling insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add window films Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Upgrade operating protocols calibration and-or sequencing Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace or upgrade water heater Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace ice-refrigeration equipment with high efficiency units Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace windows Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace boiler Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace HVAC with GSHP and DOAS Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + VRF with DOAS Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace HVAC system type to PZHP Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace with higher efficiency Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Improve ventilation fans Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install demand control ventilation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add or repair economizer Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add energy recovery Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add pipe insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add recirculating pumps Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install low-flow faucets and showerheads Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + + + 2019-05-01 + Site Visit + + + Level 1: Walk-through + + + + + + + + + + + + + + + Direct metering + an utility + + 0123456 + + + + + + + + + a contact person + + + + + diff --git a/spec/files/v2.7.0/building_151_n1.xml b/spec/files/v2.7.0/building_151_n1.xml new file mode 100644 index 0000000..40b71ea --- /dev/null +++ b/spec/files/v2.7.0/building_151_n1.xml @@ -0,0 +1,1489 @@ + + + + + + + + + + 123 Main St + + + San Francisco + CA + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 151 + + + + Assessor parcel number + PN 123 + + + Custom + Custom ID 1 + 151 + + + Custom + City Custom Building ID + 151 + + + Retail + 1 + 0 + + + Gross + 69452 + + + Heated and Cooled + 69452 + + + Footprint + 73872.6457 + + + 3.6732677131179763 + 1325 + 1954 + 2003 + + + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + TBD + Retrofit with light emitting diode technologies + 0 + 12 + 267390.2 + 0 + 0 + true + Proposed + + + Plug Load + + + + + + + + + Replace with ENERGY STAR rated + + + + Entire building + TBD + Replace with ENERGY STAR rated + 0 + 9 + 35420.520000000004 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Air seal envelope + + + + Entire building + TBD + Air seal envelope + 0 + 11 + 162517.68 + 0 + 0 + true + Proposed + + + Cooling System + + + + + + + + + Replace package units + + + + Entire building + TBD + Replace package units + 0 + 15 + 290309.36 + 0 + 0 + true + Proposed + + + Heating System + + + + + + + + + Replace burner + + + + Entire building + TBD + Replace burner + 0 + 20 + 61812.28 + 0 + 0 + true + Proposed + + + Lighting + + + + + + + + + Add daylight controls + + + + Entire building + TBD + Add daylight controls + 0 + 8 + 36809.560000000005 + 0 + 0 + true + Proposed + + + Lighting + + + + + + + + + Add occupancy sensors + + + + Entire building + TBD + Add occupancy sensors + 0 + 8 + 107650.6 + 0 + 0 + true + Proposed + + + Plug Load + + + + + + + + + Install plug load controls + + + + Entire building + TBD + Install plug load controls + 0 + 6 + 56950.64 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Increase wall insulation + + + + Entire building + TBD + Increase wall insulation + 0 + 20 + 113206.76 + 0 + 0 + true + Proposed + + + Wall + + + + + + + + + Insulate thermal bypasses + + + + Entire building + TBD + Insulate thermal bypasses + 0 + 20 + 69452.0 + 0 + 0 + true + Proposed + + + Roof + + + + + + + + + Increase roof insulation + + + + Entire building + TBD + Increase roof insulation + 0 + 20 + 1004275.92 + 0 + 0 + true + Proposed + + + Ceiling + + + + + + + + + Increase ceiling insulation + + + + Entire building + TBD + Increase ceiling insulation + 0 + 20 + 185436.84 + 0 + 0 + true + Proposed + + + Fenestration + + + + + + + + + Add window films + + + + Entire building + TBD + Add window films + 0 + 10 + 69452.0 + 0 + 0 + true + Proposed + + + General Controls and Operations + + + + + + + + + Upgrade operating protocols, calibration, and/or sequencing + + + + Entire building + TBD + Upgrade operating protocols, calibration, and/or sequencing + 0 + 11 + 347.26 + 0 + 0 + true + Proposed + + + Domestic Hot Water + + + + + + + + + Replace or upgrade water heater + + + + Entire building + TBD + Replace or upgrade water heater + 0 + 10 + 11806.84 + 0 + 0 + true + Proposed + + + Refrigeration + + + + + + + + + Replace ice/refrigeration equipment with high efficiency units + + + + Entire building + TBD + Replace ice/refrigeration equipment with high efficiency units + 0 + 12 + 135431.4 + 0 + 0 + true + Proposed + + + Fenestration + + + + + + + + + Replace windows + + + + Entire building + TBD + Replace windows + 0 + 20 + 154877.96 + 0 + 0 + true + Proposed + + + Heating System + + + + + + + + + Replace boiler + + + + Entire building + TBD + Replace boiler + 0 + 20 + 65979.4 + 0 + 0 + true + Proposed + + + Other HVAC + + + + + + + + + Replace AC and heating units with ground coupled heat pump systems + + + + Entire building + TBD + Replace AC and heating units with ground coupled heat pump systems + 0 + 15 + 972328.0 + 0 + 0 + true + Proposed + + + Other HVAC + + + + + + + + + Other + + + + Entire building + Replace HVAC system type to VRF + VRF with DOAS + 0 + 10 + 1157070.32 + 0 + 0 + true + Proposed + + + Other HVAC + + + + + + + + + Other + + + + Entire building + Replace HVAC system type to PZHP + Replace HVAC system type to PZHP + 0 + 15 + 295865.51999999996 + 0 + 0 + true + Proposed + + + Fan + + + + + + + + + Replace with higher efficiency + + + + Entire building + TBD + Replace with higher efficiency + 0 + 15 + 746609.0 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Improve ventilation fans + + + + Entire building + TBD + Improve ventilation fans + 0 + 4 + 69452.0 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Install demand control ventilation + + + + Entire building + TBD + Install demand control ventilation + 0 + 10 + 22919.16 + 0 + 0 + true + Proposed + + + Air Distribution + + + + + + + + + Add or repair economizer + + + + Entire building + TBD + Add or repair economizer + 0 + 12 + 55561.600000000006 + 0 + 0 + true + Proposed + + + Heat Recovery + + + + + + + + + Add energy recovery + + + + Entire building + TBD + Add energy recovery + 0 + 14 + 314617.56 + 0 + 0 + true + Proposed + + + Domestic Hot Water + + + + + + + + + Add pipe insulation + + + + Entire building + TBD + Add pipe insulation + 0 + 12 + 9723.28 + 0 + 0 + true + Proposed + + + Domestic Hot Water + + + + + + + + + Add recirculating pumps + + + + Entire building + TBD + Add recirculating pumps + 0 + 15 + 12501.359999999999 + 0 + 0 + true + Proposed + + + Water Use + + + + + + + + + Install low-flow faucets and showerheads + + + + Entire building + TBD + Install low-flow faucets and showerheads + 0 + 10 + 69452.0 + 0 + 0 + true + Proposed + + + + + + + Baseline + + + + + + + + + + LED Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Electric_Appliance_30%_Reduction Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Air_Seal_Infiltration_30%_More_Airtight Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Cooling_System_SEER 14 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Heating_System_Efficiency_0.93 Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add daylight controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add occupancy sensors Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install plug load controls Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase wall insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Insulate thermal bypasses Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase roof insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Increase ceiling insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add window films Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Upgrade operating protocols calibration and-or sequencing Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace or upgrade water heater Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace ice-refrigeration equipment with high efficiency units Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace windows Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace boiler Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace HVAC with GSHP and DOAS Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + VRF with DOAS Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace HVAC system type to PZHP Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Replace with higher efficiency Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Improve ventilation fans Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install demand control ventilation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add or repair economizer Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add energy recovery Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add pipe insulation Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Add recirculating pumps Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + Install low-flow faucets and showerheads Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + + + + + diff --git a/spec/files/v2.7.0/building_151_no_measures.xml b/spec/files/v2.7.0/building_151_no_measures.xml new file mode 100644 index 0000000..59d36b3 --- /dev/null +++ b/spec/files/v2.7.0/building_151_no_measures.xml @@ -0,0 +1,125 @@ + + + + + + + + + + 123 Main St + + + San Francisco + CA + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 151 + + + + Assessor parcel number + PN 123 + + + Custom + Custom ID 1 + 151 + + + Custom + City Custom Building ID + 151 + + + Retail + 1 + 0 + + + Gross + 69452 + + + Heated and Cooled + 69452 + + + Footprint + 73872.6457 + + + 3.6732677131179763 + 1325 + 1954 + 2003 + + + Space function + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + + + Baseline + + + + + + + + + + + + + + diff --git a/spec/files/v2.7.0/building_151_one_scenario.xml b/spec/files/v2.7.0/building_151_one_scenario.xml new file mode 100644 index 0000000..0cacb7c --- /dev/null +++ b/spec/files/v2.7.0/building_151_one_scenario.xml @@ -0,0 +1,172 @@ + + + + + + + + + 123 Main St + + + San Francisco + CA + 94114 + + + + 3C + + + Climate Zone 3 + + + 724940 + USA_CA_San.Francisco.Intl.AP + -122.42768558472727 + 37.76937674999205 + Unknown + + + Building 151 + + + + Assessor parcel number + PN 123 + + + Custom + Custom ID 1 + 151 + + + Custom + City Custom Building ID + 151 + + + Retail + 1 + 0 + + + Gross + 69452 + + + Heated and Cooled + 69452 + + + Footprint + 73872.6457 + + + 3.6732677131179763 + 1325 + 1954 + 2003 + + + Retail + + + 40.0 + Hours per week + + + 50.0 + Weeks per year + + + + + Gross + 69452 + + + Tenant + 69452 + + + Common + 0.0 + + + + + + + + + + + Lighting + + + + + + + + + Retrofit with light emitting diode technologies + + + + Entire building + TBD + Retrofit with light emitting diode technologies + 0 + 12 + 267390.2 + 0 + 0 + true + Proposed + + + + + + + Baseline + + + + + + + + + + LED Only + + + + + + + + + + + + + + + + Recommendation Category + Potential Capital Recommendations + + + + + + + + + \ No newline at end of file diff --git a/spec/files/v2.7.0/example-smalloffice-level1.xml b/spec/files/v2.7.0/example-smalloffice-level1.xml new file mode 100644 index 0000000..a4eb3d4 --- /dev/null +++ b/spec/files/v2.7.0/example-smalloffice-level1.xml @@ -0,0 +1,1002 @@ + + + + + + + + + Small Office Prototype + Here we record general problems / issues identified in a walkthrough survey. +
+ + + 4055 Brooks Street + + + Missoula + MT + 59804 +
+ Commercial + Office + + 1 + 0 + 1 + 0 + false + + + Gross + 5500.000000 + + + Conditioned + 5500.000000 + + + 2006 + 2006 + 2006 + +
+ Space function + Office + Office + + + Peak total occupants + 31.000000 + + + + + 40.000000 + Hours per week + + + 50.000000 + Weeks per year + + + + + Gross + 5500.000000 + + + Conditioned + 5500.000000 + + +
+
+
+
+
+
+ + + + Packaged Rooftop Heat Pump + +
+ +
+
+
+ + Packaged Rooftop Heat Pump + +
+ +
+
+
+ + Packaged Rooftop Heat Pump + +
+ +
+
+
+ + Packaged Rooftop Heat Pump + +
+ +
+
+
+ + Packaged Rooftop Heat Pump + +
+ +
+
+
+
+ + + + + T8 + + + Standard Electronic + +
+ +
+
+
+
+ + + 0.630000 + +
+ +
+
+
+
+
+ + + + + + + + + + Lighting + + + + Retrofit with light emitting diode technologies + + + + This measure is designed to replace all fluorescent bulbs with LEDs + + + + + + + + + + + + + + Fan + + + + Add VSD motor controller + + + + This measure is designed to retrofit all RTU fans with a VSD + + + + + + + + + + + + + + + + Electricity + This is required for L1 to document irregularities in monthly energy patterns (Std 211 6.1.2.1.j). No irregularities found. + kWh + All end uses + 68516.730000 + 234.000000 + + + + + + + + + + + + + + + kW + 21.120000 + 21.120000 + 5304.000000 + + + + + + Natural gas + No irregularities in monthly energy consumption found. + MMBtu + All end uses + 17.160000 + 17.160000 + + + + + + + + + + + + + + + 91.630000 + + + + + + + + Total + Energy + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 6792.890000 + + + + Total + Energy + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 5841.750000 + + + + Total + Energy + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 6025.190000 + + + + Total + Energy + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 4985.300000 + + + + Total + Energy + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 5184.040000 + + + + Total + Energy + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 5358.550000 + + + + Total + Energy + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 5755.670000 + + + + Total + Energy + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 5981.780000 + + + + Total + Energy + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 5401.940000 + + + + Total + Energy + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 5225.840000 + + + + Total + Energy + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 5672.150000 + + + + Total + Energy + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 6291.630000 + + + + Total + Energy + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 5.700000 + + + + Total + Energy + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 4.010000 + + + + Total + Energy + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 0.580000 + + + + Total + Energy + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 0.400000 + + + + Total + Energy + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 0.020000 + + + + Total + Energy + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 0.000000 + + + + Total + Energy + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 0.000000 + + + + Total + Energy + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 0.000000 + + + + Total + Energy + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 0.000000 + + + + Total + Energy + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 0.010000 + + + + Total + Energy + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 0.360000 + + + + Total + Energy + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 6.080000 + + + + Peak + Power + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 15.420000 + + + + Peak + Power + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 15.500000 + + + + Peak + Power + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 16.250000 + + + + Peak + Power + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 16.650000 + + + + Peak + Power + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 18.560000 + + + + Peak + Power + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 20.010000 + + + + Peak + Power + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 20.820000 + + + + Peak + Power + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 21.120000 + + + + Peak + Power + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 20.420000 + + + + Peak + Power + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 20.080000 + + + + Peak + Power + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 17.400000 + + + + Peak + Power + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 16.300000 + + + + Cost + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 520.480000 + + + + Cost + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 451.530000 + + + + Cost + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 464.830000 + + + + Cost + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 389.430000 + + + + Cost + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 403.840000 + + + + Cost + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 416.490000 + + + + Cost + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 445.290000 + + + + Cost + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 461.680000 + + + + Cost + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 419.640000 + + + + Cost + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 406.870000 + + + + Cost + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 439.230000 + + + + Cost + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 484.140000 + + + + Cost + Cost + 2019-01-01T00:00:00 + 2019-02-01T00:00:00 + Month + 30.440000 + + + + Cost + Cost + 2019-02-01T00:00:00 + 2019-03-01T00:00:00 + Month + 21.410000 + + + + Cost + Cost + 2019-03-01T00:00:00 + 2019-04-01T00:00:00 + Month + 3.100000 + + + + Cost + Cost + 2019-04-01T00:00:00 + 2019-05-01T00:00:00 + Month + 2.140000 + + + + Cost + Cost + 2019-05-01T00:00:00 + 2019-06-01T00:00:00 + Month + 0.110000 + + + + Cost + Cost + 2019-06-01T00:00:00 + 2019-07-01T00:00:00 + Month + 0.000000 + + + + Cost + Cost + 2019-07-01T00:00:00 + 2019-08-01T00:00:00 + Month + 0.000000 + + + + Cost + Cost + 2019-08-01T00:00:00 + 2019-09-01T00:00:00 + Month + 0.000000 + + + + Cost + Cost + 2019-09-01T00:00:00 + 2019-10-01T00:00:00 + Month + 0.000000 + + + + Cost + Cost + 2019-10-01T00:00:00 + 2019-11-01T00:00:00 + Month + 0.050000 + + + + Cost + Cost + 2019-11-01T00:00:00 + 2019-12-01T00:00:00 + Month + 1.920000 + + + + Cost + Cost + 2019-12-01T00:00:00 + 2020-01-01T00:00:00 + Month + 32.470000 + + + + + + 250953.500000 + 45.600000 + 759011.900000 + 138.000000 + 250953.500000 + 45.600000 + 250.953500 + 0.000000 + 0.000000 + 0.000000 + 5395.000000 + 0.980000 + + + + + + + + + 2021-03-24 + + + Portfolio Manager + 2019 + 56.000000 + + + + + 274825.000000 + 50.000000 + + + + + + + + + + + + + 67181.500000 + 931 + 70.000000 + + + + + 207643.500000 + 37.800000 + 4451.510000 + 0.810000 + + + + + + + + + + + Capital + + Low + Medium + Medium + High + Medium + + + + + + + + + + + + Capital + + Low + Medium + Medium + High + Medium + + + + + + + + + + + + + Capital + + Low + Medium + Medium + High + Medium + + + + + + + + + + + + + + --01-01 + --01-01 + --01-01 + --01-01 + 0.072500 + 0.000000 + + + + + https://missoulaelectric.com/member-care/billing-payment/rates/ + 28.000000 + + + 12692 + Missoula Electric Cooperative + some-account-number + + + + + + + + + --01-01 + --01-01 + 5.500000 + + + + + https://naturalgaslocal.com/states/montana/missoula/ + + + NorthWestern Energy + some-other-account-number + + + + + + + + + + + + + + Owner + + The dude + Some big company + + + the.dude@somebigco.net + + + + + + Energy Auditor + + The lady + Auditeers + + + the.lady@the-three-auditeers.com + + + + +
+
+
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..b412f10 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,18 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* +require 'bundler/setup' + +RSpec.configure do |config| + # Enable flags like --only-failures and --next-failure + config.example_status_persistence_file_path = '.rspec_status' + + # Disable RSpec exposing methods globally on `Module` and `main` + config.disable_monkey_patching! + + config.expect_with :rspec do |c| + c.syntax = :expect + end +end \ No newline at end of file diff --git a/spec/tests/integration/write_and_run_osws_spec.rb b/spec/tests/integration/write_and_run_osws_spec.rb new file mode 100644 index 0000000..2c7904a --- /dev/null +++ b/spec/tests/integration/write_and_run_osws_spec.rb @@ -0,0 +1,64 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* +require 'BOSS/constants' +require 'BOSS/boss' + +SPEC_FILES_DIR = File.expand_path('../../files', __dir__) +SPEC_OUTPUT_DIR = File.expand_path('../../output', __dir__) + +test_configs = [ + # file_name, standard, epw_path, schema_version + ['179D_Example_Building.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['BETTER-1.0.0_SampleOffice_gemtest.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['building_151.xml', ASHRAE90_1, nil, 'v2.7.0'], + #['BuildingEQ-1.0.0_gemtest.xml', ASHRAE90_1, nil, 'v2.7.0'], # this file errors with the following: [openstudio.model.Model] The run did not finish and had following errors: SizeAirLoopBranches: AirLoopHVAC ZONE MIDRISEAPARTMENT CORRIDOR B END_A - STORY B1 PSZ-AC has air flow less than 1.0000E-003 m3/s. + ['BuildingEQ-1.0.0.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Chula_Vista_ASHRAE_L1_Example_Building.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Demo_ASHRAE_L2_Example_Building.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Example_ASHRAE_L2_Report_-_with_Energy_Use_Data_2.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Example_ASHRAE_L2_Report_-_with_Energy_Use_Data.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Example_ASHRAE_L2_Report.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Example_HOMES_Template_Building.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Example_NYC_Energy_Efficiency_Report_Property_2.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Example_San_Francisco_Audit_Report.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['example-smalloffice-level1.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Golden Test File.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['L100_Audit-1.0.0_and_BSyncr-1.0.0.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['L100_Audit-1.0.0.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['L100_Pre-Simulation-1.0.0.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['NYC_BBL_AT_Demo_Property.xml', ASHRAE90_1, nil, 'v2.7.0'], + ['Reference-PrimarySchool-L100-Audit.xml', ASHRAE90_1, nil, 'v2.7.0'], +] + +RSpec.describe 'BOSS' do + describe 'boss should' do + test_configs.each do |test_config| + (file_name, standard, epw_path, schema_version) = test_config + + it "write and run baseline osw. File: #{file_name}, Standard: #{standard}, EPW_Path: #{epw_path}, File Schema Version: #{schema_version}" do + # Set Up + xml_path = File.join(SPEC_FILES_DIR, schema_version, file_name) + output_path = File.join(SPEC_OUTPUT_DIR, schema_version, "write_and_run_baseline_osw" , "#{File.basename(xml_path, File.extname(xml_path))}") + puts output_path + + boss = BOSS::Boss.new(xml_path, output_path, epw_path, standard) + + # Action + boss.write_baseline_osw + boss.run_baseline_osw + + # Assertion + puts output_path + expect(File.exist?(output_path + "/baseline")).to be true + expect(File.exist?(output_path + "/baseline/out.osw")).to be true + out_osw = File.read(output_path + "/baseline/out.osw") + out_osw = JSON.parse(out_osw, symbolize_names: true) + expect(out_osw[:completed_status]).to eq "Success" + end + + end + end +end diff --git a/spec/tests/unit/buildingsync_reader_spec.rb b/spec/tests/unit/buildingsync_reader_spec.rb new file mode 100644 index 0000000..2455081 --- /dev/null +++ b/spec/tests/unit/buildingsync_reader_spec.rb @@ -0,0 +1,458 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Energy Innovation, LLC. +# BuildingSync(R), Copyright (c) Alliance for Energy Innovation, LLC. +# See also https://github.com/BuildingSync/BOSS/blob/develop/LICENSE.md +# ******************************************************************************* +require 'tempfile' +require 'BOSS/buildingsync_reader/buildingsync_reader' + +def wrap_in_site(xml) + return """ + + + + + + #{xml} + + + + + + """ +end + +RSpec.describe 'BuildingSyncReader' do + describe 'get_climate_zone should' do + it "get from site" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + + 3C + + + Climate Zone 3 + + + + + + + """ + ) + + # Action + ashrae_buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + ca_buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, CA_TITLE24) + ashrae_climate_zone = ashrae_buidingsync_reader.get_climate_zone + ca_climate_zone = ca_buidingsync_reader.get_climate_zone + + # Assert + expect(ashrae_climate_zone).to eq "ASHRAE 169-2013-3C" + expect(ca_climate_zone).to eq "CEC T24-CEC3" + end + + it "get from building" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + + + + 3C + + + Climate Zone 3 + + + + + """ + ) + + # Action + ashrae_buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + ca_buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, CA_TITLE24) + ashrae_climate_zone = ashrae_buidingsync_reader.get_climate_zone + ca_climate_zone = ca_buidingsync_reader.get_climate_zone + + # Assert + expect(ashrae_climate_zone).to eq "ASHRAE 169-2013-3C" + expect(ca_climate_zone).to eq "CEC T24-CEC3" + end + + it "return nil" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + + + + """ + ) + + # Action + ashrae_buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + ca_buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, CA_TITLE24) + ashrae_climate_zone = ashrae_buidingsync_reader.get_climate_zone + ca_climate_zone = ca_buidingsync_reader.get_climate_zone + + # Assert + expect(ashrae_climate_zone).to eq nil + expect(ca_climate_zone).to eq nil + end + end + + describe 'get_epw_file_path should' do + it "get from city sate" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + +
+ San Francisco + CA +
+
+
+ """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + epw_file_path = buidingsync_reader.get_epw_file_path + + # Assert + expect(File.basename(epw_file_path)).to eq "USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw" + end + + it "get from climate zone" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + + + + 3C + + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + epw_file_path = buidingsync_reader.get_epw_file_path + + # Assert + expect(File.basename(epw_file_path)).to eq "USA_CA_San.Deigo-Brown.Field.Muni.AP.722904_TMY3.epw" + end + + it "return nil" do + end + end + + describe 'get_city_state should' do + it "get from building" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + +
+ San Francisco + CA +
+
+
+ """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + city, state = buidingsync_reader.get_city_state + + # Assert + expect([city, state]).to eq ["San Francisco", "CA"] + end + + it "get from site" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ +
+ San Francisco + CA +
+ + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + city, state = buidingsync_reader.get_city_state + + # Assert + expect([city, state]).to eq ["San Francisco", "CA"] + end + + it "return nil" do + # Set Up + doc = REXML::Document.new wrap_in_site( + """ + + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + city, state = buidingsync_reader.get_city_state + + # Assert + expect([city, state]).to eq [nil, nil] + end + end + + describe 'get_building_type_and_bar_division_method should' do + end + + describe 'get_total_floor_area should' do + end + + describe 'get_floor_above_grade should' do + end + + describe 'get_floor_below_grade should' do + end + + describe 'get_floor_below_grade should' do + end + + describe 'get_built_year should' do + end + + describe 'get_standard_template should' do + end + + describe 'get_floor_to_floor_height should' do + end + + describe 'get_aspect_ratio should' do + end + + describe 'get_principal_HVAC_system_type should' do + end + + describe 'get_total_installed_power should' do + def wrap_in_systems(xml) + return """ + + + + + + + + + #{xml} + + + + + """ + end + + it "sum InstalledPower" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + + + 2 + + + 3 + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_installed_power).to eq 5 + end + + it "return nil if any LightingSystem has nil InstalledPower" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + + + 2 + + + 3 + + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_installed_power).to eq nil + end + + it "return nil if no LightingSystems" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_installed_power).to eq nil + end + + it "return nil if no InstalledPower" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + + + + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_installed_power).to eq nil + end + end + + describe 'get_total_weighted_average_load should' do + def wrap_in_systems(xml) + return """ + + + + + + + + + #{xml} + + + + + """ + end + + it "sum weighted average load" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + + + 2 + + + 3 + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_weighted_average_load).to eq 5 + end + + it "return nil if any plugload has nil WeightedAverageLoad" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + + + 2 + + + 3 + + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_weighted_average_load).to eq nil + end + + it "return nil if no plug loads" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_weighted_average_load).to eq nil + end + + it "return nil if no WeightedAverageLoad" do + # Set Up + doc = REXML::Document.new wrap_in_systems( + """ + + + + + + + """ + ) + + # Action + buidingsync_reader = BOSS::BuildingSyncReader.new(doc, nil, ASHRAE90_1) + + # Assert + expect(buidingsync_reader.get_total_weighted_average_load).to eq nil + end + end +end