File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -2381,8 +2381,11 @@ def Calculate(self, model: Model) -> None:
2381
2381
if self .ccplantfixed .Valid :
2382
2382
self .Cplant .value = self .ccplantfixed .value
2383
2383
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
2384
2386
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
+
2386
2389
self .peakingboilercost .value = 65 * model .surfaceplant .max_peaking_boiler_demand .value / 1000 # add 65$/KW for peaking boiler
2387
2390
self .Cplant .value += self .peakingboilercost .value # add peaking boiler cost to surface plant cost
2388
2391
You can’t perform that action at this time.
0 commit comments