Skip to content

Commit 6fd249d

Browse files
approximate GEOPHIRES electricity price escalation rate to SAM
1 parent 095384f commit 6fd249d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/geophires_x/EconomicsSam.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ def _get_single_owner_parameters(model: Model) -> dict[str, Any]:
116116
ret['property_tax_rate'] = float(geophires_ptr_tenths * Decimal(100))
117117

118118
ret['ppa_price_input'] = [econ.ElecStartPrice.value]
119+
# Approximation of GEOPHIRES rate model into SAM's percent inflation model (TODO - could probably be improved)
120+
ppa_escalation_rate_percent = round(econ.ElecEscalationRate.value / econ.ElecStartPrice.value * 0.745 * 100.0)
121+
ret['ppa_escalation'] = ppa_escalation_rate_percent
119122

120123
# Debt/equity ratio ('Fraction of Investment in Bonds' parameter)
121124
ret['debt_percent'] = econ.FIB.quantity().to(convertible_unit('%')).magnitude

0 commit comments

Comments
 (0)