Skip to main content

A Python 3 library for evaluating regressions between EnergyPlus builds.

Project description

EnergyPlus Regressions

Documentation Status Test/Package Status Flake8 Status Coverage Status

Overview

This library provides tools for performing regressions between EnergyPlus builds. Developers often propose changes to EnergyPlus for:

  • New feature development
  • Defect repair
  • Refactoring for structure or performance

When a developer proposes these changes, those code changes must be tested prior to accepting them into the main branch. A continuous integration system runs the tests and provides results, but there can be a sometimes lengthy delay waiting on those results, depending on how busy the system is at that time. This set of tools provides a way to run these regressions locally.

Usage

This tool works on all three major platforms: Windows, Mac, and Ubuntu LTS (18.04 and 20.04). Travis runs tests on all the platforms, and it is regularly used on all three as well.

There are two ways to install this tool:

  • Download a pre-built (by Travis) binary package
    • Downloaded from the Github release page.
    • The user should not need any extra tools, including Python itself.
    • The downloaded package should be extracted and then the extracted binary should be run directly.
  • Install the library into an existing Python install from Pypi
    • Download using Pip (pip install energyplusregressiontool).
    • Obviously the user will need the existing Python install, but other dependencies are automatically installed by Pip.
    • Once installed into the Python install, there will be a binary available to run: eplus_regression_runner.

Limitations

There are a couple limitation "gotchas" in here, however. A couple statements ahead of this:

  • When we create the standalone installer, we use pyinstaller to freeze the program and all dependencies.
  • When we run EnergyPlus, we have to run in multiple processes, not just multiple threads, because of thread-unsafety within EnergyPlus itself.

There is an issue with the combination of these two things that cause the program to not work well on Windows and Mac. If you try to freeze the program but use the multiprocessing library to create child instances, it fails. There are notes on the web about how to remedy this by calling special functions at the entry of the code, but I could not get them to work fully. So for now, if you use the frozen downloadable version of the program on Windows or Mac, it will not run EnergyPlus in multiple processes.

However, if you install the library into a Python install using Pip, the program is never frozen using pyinstaller, and seems to work just fine across platforms even with multiprocessing. The best install path is to run in that fashion, but if you cannot, you can download the frozen version and just accept the single process for now.

Development

For setting up a development environment to do work on this tool, the steps are pretty minimal:

  • Install Python, if needed
  • Clone this repository (git clone https://github.com/NREL/EnergyPlusRegressionTool)
  • Install dependencies (pip3 install -r requirements.txt)

Documentation

Program documentation, including user guide and typical workflows, are available in the documentation. This documentation is written using RST with Sphinx, and published on ReadTheDocs.

Testing

Exhaustive unit tests have been added to the "underneath the hood" code, like the functions that calculate diffs and run builds. The unit tests are run on Github Actions. The GUI code is not unit tested, but tested routinely on all platforms.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

energyplus_regressions-1.9.6.tar.gz (98.3 kB view hashes)

Uploaded Source

Built Distribution

energyplus_regressions-1.9.6-py3-none-any.whl (114.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page