sound-data / DEER-Prototypes-EnergyPlus

11 stars 4 forks source link

Prototype Models Generation System

Introduction

This repository houses the modeling system developed for transitioning DEER prototype building simulation models from DOE2-eQuest to EnergyPlus. EnergyPlus is a modern energy simulation engine with strong support from the Department of Energy and NREL. Previously, MASControl3 was used for batch simulations, but the new system employs Modelkit, a free and open-source, cross-platform framework for parametric modeling developed by Big Ladder Software. Big Ladder Software specializes in providing support for EnergyPlus.

This repository includes Modelkit files for generating EnergyPlus input files and various types of scripts. There's a script for running batch simulations for one or more measures in a specific folder. Python scripts are provided for transforming Modelkit energy consumption results into the DEER database format. Additionally, Python and SQL scripts calculate permutation-level energy savings from simulation outputs. While the current process reuses most of the scripts developed by the previous DEER Ex Ante team to manipulate MASControl3 outputs, future optimization of those scripts and the Modelkit-based modeling framework are planned.

This repository includes a template folder (templates/energyplus/templates) and a root file (prototypes/WaterHeaterModels) specifically designed for modeling water heaters in residential homes. These templates are meant to replace the DEER water heater calculator. The root file is built upon the existing one-story single-family model. Various types of water heaters, such as gas, electric, tankless, heat pump, and 120V heat pump water heaters, can be modeled and are parameterized. The default parameter values are derived from the DEER water heater calculator, online product specifications, and EnergyPlus examples.

Required Tools and Installation

To install and use the prototype energy models on Windows (instructions for Mac will be provided in the future), follow these steps:

  1. Install EnergyPlus version 9.5 (for residential prototypes) and version 22.2 (for commercial prototypes).
  2. Install Modelkit Caboodle. If Modelkit Catalyst is already installed, you may need to uninstall it before installing Modelkit Caboodle.
  3. Install Python.
  4. Install a database management software that supports PostgreSQL, such as pgAdmin4.
  5. Install Git.
  6. (Optional) Install a GUI for Git if preferred over the command line.
  7. Clone the repository to your machine using Git or your preferred tool. It's recommended to clone it as close to the (C:) drive as possible to avoid path length limit-related issues.

How to Use This Modeling Framework

To run measure cases, open a command line in one of the folders (e.g., '_SWSV001-05 Duct SealDMo') within the 'residential measures/' directory and execute the command modelkit rake. This command runs all predefined simulations in the specified directory. To run all measures in all folders within 'residential measures/' or 'commercial measures/', use the provided '_automatedrun.py' Python script located in 'scripts/'. The predefined measures are grouped by general measure group name, building type, and vintage. Each of these folders contains a set of measure cases (offerings and baselines) defined in the 'cases/' folder, per building type in 'prototypes/'. Modelkit runs all measures and stores simulation outputs (IDFs, hourly output variables, etc.) in multiple folders named after the measure case names in 'runs/' (this folder appears after simulations are complete). To exclude specific simulations based on climate or cohorts, insert the pound sign '#' in the 'skip' column of the respective 'climate.csv' or 'cohorts.csv' row for the simulations you wish to skip. A results summary file, mainly containing annual energy consumptions, is stored in 'summary-results.csv'. More detailed information about how Modelkit works and its features can be found on the developer's website.

Post-processing steps for residential measures:

Post-processing steps for commercial measures:

How to Contribute to the Project

Contributions to the project are welcome. To add new measures or fix bugs, follow these steps:

How to Add a New Measure

  1. Install the modeling framework as described above.
  2. If the proposed measure doesn't fit into any general measure categories (see folder names in 'residential measures/' or 'commercial measures/'), create a new folder with the MeasureVersionID followed by the a short version of the measure package name in one of the two directories. Refer to the DEER Prototype System User Guide on CEDARS for further folder naming, cohort naming and case naming instructions. Also please refer to DRAFT Technology ID Creation template for the naming conventions of TechIDs (the case_name of each simulation run)
  3. Within the newly created folder, create a subfolder named 'cases/'.
  4. Copy the file named 'query.txt' from any existing measure and paste it into the new folder.
  5. Create two new files in the newly created folder: 'climates.csv' and 'cohort.csv'. Populate 'cohort.csv' with necessary information about weather files and prototype buildings to be used. Additional details on preparing the cohort file are also in the User Guide.
  6. If needed, modify the prototype, root.pxt file in 'prototypes/' to define the new measure (e.g., a new HVAC system or equipment).
  7. In the 'cases/' folder, create a .csv file and provide parameter values corresponding to each measure (offerings and baselines). Each .csv file is related to a given building prototype referred to as the root file, whose path should be provided in 'cohort.csv'. Case names should coincide with Technology IDs, see the User Guide for more information.
  8. Run all the newly added measures and provide the generated 'results-summary.csv' files with your pull request for review.
  9. If the proposed measure fits within an existing general measure category, simply add it to the appropriate folder and files.
  10. Follow steps 7 and 8.

How to Fix Bugs

  1. Install the modeling framework as described above.
  2. Fix the identified bug on your local repository.
  3. Run all the existing measures and provide the generated 'results-summary.csv' files with your pull request for review.

Features to Be Added in the Future

In the future, the following features will be added or improved:

  1. Optimization of residential prototype model files to reduce the number of root files.
  2. Streamlining the data transformation process from Modelkit system outputs to the DEER database.
  3. Development of a script to produce measure permutation energy savings information in eTRM format.
  4. Reduction of the number of residential measure folders by parameterizing code fields in 'climates.csv' that vary by building type, in a separate table.
  5. Addition of the Airflow Network model to the Modelkit residential prototypes.