In the transient head function there is the keyword neglect_steady=False:
|
def head(self, x, y, t, layers=None, aq=None, derivative=0, neglect_steady=False): |
I would like to expose that keyword as well in the transient headalongline function. Is this OK for you guys?
My use case:
- I am working on transient 1D models, and want to load a steady model as well.
- Since the client is interested in responsefactors, I need to have the steady and transient responses both separated and combined.
In the transient
headfunction there is the keywordneglect_steady=False:timflow/timflow/transient/model.py
Line 359 in 882bc67
I would like to expose that keyword as well in the transient
headalonglinefunction. Is this OK for you guys?My use case: