Skip to content

Commit

Permalink
Merge pull request #190 from NREL/fix-bokeh-report
Browse files Browse the repository at this point in the history
Remove hardcoded path in reeds2.py
  • Loading branch information
kennedy-mindermann authored Nov 19, 2024
2 parents 5dfe19f + 12a9546 commit af0fe5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postprocessing/bokehpivot/reeds2.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
niche_techs = ['hydro','csp','geothermal','beccs','lfill-gas','biopower']
price_types = ['load','res_marg','oper_res','state_rps','nat_gen']
ccs_techs = ['gas-cc-ccs_mod_upgrade','coal-ccs_mod_upgrade','gas-cc-ccs_max_upgrade','coal-ccs_max_upgrade','gas-cc-ccs_mod','gas-cc-ccs_max','coal-ccs_mod','coal-ccs_max','coal-ccs-nsp','coal-ccs-flex','gas-cc-ccs-flex']
water_techs = pd.read_csv('/Users/jcarag/ReEDS/PSH_Updates/ReEDS-2.0/postprocessing/bokehpivot/in/reeds2/tech_ctt_wst.csv')['tech'].tolist()
water_techs = pd.read_csv(os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, 'postprocessing/bokehpivot/in/reeds2/tech_ctt_wst.csv')))['tech'].tolist()
water_techs = [x.lower() for x in water_techs]

#1. Preprocess functions for results_meta
Expand Down

0 comments on commit af0fe5a

Please sign in to comment.