hydesign.finance.finance_hybridized_wind
Classes
Hybrid power plant financial model to estimate the overall profitability of the hybrid power plant. |
Functions
|
A function to estimate the yearly cashflow using the net revenue time series, and the yearly OPEX costs. |
Module Contents
- class hydesign.finance.finance_hybridized_wind.finance(N_limit, life_y, N_time, life_h, depreciation_yr, depreciation, depre_rate, inflation_yr, inflation, ref_yr_inflation)[source]
Bases:
openmdao.api.ExplicitComponent
Hybrid power plant financial model to estimate the overall profitability of the hybrid power plant. It considers different weighted average costs of capital (WACC) for wind, PV and battery. The model calculates the yearly cashflow as a function of the average revenue over the year, the tax rate and WACC after tax ( = weighted sum of the wind, solar, battery, and electrical infrastracture WACC). Net present value (NPV) and levelized cost of energy (LCOE) and Cost of valued energy (COVE) are then be calculated using the calculates WACC as the discount rate, as well as the internal rate of return (IRR).
- setup_partials()[source]
Declare partials.
This is meant to be overridden by component classes. All partials should be declared here since this is called after all size/shape information is known for all variables.
- compute(inputs, outputs)[source]
Calculating the financial metrics of the hybrid power plant project.
- Parameters:
price_t_ext (Electricity price time series [Eur])
hpp_t_with_deg (HPP power time series [MW])
penalty_t (penalty for not reaching expected energy productin at peak hours [Eur])
CAPEX_w (CAPEX of the wind power plant)
OPEX_w (OPEX of the wind power plant)
CAPEX_s (CAPEX of the solar power plant)
OPEX_s (OPEX of solar power plant)
CAPEX_b (CAPEX of the battery)
OPEX_b (OPEX of the battery)
CAPEX_sh (CAPEX of the shared electrical infrastracture)
OPEX_sh (OPEX of the shared electrical infrastracture)
decommissioning_cost_tot_w (Decommissioning cost of the entire PV plant)
decommissioning_cost_tot_w
wind_WACC (After tax WACC for onshore WT)
solar_WACC (After tax WACC for solar PV)
battery_WACC (After tax WACC for stationary storge li-ion batteries)
tax_rate (Corporate tax rate)
- Returns:
CAPEX (Total capital expenditure costs of the HPP)
OPEX (Operational and maintenance costs of the HPP)
NPV (Net present value)
IRR (Internal rate of return)
NPV_over_CAPEX (NPV over CAPEX)
mean_AEP (Mean annual energy production)
LCOE (Levelized cost of energy)
COVE (Cost of valued energy)
penalty_lifetime (total penalty)
- hydesign.finance.finance_hybridized_wind.calculate_NPV_IRR(delta_life, Net_revenue_t, investment_cost, maintenance_cost_per_year, capex_vector, capex_for_depreciation, tax_rate, discount_rate, depreciation_yr, depreciation, depre_rate, development_cost, decommissioning_vec, inflation_index, plot=False)[source]
A function to estimate the yearly cashflow using the net revenue time series, and the yearly OPEX costs. It then calculates the NPV and IRR using the yearly cashlow, the CAPEX, the WACC after tax, and the tax rate.
- Parameters:
delta_life (Number of years between the start of operations of the first and second plants)
Net_revenue_t (Net revenue time series)
investment_cost (Capital costs)
maintenance_cost_per_year (yearly operation and maintenance costs)
tax_rate (tax rate)
discount_rate (Discount rate)
depreciation_yr (Depreciation curve (x-axis) time in years)
depreciation (Depreciation curve at the given times)
depre_rate (Straight line depreciation rate)
development_cost (DEVEX)
decommissioning_vec (vector containing the decommissioning costs over time)
inflation_index (Yearly Inflation index time-sereis)
- Returns:
NPV (Net present value)
IRR (Internal rate of return)