Net Present Value and LCOE Equations
This page documents the main equations used in the geothermal economics calculations, as implemented in EconomicsCalculator.compute_economics().
Net Present Value (NPV)
The Net Present Value (NPV) is the sum of all discounted net revenues over the project lifetime:
where:
- \(\mathrm{DR}(t)\) is the discounted revenue for each year \(t\)
- \(\mathrm{NR}(t)\) is the net revenue in year \(t\)
- \(r\) is the discount rate
- \(t\) is the year index
Net Revenue
Net revenue is calculated as:
where:
- the gross revenue is calculated as \(\mathrm{GR}(t) = \mathrm{I}(t) - \mathrm{C}(t)\)
- the tax is calculated as \(\mathrm{T}(t) = \max(\mathrm{TGR}(t), 0) \cdot \mathrm{T_r}\)
- \(\mathrm{T_r}\) is the tax rate
- and the taxable gross revenue is calculated as \(\mathrm{TGR}(t) = \mathrm{I}(t) - \mathrm{C_{tax}}(t)\)
Income
The income is based on the produced energy and the heat price (with possible subsidy):
where:
- \(\mathrm{E_{p,w}}(t)\) is the total effective energy contained in produced water
- \(\mathrm{HP}(t)\) is either the feed-in price or the regular price, depending on the subsidy period
Costs
Total costs
Total costs are the sum of electricity cost, OPEX, loan payments, and equity:
where:
- Electricity costs, \(\mathrm{C_{elec}}(t)\), are defined below
- Operational costs, \(\mathrm{C_{opex}}(t)\), are defined below
and interest \(\mathrm{IP}(t)\) and principal \(\mathrm{PP}(t)\) payments are calculated using standard annuity formulas (based on the size of the loan \(L\), the loan rate \(L_{rate}\), and number of loan years \(L_{year}\)).
and equity is defined as
where \(\mathrm{C_{capex,tot}}\) is the total CAPEX costs and \(\mathrm{Eq}_{\text{share}}\) is the equity share (%) and the loan is defined as
Taxable costs include depreciation:
Capital Expenditure (CAPEX)
The CAPEX is calculated in steps:
where:
- \(\mathrm{C_{capex,b}}\) is the base capital expenditure for the project,
- \(\mathrm{C_{capex,v}}\) is the variable capital expenditure per installed kW,
- \(\mathrm{P_{i}}(0)\) is the installed power capacity at the start of the project.
The total CAPEX including well costs, contingency, and pump costs is:
where:
- \(\mathrm{C_{wells}}\) is the total cost of all wells,
- \(\mathrm{C_{capex,c}}\) is the contingency fraction,
- \(N_{\text{wi}}\) is the number of injection wells,
- \(\mathrm{C_{pump}}\) is the cost per pump.
The CAPEX is assigned to the first year in the cashflow.
Electricity Cost
where:
- \(\mathrm{E_{c,inj}}(t)\) is the energy required to operate the injection pump per well [GJ]
- \(\mathrm{E_{c,prd}}(t)\) is the energy required to operate the production pump per well [GJ]
- \(\mathrm{i_r}\) is the inflation rate
Depreciation
Depreciation is linear over the depreciation period:
Fully Expanded NPV Equation
Levelized Cost of Energy (LCOE)
The LCOE is the ratio of discounted costs to discounted energy output:
For further details, see the EconomicsCalculator API documentation.