Skip to content

Commit 8d57ffd

Browse files
Update field gathering cost tooltip text from theoretical basis (NREL#427)
1 parent bdaf66d commit 8d57ffd

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/geophires_x/Economics.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1897,12 +1897,23 @@ def __init__(self, model: Model):
18971897
PreferredUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR,
18981898
CurrentUnits=CurrencyFrequencyUnit.MDOLLARSPERYEAR
18991899
)
1900+
# noinspection SpellCheckingInspection
19001901
self.Cgath = self.OutputParameterDict[self.Cgath.Name] = OutputParameter(
19011902
Name="Field gathering system cost",
19021903
display_name='Field gathering system costs',
19031904
UnitType=Units.CURRENCY,
19041905
PreferredUnits=CurrencyUnit.MDOLLARS,
1905-
CurrentUnits=CurrencyUnit.MDOLLARS
1906+
CurrentUnits=CurrencyUnit.MDOLLARS,
1907+
# TODO interpolate constant values in tooltip text instead of hardcoding
1908+
ToolTipText='The built-in cost correlation for estimating the field gathering system cost follows includes '
1909+
'the cost for surface piping from each well to the plant and pumps for production and '
1910+
'injection wells. The length of the surface piping is assumed 750 m per well at a cost of '
1911+
'$500 per meter. The pumping cost for each pump in the production wells (line-shaft pumps) '
1912+
'and a single pump for the injection wells is calculated with the same correlation as GETEM. '
1913+
'An additional 15% is added for contingency and 12% for indirect costs. '
1914+
'The built-in cost correlation does not include the cost of pipelines to an off-site heat '
1915+
'user or a district-heating system. These costs are estimated at $750 per meter pipeline '
1916+
'length and can be manually added by the user to the pipeline distribution costs.'
19061917
)
19071918
self.Cpiping = self.OutputParameterDict[self.Cpiping.Name] = OutputParameter(
19081919
Name="Transmission pipeline costs",

src/geophires_x_schema_generator/geophires-result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@
420420
},
421421
"Field gathering system costs": {
422422
"type": "number",
423-
"description": "Field gathering system cost",
423+
"description": "Field gathering system cost. The built-in cost correlation for estimating the field gathering system cost follows includes the cost for surface piping from each well to the plant and pumps for production and injection wells. The length of the surface piping is assumed 750 m per well at a cost of $500 per meter. The pumping cost for each pump in the production wells (line-shaft pumps) and a single pump for the injection wells is calculated with the same correlation as GETEM. An additional 15% is added for contingency and 12% for indirect costs. The built-in cost correlation does not include the cost of pipelines to an off-site heat user or a district-heating system. These costs are estimated at $750 per meter pipeline length and can be manually added by the user to the pipeline distribution costs.",
424424
"units": "MUSD"
425425
},
426426
"Total surface equipment costs": {},

0 commit comments

Comments
 (0)