Skip to content

Commit

Permalink
refactor(vdf): shut off density limiters as default
Browse files Browse the repository at this point in the history
Default densemin and densemax set to zero, which means they are not active.
  • Loading branch information
langevin-usgs committed Sep 15, 2019
1 parent 4ef4f3b commit 05dde83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flopy/seawat/swtvdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class SeawatVdf(Package):
unitnumber = 37

def __init__(self, model, mtdnconc=1, mfnadvfd=1, nswtcpl=1, iwtable=1,
densemin=1.000, densemax=1.025, dnscrit=1e-2, denseref=1.000,
densemin=0, densemax=0, dnscrit=1e-2, denseref=1.000,
denseslp=.025, crhoref=0, firstdt=0.001, indense=1,
dense=1.000, nsrhoeos=1, drhodprhd=4.46e-3, prhdref=0.,
extension='vdf', unitnumber=None, filenames=None, **kwargs):
Expand Down

0 comments on commit 05dde83

Please sign in to comment.