Joeri van Engelen

Results 16 comments of Joeri van Engelen

FYI, for those who are trying to implement this in their models now: [Here](https://www.academia.edu/12089064/Simulating_Piecewise_Linear_Surface_Water_and_Ground_Water_Interactions_with_MODFLOW)'s a paper written by Willem Zaadnoordijk explaining how to achieve this by combining the GHB (or...

Also running into this in [our documentation](https://deltares.gitlab.io/imod/imod-python/examples/imodflow/ImodflowProjectfile.html#wells)

I'm currently looking into this, implementing it should not be too hard. (Was not really happy with the uniformity of my optimized samples) If I understand it correctly, the main...

I see that most of the tests now fail because no grid_jump is provided in the tests, which raises the question: why didn't they fail in previous commits?

The branch ``domain_testing`` does not exist anymore. However, the branches ``issue_relativeOverlap_regridder``, ``barycentric_test`` kind of implement what is described.

Relevant xarray issue: https://github.com/pydata/xarray/issues/8496

Just checking @veenstrajelmer, does https://github.com/pydata/xarray/pull/8713 fix this issue?

> How does xarray do the merging here? I guess it just dispatches on type as well? It appears xarray forces everything to dict-like objects https://github.com/pydata/xarray/blob/main/xarray/core/merge.py#L994 (So either datasets or...

Just for completeness and to avoid discouraging potential users: Whereas this returns a numpy array: ```python xr.DataArray.notnull(uda) # -> np.array ``` This does the right thing: ```python uda.notnull() # ->...