Skip to content

Commit

Permalink
Merge pull request #57 from EPAENERGYSTAR/feature/epa_2.0_clean_script
Browse files Browse the repository at this point in the history
cleaned multi_thermostat_driver and setup.py
  • Loading branch information
john-zither authored Jul 30, 2024
2 parents 7acdf4b + 840e56e commit 3a95a41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/multi_thermostat_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,17 @@
# Save cached weather data files? (Default: False)
SAVE_CACHE = False
CACHE_PATH = None # Replace with location to save the weather cache files (e.g. '/tmp/epathermosat')
TAU_SAVE_PATH = Path('/home/theurerjohn3/Documents/energystar/epa5/datadir/attempt1')
TAU_SAVE_PATH = Path('outputs')
TAU_SAVE_PATH.mkdir(parents=True, exist_ok=True)

# This section finds the metadata files and data files for the thermostats.
# These point to examples of the various styles of files
# In most cases you will combine Single Stage, Two Stage, and Two Stage ERT
# data in the same file.

# Single Stage
DATA_DIR = Path('../../datadir/EPA_Tau')
METADATA_FILENAME = DATA_DIR / '2019_epa_tau.csv'
DATA_DIR = Path(__file__).resolve().parents[1] / 'tests' / 'data' / 'single_stage'
METADATA_FILENAME = DATA_DIR / 'metadata.csv'

# Two Stage
# DATA_DIR = os.path.join('..', 'tests', 'data', 'two_stage')
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
'sqlalchemy<=1.4.46',
'zipcodes==1.2.0',
'matplotlib==3.4.2',
'loguru',
],
)

0 comments on commit 3a95a41

Please sign in to comment.