Issues on WellModel Scaling by a Distance #793
-
Describe the proposed feature Expected usage |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @quanerpython, Thanks for posting this issue! I'm converting it to a discussion, because I feel these are more questions to discuss, rather than direct issues with Pastas. But if any improvements to Pastas arise from this discussion I will open new Issues for those. WellModelFirst of all, the In your case, where you want more flexibility in the response and there are variations in transmissivity, you've already done exactly what we would recommend. In that case you split the pumping wells into multiple StressModels, each with their own response function. If you use You mention aquifer tests in your question, what results from those tests would you want to include in your Pastas models? Quantifying contributionsAs for your question with regards to quantifying the contribution, this is challenging. One method is to compute the variance of each contribution and compare those values. However, with pumping, the variance of the contribution of the wells is highly dependent on the time period you select for your analysis. If the pump was already on, the variance of the contribution might be relatively small while the total drawdown might be significant. If you want to look at the absolute effect of each contribution and express it as a single statistic, how do you deal with negative and positive contributions? Another option is to compute the improvement of the model fit as you add stresses to it. This gives you some statistic of the relative importance of each stress. See for example this paper by Collenteur et al. (2023) (section 4.4). A final, simple option, that doesn't require too much thinking, might be to just plot the contribution of each stress over time in a single plot. Input unitsYou are free to use any input units you want in Pastas. The only exception is the non-linear RechargeModel ( Perhaps we can improve the documentation further by including a clear section on units in one of the introductory notebooks. I will create an issue for this. Comparing modelsWith lots of stresses it does become complex to create a clear comparison plot. In some cases you are better off creating your own comparison plot. We have tried to create some customizable comparison plots using the Hope this helps somewhat! |
Beta Was this translation helpful? Give feedback.
Hi @quanerpython,
Thanks for posting this issue! I'm converting it to a discussion, because I feel these are more questions to discuss, rather than direct issues with Pastas. But if any improvements to Pastas arise from this discussion I will open new Issues for those.
WellModel
First of all, the
ps.HantushWellModel
response function used byps.WellModel
assumes there is constant transmissivity. In fact, it assumes the system can be represented by a single confined aquifer with constant transmissivity. The only thing that affects the response is the distance between the pumping well and the observation well.In your case, where you want more flexibility in the response and there are varia…