Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
9 changes: 9 additions & 0 deletions hhw_brick/applications/boiler_cyc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Boiler Short Cycling Analysis App

## Overview

This application identifies whether boiler is short cycling

## License

Part of the HHW Brick package.
18 changes: 18 additions & 0 deletions hhw_brick/applications/boiler_cyc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"""
Boiler Short Cycling Analysis Application

Analyzes boiler system data to identify short cycling behavior based on supply and return temperature or boiler firing rate.


Author: Aoyu Zou
"""

from .app import qualify, run_hwst_analysis, run_fire_analysis, load_config

__all__ = ["qualify", "run_hwst_analysis", "run_fire_analysis", "load_config"]

# Application metadata
__app_name__ = "boiler_cyc"
__version__ = "1.0.0"
__description__ = "Boiler System Cycle Analysis"
__author__ = "HHW Brick"
Loading
Loading