Skip to content

Commit 8271d91

Browse files
add reference to Water Cost Adjustment factor in water costs output paramter
1 parent d7470e0 commit 8271d91

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/geophires_x/Economics.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1946,7 +1946,9 @@ def __init__(self, model: Model):
19461946
UnitType=Units.CURRENCYFREQUENCY,
19471947
PreferredUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR,
19481948
CurrentUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR,
1949-
ToolTipText='Assumes $3.5/1,000 gallons of water' # TODO parameterize
1949+
ToolTipText=f'Default correlation: Assumes $3.50/1,000 gallons of water. '
1950+
f'Provide {self.oamwateradjfactor.Name} to multiply the default correlation.'
1951+
# Note: $3.50 could possibly be parameterized, but adjustment factor param serves the same purpose for now.
19501952
)
19511953
self.CCap = self.OutputParameterDict[self.CCap.Name] = OutputParameter(
19521954
Name="Total Capital Cost",

src/geophires_x_schema_generator/geophires-result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@
482482
},
483483
"Water costs": {
484484
"type": "number",
485-
"description": "O&M Make-up Water costs. Assumes $3.5/1,000 gallons of water",
485+
"description": "O&M Make-up Water costs. Default correlation: Assumes $3.50/1,000 gallons of water. Provide Water Cost Adjustment Factor to multiply the default correlation.",
486486
"units": "MUSD/yr"
487487
},
488488
"Average Reservoir Pumping Cost": {},

0 commit comments

Comments
 (0)