Issue 1879 documentation for assigning Well and LayeredWell - #1885
Conversation
| # Let's define a cross-section line through the model, and some well locations along that line. | ||
| from shapely.geometry import LineString | ||
|
|
||
| geometry = LineString([[238725, 560000], [242000, 563500]]) |
There was a problem hiding this comment.
I think in practice the order is different: You have a bunch of wells in your database, and want to drag a cross-section along a part of them to get an idea of what the subsurface looks like.
There was a problem hiding this comment.
I changed the order around in how it is presented but kept the line coordinates the same, which I think is what you mean?
There was a problem hiding this comment.
Yes that is what I meant
| screen_top=[6.0, 7.0, 6.0], | ||
| screen_bottom=[5.0, 6.5, 4.5], |
There was a problem hiding this comment.
The screen top and bottom are quite important. Probably good to assign these to a separate variable in the notebook and write one sentence explanation what they mean.
| layer_based = imod.mf6.LayeredWell( | ||
| x=x, | ||
| y=y, | ||
| layer=[6, 7, 6], |
There was a problem hiding this comment.
Idem, probably good to assign this to a separate variable in the notebook and add one sentence of explanation.
There was a problem hiding this comment.
I changed these but let me know if it's not descriptive enough
|



Fixes #1879
Description
Extended the descriptions of Well and LayeredWell so that the difference between them is easier to understand, as well as created a new user guide for assigning wells with the Hondsrug example.
Checklist
Issue #nr, e.g.Issue #737pixi run generate-sbomand committed changes