Skip to content

Commit

Permalink
Change water level to groundwater level
Browse files Browse the repository at this point in the history
  • Loading branch information
pya committed Jul 24, 2023
1 parent 13dc438 commit 835f262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pymf6/modeling_tools/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def show_heads(
plot.axes.set_title(title)
#ticks = np.arange(0, 1.41, 0.1)
cbar = plot.get_figure().colorbar(arr) # ticks=ticks)
cbar.set_label('Water level (m)')
cbar.set_label('Groundwater level (m)')
return plot


Expand Down Expand Up @@ -128,7 +128,7 @@ def show_well_head(
_, ax = plt.subplots()
ax.plot(heads[:, 0], heads[:, 1], label='Well water level')
ax.set_xlabel('Time (d)')
ax.set_ylabel('Water level (m)')
ax.set_ylabel('Groundwater level (m)')
y_stress = (y_start, y_end)
x_stress_1 = (1, 1)
times = model_data['times']
Expand Down

0 comments on commit 835f262

Please sign in to comment.