Skip to content

Commit 15935ec

Browse files
document .5/1,000 gallon water cost
1 parent c1e8b03 commit 15935ec

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/geophires_x/Economics.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1695,7 +1695,8 @@ def __init__(self, model: Model):
16951695
display_name='Water costs',
16961696
UnitType=Units.CURRENCYFREQUENCY,
16971697
PreferredUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR,
1698-
CurrentUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR
1698+
CurrentUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR,
1699+
ToolTipText='Assumes $3.5/1,000 gallons of water'
16991700
)
17001701
self.CCap = self.OutputParameterDict[self.CCap.Name] = OutputParameter(
17011702
Name="Total Capital Cost",
@@ -2490,6 +2491,7 @@ def Calculate(self, model: Model) -> None:
24902491
self.Coamwater.value = self.oamwaterfixed.value
24912492
else:
24922493
# here is assumed 1 l per kg maybe correct with real temp. (M$/year) 925$/ML = 3.5$/1,000 gallon
2494+
# TODO parameterize
24932495
self.Coamwater.value = self.oamwateradjfactor.value * (model.wellbores.nprod.value *
24942496
model.wellbores.prodwellflowrate.value *
24952497
model.reserv.waterloss.value * model.surfaceplant.utilization_factor.value *

src/geophires_x/SBTEconomics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@ def Calculate(self, model: Model) -> None:
640640
self.Coamwater.value = self.oamwaterfixed.value
641641
else:
642642
# here is assumed 1 l per kg maybe correct with real temp. (M$/year) 925$/ML = 3.5$/1,000 gallon
643+
# TODO parameterize
643644
self.Coamwater.value = self.oamwateradjfactor.value * (model.wellbores.nprod.value *
644645
model.wellbores.prodwellflowrate.value *
645646
model.reserv.waterloss.value * model.surfaceplant.utilization_factor.value *

src/geophires_x_schema_generator/geophires-result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@
415415
},
416416
"Water costs": {
417417
"type": "number",
418-
"description": "O&M Make-up Water costs",
418+
"description": "O&M Make-up Water costs. Assumes $3.5/1,000 gallons of water",
419419
"units": "MUSD/yr"
420420
},
421421
"Average Reservoir Pumping Cost": {},

0 commit comments

Comments
 (0)