Skip to content

Commit b0eb245

Browse files
Remove erroneously duplicated calculate_cost_MUSD method from WellDrillingCostCorrelation
1 parent 811bff6 commit b0eb245

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/geophires_x/OptionList.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,6 @@ class WellDrillingCostCorrelation(GeophiresInputEnum):
178178
VERTICAL_LARGE_IDEAL = 16, "vertical open-hole, large diameter, ideal", -0.00240, 752.93946, 524337.65380
179179
DEVIATED_LARGE_IDEAL = 17, "deviated liner, large diameter, ideal", 0.00376, 762.52696, 765103.07690
180180

181-
def calculate_cost_MUSD(self, meters) -> float:
182-
return (self._c2 * meters ** 2 + self._c1 * meters + self._c0) * 1E-6
183-
184181
def __init__(self, int_value: int, _: str, c2: float, c1: float, c0: float):
185182
self._c2 = c2
186183
self._c1 = c1

0 commit comments

Comments
 (0)