forked from modflowpy/flopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flopy_swi2_ex1.py
executable file
·271 lines (244 loc) · 6.47 KB
/
flopy_swi2_ex1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
import math
import os
import sys
import matplotlib.pyplot as plt
import numpy as np
import flopy
# --modify default matplotlib settings
updates = {
"font.family": ["Univers 57 Condensed", "Arial"],
"mathtext.default": "regular",
"pdf.compression": 0,
"pdf.fonttype": 42,
"legend.fontsize": 7,
"axes.labelsize": 8,
"xtick.labelsize": 7,
"ytick.labelsize": 7,
}
plt.rcParams.update(updates)
def run():
workspace = "swiex1"
cleanFiles = False
fext = "png"
narg = len(sys.argv)
iarg = 0
if narg > 1:
while iarg < narg - 1:
iarg += 1
basearg = sys.argv[iarg].lower()
if basearg == "--clean":
cleanFiles = True
elif basearg == "--pdf":
fext = "pdf"
if cleanFiles:
print("cleaning all files")
print("excluding *.py files")
files = os.listdir(workspace)
for f in files:
if os.path.isdir(f):
continue
if ".py" != os.path.splitext(f)[1].lower():
print(f" removing...{os.path.basename(f)}")
os.remove(os.path.join(workspace, f))
return 1
modelname = "swiex1"
exe_name = "mf2005"
nlay = 1
nrow = 1
ncol = 50
delr = 5.0
delc = 1.0
ibound = np.ones((nrow, ncol), int)
ibound[0, -1] = -1
# create initial zeta surface
z = np.zeros((nrow, ncol), float)
z[0, 16:24] = np.arange(-2.5, -40, -5)
z[0, 24:] = -40
z = [z]
# create isource for SWI2
isource = np.ones((nrow, ncol), int)
isource[0, 0] = 2
ocdict = {}
for idx in range(49, 200, 50):
key = (0, idx)
ocdict[key] = ["save head", "save budget"]
key = (0, idx + 1)
ocdict[key] = []
# create flopy modflow object
ml = flopy.modflow.Modflow(
modelname, version="mf2005", exe_name=exe_name, model_ws=workspace
)
# create flopy modflow package objects
discret = flopy.modflow.ModflowDis(
ml,
nlay=nlay,
nrow=nrow,
ncol=ncol,
delr=delr,
delc=delc,
top=0,
botm=[-40.0],
perlen=400,
nstp=200,
)
bas = flopy.modflow.ModflowBas(ml, ibound=ibound, strt=0.0)
lpf = flopy.modflow.ModflowLpf(
ml, hk=2.0, vka=2.0, vkcb=0, laytyp=0, layavg=0
)
wel = flopy.modflow.ModflowWel(ml, stress_period_data={0: [(0, 0, 0, 1)]})
swi = flopy.modflow.ModflowSwi2(
ml,
iswizt=55,
npln=1,
istrat=1,
toeslope=0.2,
tipslope=0.2,
nu=[0, 0.025],
zeta=z,
ssz=0.2,
isource=isource,
nsolver=1,
)
oc = flopy.modflow.ModflowOc(ml, stress_period_data=ocdict)
pcg = flopy.modflow.ModflowPcg(ml)
# create model files
ml.write_input()
# run the model
m = ml.run_model(silent=False)
# read model heads
headfile = os.path.join(workspace, f"{modelname}.hds")
hdobj = flopy.utils.HeadFile(headfile)
head = hdobj.get_alldata()
head = np.array(head)
# read model zeta
zetafile = os.path.join(workspace, f"{modelname}.zta")
zobj = flopy.utils.CellBudgetFile(zetafile)
zkstpkper = zobj.get_kstpkper()
zeta = []
for kk in zkstpkper:
zeta.append(zobj.get_data(kstpkper=kk, text=" ZETASRF 1")[0])
zeta = np.array(zeta)
x = np.arange(0.5 * delr, ncol * delr, delr)
# Wilson and Sa Da Costa
k = 2.0
n = 0.2
nu = 0.025
H = 40.0
tzero = H * n / (k * nu) / 4.0
Ltoe = np.zeros(4)
v = 0.125
t = np.arange(100, 500, 100)
fwid = 7.00
fhgt = 3.50
flft = 0.125
frgt = 0.95
fbot = 0.125
ftop = 0.925
fig = plt.figure(figsize=(fwid, fhgt), facecolor="w")
fig.subplots_adjust(
wspace=0.25, hspace=0.25, left=flft, right=frgt, bottom=fbot, top=ftop
)
ax = fig.add_subplot(211)
ax.text(
-0.075,
1.05,
"A",
transform=ax.transAxes,
va="center",
ha="center",
size="8",
)
ax.plot([80, 120], [0, -40], "k")
ax.set_xlim(0, 250)
ax.set_ylim(-40, 0)
ax.set_yticks(np.arange(-40, 1, 10))
ax.text(50, -10, "salt")
ax.text(130, -10, "fresh")
a = ax.annotate(
"",
xy=(50, -25),
xytext=(30, -25),
arrowprops=dict(arrowstyle="->", fc="k"),
)
ax.text(
40, -22, "groundwater flow velocity=0.125 m/d", ha="center", size=7
)
ax.set_ylabel("Elevation, in meters")
ax = fig.add_subplot(212)
ax.text(
-0.075,
1.05,
"B",
transform=ax.transAxes,
va="center",
ha="center",
size="8",
)
for i in range(4):
Ltoe[i] = H * math.sqrt(k * nu * (t[i] + tzero) / n / H)
ax.plot(
[100 - Ltoe[i] + v * t[i], 100 + Ltoe[i] + v * t[i]],
[0, -40],
"k",
label="_None",
)
for i in range(4):
zi = zeta[i, 0, 0, :]
p = (zi < 0) & (zi > -39.9)
ax.plot(
x[p],
zeta[i, 0, 0, p],
"bo",
markersize=3,
markeredgecolor="blue",
markerfacecolor="None",
label="_None",
)
ipos = 0
for jdx, t in enumerate(zeta[i, 0, 0, :]):
if t > -39.9:
ipos = jdx
ax.text(
x[ipos],
-37.75,
f"{(i + 1) * 100} days",
size=5,
ha="left",
va="center",
)
# fake items for labels
ax.plot([-100.0, -100], [-100.0, -100], "k", label="Analytical solution")
ax.plot(
[-100.0, -100],
[-100.0, -100],
"bo",
markersize=3,
markeredgecolor="blue",
markerfacecolor="None",
label="SWI2",
)
# legend
leg = ax.legend(loc="upper right", numpoints=1)
leg._drawFrame = False
# axes
ax.set_xlim(0, 250)
ax.set_ylim(-40, 0)
ax.set_yticks(np.arange(-40, 1, 10))
a = ax.annotate(
"",
xy=(50, -25),
xytext=(30, -25),
arrowprops=dict(arrowstyle="->", fc="k"),
)
ax.text(
40, -22, "groundwater flow velocity=0.125 m/d", ha="center", size=7
)
ax.set_ylabel("Elevation, in meters")
ax.set_xlabel("Horizontal distance, in meters")
outfig = os.path.join(workspace, f"Figure06_swi2ex1.{fext}")
fig.savefig(outfig, dpi=300)
print("created...", outfig)
return 0
if __name__ == "__main__":
success = run()
sys.exit(success)