Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cfrontin committed Aug 9, 2023
1 parent 252f2ff commit 34adb51
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions hopp/eco/finance.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,11 +497,11 @@ def run_profast_lcoe(
% (design_scenario["id"]),
show_plot=show_plots,
)
# pf.plot_capital_expenses(
# fileout="figures/wind_only/capital_expense_only_%i.png"
# % (design_scenario["id"]),
# show_plot=show_plots,
# )
pf.plot_capital_expenses(
fileout="figures/wind_only/capital_expense_only_%i.png"
% (design_scenario["id"]),
show_plot=show_plots,
)
pf.plot_cashflow(
fileout="figures/wind_only/cash_flow_wind_only_%i.png"
% (design_scenario["id"]),
Expand Down Expand Up @@ -735,15 +735,15 @@ def run_profast_grid_only(
if not os.path.exists(savepath):
os.mkdir(savepath)

# pf.plot_capital_expenses(
# fileout="figures/capex/capital_expense_grid_only_%i.pdf" % (design_scenario["id"]),
# show_plot=show_plots,
# )
# pf.plot_cashflow(
# fileout="figures/annual_cash_flow/cash_flow_grid_only_%i.png"
# % (design_scenario["id"]),
# show_plot=show_plots,
# )
pf.plot_capital_expenses(
fileout="figures/capex/capital_expense_grid_only_%i.pdf" % (design_scenario["id"]),
show_plot=show_plots,
)
pf.plot_cashflow(
fileout="figures/annual_cash_flow/cash_flow_grid_only_%i.png"
% (design_scenario["id"]),
show_plot=show_plots,
)

pf.cash_flow_out_table.to_csv("data/cash_flow_grid_only_%i.csv" % (design_scenario["id"]))

Expand Down Expand Up @@ -1163,15 +1163,15 @@ def run_profast_full_plant_model(
if not os.path.exists(savepath):
os.mkdir(savepath)

# pf.plot_capital_expenses(
# fileout="figures/capex/capital_expense_%i.pdf" % (design_scenario["id"]),
# show_plot=show_plots,
# )
# pf.plot_cashflow(
# fileout="figures/annual_cash_flow/cash_flow_%i.png"
# % (design_scenario["id"]),
# show_plot=show_plots,
# )
pf.plot_capital_expenses(
fileout="figures/capex/capital_expense_%i.pdf" % (design_scenario["id"]),
show_plot=show_plots,
)
pf.plot_cashflow(
fileout="figures/annual_cash_flow/cash_flow_%i.png"
% (design_scenario["id"]),
show_plot=show_plots,
)

pf.cash_flow_out_table.to_csv("data/cash_flow_%i.csv" % (design_scenario["id"]))

Expand Down

0 comments on commit 34adb51

Please sign in to comment.