webber-energy-group / HOwDI

https://howdi.readthedocs.io/en/develop/
GNU General Public License v3.0
0 stars 0 forks source link

Split production inputs into thermal production and electric production #16

Closed bradenpecora closed 2 years ago

bradenpecora commented 2 years ago

Currently, the model calculates capital cost in the same way for all methods of production. However, the input term capital_usd_coefficient (m.prod_cost_capital_coeff in the model) has units of $/ton, which is not a typical parameter for describing electrolysis/other electric methods of hydrogen production.

As it stands, the current way of calculating the capital cost of a producer is

equation.

The value prod_cost_capital_coeff is known for thermal production, but it has to be calculated for electric production. The units are dollar/Ton, but for electric production, we would like dollar/kW We will calculate electric production prod_cost_capital_coeff with the following:

equation.

Where

The primary issue with the old method of calculating capital costs was that, if utilization of an electrolyzer is changed (say, in Monte Carlo simulation), the capital cost coefficient would not change accordingly. Now, for electric production, the coefficient will be a function of both the new capEx_factor_$_per_kW and utilization.

Implementation requires a few steps: