Skip to content

Commit 136ed78

Browse files
impedance unit conversion note in Outputs
1 parent ccd80d0 commit 136ed78

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/geophires_x/Outputs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1742,7 +1742,10 @@ def PrintOutputs(self, model: Model):
17421742
f.write(f' Number of fractures: {model.reserv.fracnumbcalc.value:10.2f}' + NL)
17431743
f.write(f' Fracture separation: {model.reserv.fracsepcalc.value:10.2f} ' + model.reserv.fracsep.CurrentUnits.value + NL)
17441744
f.write(f' Reservoir volume: {model.reserv.resvolcalc.value:10.0f} ' + model.reserv.resvol.CurrentUnits.value + NL)
1745+
17451746
if model.wellbores.impedancemodelused.value:
1747+
# See note re: unit conversion:
1748+
# https://github.com/NREL/GEOPHIRES-X/blob/d51eb8d1dc8b21c7a79c4d35f296d740347658e0/src/geophires_x/WellBores.py#L1280-L1282
17461749
f.write(f' Reservoir impedance: {model.wellbores.impedance.value/1000:10.4f} {model.wellbores.impedance.CurrentUnits.value}\n')
17471750
else:
17481751
if model.wellbores.overpressure_percentage.Provided:

0 commit comments

Comments
 (0)