Skip to content
Discussion options

You must be logged in to vote

Thanks for the question, @MattBrst.
'deepcopy' is indeed what you want, but you to import it first from the copy module of the Python standard library.

import numpy as np
import ttim as ttm
from copy import deepcopy

# Data at Oude Korendijk taken from Kruseman and de Ridder (1990)
robs = 30 # distance to observation well, m
Q = 788 # discharge of well, m^3/d
time = np.array(
    [0.1 ,  0.25,  0.5 ,  0.7 ,  1.  ,  1.4 ,  1.9 ,  2.33,  2.8 ,
     3.36,  4.  ,  5.35,  6.8 ,  8.3 ,  8.7 , 10.  , 13.1 , 18.  ,
     27. ,  33. ,  41. ,  48. ,  59. ,  80. , 95.  , 139. , 181. , 
     245.,  300.,  360.,  480.,  600.,  728., 830.]) # in minutes
drawdown = np.array(
    [0.04 , 0.08 , 0.13 , 0.1…

Replies: 0 comments 5 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by MattBrst
Comment options

You must be logged in to vote
3 replies
@mbakker7
Comment options

@MattBrst
Comment options

@MattBrst
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
transient For issues relating to the `timflow.transient` code.
2 participants