Skip to content

Commit

Permalink
Merge pull request #237 from langevin-usgs/fix-synthetic-valley
Browse files Browse the repository at this point in the history
fix(synthetic-valley): numpy selection behavior is inconsistent
  • Loading branch information
langevin-usgs authored Dec 13, 2024
2 parents 4b712a8 + d4bc448 commit 0623eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ex-gwt-synthetic-valley.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def circle_function(center=(0, 0), radius=1.0, dtheta=10.0):
bot_l3 = np.full(bot_vg.shape, -100.0 * ft2m, dtype=float)
bot_l4 = bot_vg + 0.5 * (bot_l3 - bot_vg)
# set the bottom of the 3rd layer in areas where the confining unit exists
bot_l2[idomain_2] = -50.0 * ft2m
bot_l2[idomain_2 == -1] = -50.0 * ft2m
# create a list with bottom data
botm = [-5.0 * ft2m, -50.0 * ft2m, bot_l2, -100.0 * ft2m, bot_l4, bot_vg]
# -
Expand Down

0 comments on commit 0623eb7

Please sign in to comment.