Skip to content

Commit bb86058

Browse files
Document stimulation cost is per injection well
1 parent 20a99a7 commit bb86058

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/geophires_x/Economics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,7 @@ def __init__(self, model: Model):
15851585
UnitType=Units.CURRENCY,
15861586
PreferredUnits=CurrencyUnit.MDOLLARS,
15871587
CurrentUnits=CurrencyUnit.MDOLLARS,
1588-
ToolTipText=f'Default correlation: $1.25M {contingency_and_indirect_costs_tooltip}. '
1588+
ToolTipText=f'Default correlation: $1.25M per injection well {contingency_and_indirect_costs_tooltip}. '
15891589
f'Provide {self.ccstimadjfactor.Name} to multiply the default correlation. '
15901590
f'Provide {self.ccstimfixed.Name} to override the default correlation and set your own cost.'
15911591
)
@@ -2302,7 +2302,7 @@ def Calculate(self, model: Model) -> None:
23022302
if self.ccstimfixed.Valid:
23032303
self.Cstim.value = self.ccstimfixed.value
23042304
else:
2305-
base_stimulation_cost_MUSD_per_injection_well = 1.25
2305+
base_stimulation_cost_MUSD_per_injection_well = 1.25 # TODO parameterize
23062306

23072307
# 1.15 for 15% contingency and 1.05 for 5% indirect costs
23082308
# TODO https://github.com/NREL/GEOPHIRES-X/issues/383?title=Parameterize+indirect+cost+factor

src/geophires_x_schema_generator/geophires-result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@
345345
"Drilling and completion costs per redrilled well": {},
346346
"Stimulation costs": {
347347
"type": "number",
348-
"description": "Default correlation: $1.25M plus 15% contingency plus 12% indirect costs. Provide Reservoir Stimulation Capital Cost Adjustment Factor to multiply the default correlation. Provide Reservoir Stimulation Capital Cost to override the default correlation and set your own cost.",
348+
"description": "Default correlation: $1.25M per injection well plus 15% contingency plus 12% indirect costs. Provide Reservoir Stimulation Capital Cost Adjustment Factor to multiply the default correlation. Provide Reservoir Stimulation Capital Cost to override the default correlation and set your own cost.",
349349
"units": "MUSD"
350350
},
351351
"Stimulation costs (for redrilling)": {},

0 commit comments

Comments
 (0)