Skip to content

Commit b36c453

Browse files
Use Peaking Boiler Cost per KW in SUTRAEconomics (follow-up from NREL#394)
1 parent bbea18f commit b36c453

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/geophires_x/SUTRAEconomics.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,11 @@ def Calculate(self, model: Model) -> None:
143143

144144
# Boiler
145145
self.peakingboilercost.value = (
146-
65 * model.surfaceplant.max_peaking_boiler_demand.value / self.peakingboilerefficiency.value / 1000
147-
) # add 65$/KW for peaking boiler
146+
self.peaking_boiler_cost_per_kW.quantity().to('USD/kW').magnitude
147+
* model.surfaceplant.max_peaking_boiler_demand.value
148+
/ self.peakingboilerefficiency.value
149+
/ 1000
150+
)
148151

149152
# Circulation Pump
150153
pumphp = np.max(model.wellbores.PumpingPower.value) * 1.341

0 commit comments

Comments
 (0)