-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EUSS FY25 Release 2 - Electric Resistance Boilers #255
Open
mpraprost
wants to merge
9
commits into
main
Choose a base branch
from
electric_resistance_boilers
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+71,134
−0
Open
Changes from 17 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
adfa6ba
electric boiler measure
f2e6f06
measure test
a1012fe
update options lookup
7f53ef1
add missing columns
ada1f78
Merge branch 'develop' into electric_resistance_boilers
6e02d71
Merge branch 'main' into electric_resistance_boilers
7f64a98
add another unit test
fa7dc66
add new test model
d558e76
Merge branch 'main' into electric_resistance_boilers
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
import logging | ||
|
||
import comstockpostproc as cspp | ||
|
||
|
||
logging.basicConfig(level='INFO') # Use DEBUG, INFO, or WARNING | ||
logger = logging.getLogger(__name__) | ||
|
||
def main(): | ||
# First ComStock run | ||
comstock_a = cspp.ComStock( | ||
s3_base_dir='eulp/euss_com', # If run not on S3, download results_up**.parquet manually | ||
comstock_run_name='new_sampling_154k', # Name of the run on S3 | ||
comstock_run_version='new_sampling_154k', # Use whatever you want to see in plot and folder names | ||
comstock_year=2018, # Typically don't change this | ||
athena_table_name=None, # Typically don't change this | ||
truth_data_version='v01', # Typically don't change this | ||
buildstock_csv_name='buildstock.csv', # Download buildstock.csv manually | ||
acceptable_failure_percentage=0.025, # Can increase this when testing and high failure are OK | ||
drop_failed_runs=True, # False if you want to evaluate which runs failed in raw output data | ||
color_hex='#0072B2', # Color used to represent this run in plots | ||
skip_missing_columns=True, # False if you want to ensure you have all data specified for export | ||
reload_from_csv=False, # True if CSV already made and want faster reload times | ||
include_upgrades=False # False if not looking at upgrades | ||
) | ||
|
||
# Second ComStock run | ||
# comstock_b = cspp.ComStock( | ||
# s3_base_dir='eulp/euss_com', # If run not on S3, download results_up**.parquet manually | ||
# comstock_run_name='new_sampling_154k', # Name of the run on S3 | ||
# comstock_run_version='new_sampling_154k', # Use whatever you want to see in plot and folder names | ||
# comstock_year=2018, # Typically don't change this | ||
# athena_table_name='rand_985932_20240321', # Typically same as comstock_run_name or None | ||
# truth_data_version='v01', # Typically don't change this | ||
# buildstock_csv_name='buildstock.csv', # Download buildstock.csv manually | ||
# acceptable_failure_percentage=0.025, # Can increase this when testing and high failure are OK | ||
# drop_failed_runs=True, # False if you want to evaluate which runs failed in raw output data | ||
# color_hex='#56B4E9', # Color used to represent this run in plots | ||
# skip_missing_columns=True, # False if you want to ensure you have all data specified for export | ||
# reload_from_csv=False, # True if CSV already made and want faster reload times | ||
# include_upgrades=False # False if not looking at upgrades | ||
# ) | ||
|
||
# Stock Estimation for Apportionment: | ||
stock_estimate = cspp.Apportion( | ||
stock_estimation_version='2024R2', # Only updated when a new stock estimate is published | ||
truth_data_version='v01' # Typically don't change this | ||
) | ||
|
||
# CBECS | ||
cbecs = cspp.CBECS( | ||
cbecs_year=2018, # 2012 and 2018 currently available | ||
truth_data_version='v01', # Typically don't change this | ||
color_hex='#009E73', # Color used to represent CBECS in plots | ||
reload_from_csv=False # True if CSV already made and want faster reload times | ||
) | ||
|
||
# First scale ComStock runs to the 'truth data' from StockE V3 estimates using bucket-based apportionment | ||
# Then scale both ComStock runs to CBECS 2018 AND remove non-ComStock buildings from CBECS | ||
# This is how weights in the models are set to represent national energy consumption | ||
comstock_a.add_weights_aportioned_by_stock_estimate(apportionment=stock_estimate) | ||
comstock_a.add_national_scaling_weights(cbecs, remove_non_comstock_bldg_types_from_cbecs=True) | ||
# comstock_b.add_weights_aportioned_by_stock_estimate(apportionment=stock_estimate) | ||
# comstock_b.add_national_scaling_weights(cbecs, remove_non_comstock_bldg_types_from_cbecs=True) | ||
|
||
# Export CBECS and ComStock data to wide and long formats for Tableau and to skip processing later | ||
cbecs.export_to_csv_wide() # May comment this out if CSV output isn't needed | ||
# comstock_a.create_national_aggregation() # May comment this out if CSV output isn't needed | ||
# comstock_b.create_national_aggregation() # May comment this out if CSV output isn't needed | ||
# TODO This (long CSV export) is not yet re-implemented | ||
# comstock_a.export_to_csv_long() # Long format useful for stacking end uses and fuels | ||
# comstock_b.export_to_csv_long() # Long format useful for stacking end uses and fuels | ||
|
||
# Compare multiple ComStock runs to one another and to CBECS | ||
comparison = cspp.ComStockToCBECSComparison( | ||
cbecs_list=[cbecs], | ||
comstock_list = [comstock_a], | ||
make_comparison_plots=True | ||
) | ||
|
||
# Export the comparison data to wide format for Tableau | ||
comparison.export_to_csv_wide() | ||
|
||
# Code to execute the script | ||
if __name__=="__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
import logging | ||
|
||
import comstockpostproc as cspp | ||
|
||
|
||
logging.basicConfig(level='INFO') # Use DEBUG, INFO, or WARNING | ||
logger = logging.getLogger(__name__) | ||
|
||
def main(): | ||
# ComStock run | ||
comstock = cspp.ComStock( | ||
s3_base_dir='eulp/euss_com', # If run not on S3, download results_up**.parquet manually | ||
<<<<<<< Updated upstream | ||
comstock_run_name='new_sampling_154k', # Name of the run on S3 | ||
comstock_run_version='new_sampling_154k', # Use whatever you want to see in plot and folder names | ||
======= | ||
comstock_run_name='elec_boiler_10k', # Name of the run on S3 | ||
comstock_run_version='elec_boiler_10k', # Use whatever you want to see in plot and folder names | ||
>>>>>>> Stashed changes | ||
comstock_year=2018, # Typically don't change this | ||
athena_table_name=None, # Typically don't change this | ||
truth_data_version='v01', # Typically don't change this | ||
buildstock_csv_name='buildstock.csv', # Download buildstock.csv manually | ||
<<<<<<< Updated upstream | ||
acceptable_failure_percentage=0.25, # Can increase this when testing and high failure are OK | ||
======= | ||
acceptable_failure_percentage=0.025, # Can increase this when testing and high failure are OK | ||
>>>>>>> Stashed changes | ||
drop_failed_runs=True, # False if you want to evaluate which runs failed in raw output data | ||
color_hex='#0072B2', # Color used to represent this run in plots | ||
skip_missing_columns=True, # False if you want to ensure you have all data specified for export | ||
reload_from_csv=False, # True if CSV already made and want faster reload times | ||
include_upgrades=True, # False if not looking at upgrades | ||
upgrade_ids_to_skip=[], # Use [1, 3] etc. to exclude certain upgrades | ||
make_timeseries_plots=False, | ||
states={ | ||
#'MN': 'Minnesota', # specify state to use for timeseries plots in dictionary format. State ID must correspond correctly. | ||
<<<<<<< Updated upstream | ||
'MA':'Massachusetts', | ||
======= | ||
#'MA':'Massachusetts', | ||
>>>>>>> Stashed changes | ||
#'OR': 'Oregon', | ||
#'LA': 'Louisiana', | ||
#'AZ': 'Arizona', | ||
#'TN': 'Tennessee' | ||
}, | ||
upgrade_ids_for_comparison={} # Use {'<Name you want for comparison run folder>':[0,1,2]}; add as many upgrade IDs as needed, but plots look strange over 5 | ||
) | ||
|
||
# Stock Estimation for Apportionment: | ||
stock_estimate = cspp.Apportion( | ||
stock_estimation_version='2024R2', # Only updated when a new stock estimate is published | ||
truth_data_version='v01' # Typically don't change this | ||
) | ||
|
||
# CBECS | ||
cbecs = cspp.CBECS( | ||
cbecs_year=2018, # 2012 and 2018 currently available | ||
truth_data_version='v01', # Typically don't change this | ||
color_hex='#009E73', # Color used to represent CBECS in plots | ||
reload_from_csv=False # True if CSV already made and want faster reload times | ||
) | ||
|
||
# Scale ComStock runs to the 'truth data' from StockE V3 estimates using bucket-based apportionment | ||
comstock.add_weights_aportioned_by_stock_estimate(apportionment=stock_estimate) | ||
# Scale ComStock run to CBECS 2018 AND remove non-ComStock buildings from CBECS | ||
comstock.add_national_scaling_weights(cbecs, remove_non_comstock_bldg_types_from_cbecs=True) | ||
|
||
# Export CBECS and ComStock data to wide and long formats for Tableau and to skip processing later | ||
<<<<<<< Updated upstream | ||
#cbecs.export_to_csv_wide() # May comment this out after run once | ||
comstock.create_national_aggregation() | ||
#comstock.create_geospatially_resolved_aggregations(comstock.STATE_ID, pretty_geo_col_name='state_id') | ||
#comstock.create_geospatially_resolved_aggregations(comstock.COUNTY_ID, pretty_geo_col_name='county_id') | ||
======= | ||
# cbecs.export_to_csv_wide() # May comment this out after run once | ||
# comstock.create_national_aggregation() | ||
# comstock.create_geospatially_resolved_aggregations(comstock.STATE_ID, pretty_geo_col_name='state_id') | ||
# comstock.create_geospatially_resolved_aggregations(comstock.COUNTY_ID, pretty_geo_col_name='county_id') | ||
>>>>>>> Stashed changes | ||
# TODO Long is def not working as expected anymore... | ||
# comstock.export_to_csv_long() # Long format useful for stacking end uses and fuels | ||
|
||
# Create measure run comparisons; only use if run has measures | ||
comparison = cspp.ComStockMeasureComparison(comstock, states=comstock.states, make_comparison_plots = comstock.make_comparison_plots, make_timeseries_plots = comstock.make_timeseries_plots) | ||
|
||
# Code to execute the script | ||
if __name__=="__main__": | ||
main() |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this