Skip to content

Commit

Permalink
Add some questions for Gabriel
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed Nov 30, 2024
1 parent c22785d commit 369f81e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions examples/geothermal.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@
# --------------------
# Plot the first 12 prior permeability models; grey shows the channels with
# higher permeability.
#
# **TODO Gabriel:**
# It probably would be good to plot the wells in the permeability plots, right?
# In the darts model, are those cell indices for the wells? Can you add some
# symbols here for the wells?

fopts = {"sharex": True, "sharey": True, "constrained_layout": True}
popts = {"vmin": perm_min, "vmax": perm_max, "origin": "lower"}
Expand Down Expand Up @@ -351,6 +356,10 @@ def temperature_at_production_well(permeabilities, years=years):
###############################################################################
# Plot prior data
# '''''''''''''''
#
# **TODO Gabriel:**
# How to interpret that there are, sort of, two different paths with slightly
# different temperatures?

fig, ax = plt.subplots()
ax.scatter(years, data_obs, label="Observed", color="red", zorder=10)
Expand Down Expand Up @@ -403,6 +412,9 @@ def restrict_permeability(x):
###############################################################################
# Plot posterior data
# '''''''''''''''''''
#
# **TODO Gabriel:**
# How to interpret that "the colder path" won?

fig, ax = plt.subplots()
ax.scatter(years, data_obs, label="Observed", color="red", zorder=10)
Expand All @@ -419,6 +431,10 @@ def restrict_permeability(x):
# Plot posterior permeabilities
# '''''''''''''''''''''''''''''
# Plot the first 12 posterior permeability models.
#
# **TODO Gabriel:**
# Is it insightful to show the posterior permeability?


fig, axs = plt.subplots(3, 4, **fopts)
axs = axs.ravel()
Expand Down

0 comments on commit 369f81e

Please sign in to comment.