Skip to content

No distance passed to HantushWellModel, assuming r=1.0. #601

Answered by dbrakenhoff
VeloVolant asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @VeloVolant, the short answer is that this message is not something you need to be worried about.

But be aware that if you're interested in the shape of the step or block response for a particular well that you need to explicitly calculate it for that well:

# given some pastas Model ml
ml = ps.Model(...)

# and some WellModel
wm = ps.WellModel(...)
ml.add_stressmodel(wm)
ml.solve()

step_1m = ml.get_step_response("wells")  # <- this will return the step response for r=1 (hence the message)

step_well0 = wm.rfunc.step(wm.get_parameters(istress=0))  # <- this will get the response function for the first well

step_well1 = wm.rfunc.step(wm.get_parameters(istress=1))  # <- this will get th…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@dbrakenhoff
Comment options

@VeloVolant
Comment options

Answer selected by dbrakenhoff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants