Skip to content

Commit b363456

Browse files
Add missing import and fix typo in SBTReservoir.py
1 parent 376e932 commit b363456

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/geophires_x/SBTReservoir.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import pandas as pd
66
from scipy.special import erf, erfc, jv, yv, exp1
77
from scipy.interpolate import interp1d
8+
import scipy.io as sio
89
import matplotlib.pyplot as plt
910

1011
import geophires_x.Model as Model
@@ -451,7 +452,7 @@ def Calculate_Coaxial(self, model):
451452
g = 9.81 # Gravitational acceleration [m/s²]
452453
gamma = 0.577215665 # Euler's constant
453454
alpha_m = self.krock.value / (self.rhorock.value * self.cprock.value) # Rock thermal diffusivity [m²/s]
454-
alpha_m_boiler = self.krock.value_boiler / (self.rhorock.value * self.cprock.value) # Boiler rock thermal diffusivity [m²/s]
455+
alpha_m_boiler = self.krock.value / (self.rhorock.value * self.cprock.value) # Boiler rock thermal diffusivity [m²/s]
455456

456457
outerradiuscenterpipe = radiuscenterpipe + thicknesscenterpipe # Outer radius of inner pipe [m]
457458
A_flow_annulus = np.pi * (radius ** 2 - outerradiuscenterpipe ** 2) # Flow area of annulus pipe [m²]

0 commit comments

Comments
 (0)