Skip to content
Discussion options

You must be logged in to vote

Consider the model that was suggested in Discussion mbakker7/ttim#97, which is a cross-sectional model with a river with a leaky bottom on the left and an aquifer with a semi-confining top on the right. The head in the river goes up from 0 to 1 at time t=0, as specified with tsandhstar (note that I changed the names somewhat to avoid confusion):

import numpy as np
import ttim

ml = ttim.ModelXsection(naq=1, tmin=1e-4, tmax=1e2)

z = [5, 0, -10]
kh = 10
c = 100
Saq = 1e-3
Sll = 1e-2
tsandhstar = [(0, 1)]

riv = ttim.XsectionMaq(
    ml,
    -np.inf,  # river extends to infinitiy
    0,
    z=z,
    kaq=kh,
    Saq=Saq,
    Sll=Sll,
    c=c,
    topboundary="semi",
    tsandhstar=tsandhstar…

Replies: 0 comments 10 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
0 replies
Comment options

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

@MattBrst
Comment options

@mbakker7
Comment options

@dbrakenhoff
Comment options

@mbakker7
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.
3 participants