Skip to content

Commit f83298a

Browse files
Exploration cost documentation
1 parent 405b5b8 commit f83298a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/geophires_x/Economics.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1581,12 +1581,19 @@ def __init__(self, model: Model):
15811581
PreferredUnits=CurrencyUnit.MDOLLARS,
15821582
CurrentUnits=CurrencyUnit.MDOLLARS
15831583
)
1584+
1585+
# See TODO re:parameterizing indirect costs at src/geophires_x/Economics.py:652
1586+
# (https://github.com/NREL/GEOPHIRES-X/issues/383)
15841587
self.Cexpl = self.OutputParameterDict[self.Cexpl.Name] = OutputParameter(
15851588
Name="Exploration cost",
15861589
display_name='Exploration costs',
15871590
UnitType=Units.CURRENCY,
15881591
PreferredUnits=CurrencyUnit.MDOLLARS,
1589-
CurrentUnits=CurrencyUnit.MDOLLARS
1592+
CurrentUnits=CurrencyUnit.MDOLLARS,
1593+
ToolTipText=f'Default correlation: 60% of the cost of one production well plus 15% contingency '
1594+
f'plus 12% indirect costs. '
1595+
f'Provide {self.ccexpladjfactor.Name} to multiply the default correlation. '
1596+
f'Provide {self.ccexplfixed.Name} to override the default correlation and set your own cost.'
15901597
)
15911598

15921599
self.Cwell = self.OutputParameterDict[self.Cwell.Name] = OutputParameter(
@@ -1597,6 +1604,7 @@ def __init__(self, model: Model):
15971604
CurrentUnits=CurrencyUnit.MDOLLARS,
15981605

15991606
# See TODO re:parameterizing indirect costs at src/geophires_x/Economics.py:652
1607+
# (https://github.com/NREL/GEOPHIRES-X/issues/383)
16001608
ToolTipText="Includes total drilling and completion cost of all injection and production wells and "
16011609
"laterals, plus 5% indirect costs."
16021610
)

src/geophires_x_schema_generator/geophires-result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@
362362
"Total surface equipment costs": {},
363363
"Exploration costs": {
364364
"type": "number",
365-
"description": "Exploration cost",
365+
"description": "Exploration cost. Default correlation: 60% of the cost of one production well plus 15% contingency plus 12% indirect costs. Provide Exploration Capital Cost Adjustment Factor to multiply the default correlation. Provide Exploration Capital Cost to override the default correlation and set your own cost.",
366366
"units": "MUSD"
367367
},
368368
"Investment Tax Credit": {

0 commit comments

Comments
 (0)