Skip to content

Commit 6925254

Browse files
Continued work on Fervo model; made changes per reviewer.
1 parent f6c4a8e commit 6925254

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/geophires_x/CylindricalReservoir.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,7 @@ def Calculate(self, model: Model) -> None:
222222
# initialize with the Initial reservoir temperature
223223
self.Tresoutput.value = np.array(len(self.timevector.value) * [self.Trock.value])
224224
# depth in this case is actually the total length of the drilled assembly
225-
# self.depth.value = ((self.InputDepth.quantity() + self.OutputDepth.quantity() + self.Length.quantity()
226-
# ).to(self.depth.CurrentUnits).magnitude) / 2.0
227-
# MIR switched to the average of the InputDepth snd the OutputDepth
225+
# as the average of the InputDepth and the OutputDepth
228226
self.depth.value = (self.InputDepth.value + self.OutputDepth.value) / 2.0
229227

230228
# Total volume of all laterals but hollow cylinder - doesn't include drilled-out area, units = m3

0 commit comments

Comments
 (0)