Skip to content

Commit 85a7594

Browse files
Add DH code TODO re: NREL#383
1 parent 243e1fa commit 85a7594

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/geophires_x/Economics.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2381,8 +2381,11 @@ def Calculate(self, model: Model) -> None:
23812381
if self.ccplantfixed.Valid:
23822382
self.Cplant.value = self.ccplantfixed.value
23832383
else:
2384+
# 1.15 for 15% contingency and 1.12 for 12% indirect costs
2385+
# TODO https://github.com/NREL/GEOPHIRES-X/issues/383?title=Parameterize+indirect+cost+factor
23842386
self.Cplant.value = 1.12 * 1.15 * self.ccplantadjfactor.value * 250E-6 * np.max(
2385-
model.surfaceplant.HeatExtracted.value) * 1000. # 1.15 for 15% contingency and 1.12 for 12% indirect costs
2387+
model.surfaceplant.HeatExtracted.value) * 1000.
2388+
23862389
self.peakingboilercost.value = 65 * model.surfaceplant.max_peaking_boiler_demand.value / 1000 # add 65$/KW for peaking boiler
23872390
self.Cplant.value += self.peakingboilercost.value # add peaking boiler cost to surface plant cost
23882391

0 commit comments

Comments
 (0)