Skip to content

Commit 8d12bd8

Browse files
Set injection adjustment factor default/min/max from production adjustment default/min/max
1 parent 5186431 commit 8d12bd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/geophires_x/Economics.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -661,9 +661,9 @@ def __init__(self, model: Model):
661661
)
662662
self.injection_well_cost_adjustment_factor = self.ParameterDict[self.injection_well_cost_adjustment_factor.Name] = floatParameter(
663663
"Injection Well Drilling and Completion Capital Cost Adjustment Factor",
664-
DefaultValue=self.production_well_cost_adjustment_factor.value,
665-
Min=0,
666-
Max=10,
664+
DefaultValue=self.production_well_cost_adjustment_factor.DefaultValue,
665+
Min=self.production_well_cost_adjustment_factor.Min,
666+
Max=self.production_well_cost_adjustment_factor.Max,
667667
UnitType=Units.PERCENT,
668668
PreferredUnits=PercentUnit.TENTH,
669669
CurrentUnits=PercentUnit.TENTH,

0 commit comments

Comments
 (0)