forked from modflowpy/flopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flopy_swi2_ex5.py
executable file
·501 lines (461 loc) · 17.5 KB
/
flopy_swi2_ex5.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
from __future__ import print_function
import os
import sys
import math
import collections
import numpy as np
import flopy
import matplotlib.pyplot as plt
# --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 = 'swiex5'
if not os.path.isdir(workspace):
os.mkdir(workspace)
cleanFiles = False
skipRuns = 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 == '--skipruns':
skipRuns = True
elif basearg == '--pdf':
fext = 'pdf'
dirs = [os.path.join(workspace, 'SWI2'), os.path.join(workspace, 'SEAWAT')]
if cleanFiles:
print('cleaning all files')
print('excluding *.py files')
file_dict = collections.OrderedDict()
file_dict[0] = os.listdir(dirs[0])
file_dict[1] = os.listdir(dirs[1])
file_dict[-1] = os.listdir(workspace)
for key, files in list(file_dict.items()):
pth = '.'
if key >= 0:
pth = dirs[key]
for f in files:
fpth = os.path.join(pth, f)
if os.path.isdir(fpth):
continue
if '.py' != os.path.splitext(f)[1].lower():
print(' removing...{}'.format(os.path.basename(f)))
try:
os.remove(fpth)
except:
pass
for d in dirs:
if os.path.exists(d):
os.rmdir(d)
return 0
# --make working directories
for d in dirs:
if not os.path.exists(d):
os.mkdir(d)
# --problem data
nlay = 6
nrow = 1
ncol = 113
delr = np.zeros((ncol), np.float)
delc = 1.
r = np.zeros((ncol), np.float)
x = np.zeros((ncol), np.float)
edge = np.zeros((ncol), np.float)
dx = 25.0
for i in range(0, ncol):
delr[i] = dx
r[0] = delr[0] / 2.0
for i in range(1, ncol):
r[i] = r[i - 1] + (delr[i - 1] + delr[i]) / 2.0
x[0] = delr[0] / 2.0
for i in range(1, ncol):
x[i] = x[i - 1] + (delr[i - 1] + delr[i]) / 2.0
edge[0] = delr[0]
for i in range(1, ncol):
edge[i] = edge[i - 1] + delr[i]
# constant data for all simulations
nper = 2
perlen = [1460, 1460]
nstp = [1460, 1460]
steady = True
nsave_zeta = 8
ndecay = 4
ibound = np.ones((nlay, nrow, ncol), np.int)
for k in range(0, nlay):
ibound[k, 0, ncol - 1] = -1
bot = np.zeros((nlay, nrow, ncol), np.float)
dz = 100. / float(nlay - 1)
zall = -np.arange(0, 100 + dz, dz)
zall = np.append(zall, -120.)
tb = -np.arange(dz, 100 + dz, dz)
tb = np.append(tb, -120.)
for k in range(0, nlay):
for i in range(0, ncol):
bot[k, 0, i] = tb[k]
isource = np.zeros((nlay, nrow, ncol), np.int)
isource[:, 0, ncol - 1] = 1
isource[nlay - 1, 0, ncol - 1] = 2
khb = (0.0000000000256 * 1000. * 9.81 / 0.001) * 60 * 60 * 24
kvb = (0.0000000000100 * 1000. * 9.81 / 0.001) * 60 * 60 * 24
ssb = 1e-5
sszb = 0.2
kh = np.zeros((nlay, nrow, ncol), np.float)
kv = np.zeros((nlay, nrow, ncol), np.float)
ss = np.zeros((nlay, nrow, ncol), np.float)
ssz = np.zeros((nlay, nrow, ncol), np.float)
for k in range(0, nlay):
for i in range(0, ncol):
f = r[i] * 2.0 * math.pi
kh[k, 0, i] = khb * f
kv[k, 0, i] = kvb * f
ss[k, 0, i] = ssb * f
ssz[k, 0, i] = sszb * f
z = np.ones((nlay), np.float)
z = -100. * z
nwell = 1
for k in range(0, nlay):
if zall[k] > -20. and zall[k + 1] <= -20:
nwell = k + 1
print('nlay={} dz={} nwell={}'.format(nlay, dz, nwell))
wellQ = -2400.
wellbtm = -20.0
wellQpm = wellQ / abs(wellbtm)
well_data = {}
for ip in range(0, nper):
welllist = np.zeros((nwell, 4), np.float)
for iw in range(0, nwell):
if ip == 0:
b = zall[iw] - zall[iw + 1]
if zall[iw + 1] < wellbtm:
b = zall[iw] - wellbtm
q = wellQpm * b
else:
q = 0.0
welllist[iw, 0] = iw
welllist[iw, 1] = 0
welllist[iw, 2] = 0
welllist[iw, 3] = q
well_data[ip] = welllist.copy()
ihead = np.zeros((nlay), np.float)
ocspd = {}
for i in range(0, nper):
icnt = 0
for j in range(0, nstp[i]):
icnt += 1
if icnt == 365:
ocspd[(i, j)] = ['save head']
icnt = 0
else:
ocspd[(i, j)] = []
solver2params = {'mxiter': 100, 'iter1': 20, 'npcond': 1, 'zclose': 1.0e-6,
'rclose': 3e-3, 'relax': 1.0,
'nbpol': 2, 'damp': 1.0, 'dampt': 1.0}
# --create model file and run model
modelname = 'swi2ex5'
mf_name = 'mf2005'
if not skipRuns:
ml = flopy.modflow.Modflow(modelname, version='mf2005',
exe_name=mf_name,
model_ws=dirs[0])
discret = flopy.modflow.ModflowDis(ml, nrow=nrow, ncol=ncol, nlay=nlay,
delr=delr, delc=delc, top=0,
botm=bot,
laycbd=0, nper=nper, perlen=perlen,
nstp=nstp, steady=steady)
bas = flopy.modflow.ModflowBas(ml, ibound=ibound, strt=ihead)
lpf = flopy.modflow.ModflowLpf(ml, hk=kh, vka=kv, ss=ss, sy=ssz,
vkcb=0,
laytyp=0, layavg=1)
wel = flopy.modflow.ModflowWel(ml, stress_period_data=well_data)
swi = flopy.modflow.ModflowSwi2(ml, iswizt=55, npln=1, istrat=1,
toeslope=0.025, tipslope=0.025,
nu=[0, 0.025], zeta=z, ssz=ssz,
isource=isource, nsolver=2,
solver2params=solver2params)
oc = flopy.modflow.ModflowOc(ml, stress_period_data=ocspd)
pcg = flopy.modflow.ModflowPcg(ml, hclose=1.0e-6, rclose=3.0e-3,
mxiter=100, iter1=50)
# --write the modflow files
ml.write_input()
m = ml.run_model(silent=False)
# --read model zeta
get_stp = [364, 729, 1094, 1459, 364, 729, 1094, 1459]
get_per = [0, 0, 0, 0, 1, 1, 1, 1]
nswi_times = len(get_per)
zetafile = os.path.join(dirs[0], '{}.zta'.format(modelname))
zobj = flopy.utils.CellBudgetFile(zetafile)
zeta = []
for kk in zip(get_stp, get_per):
zeta.append(zobj.get_data(kstpkper=kk, text='ZETASRF 1')[0])
zeta = np.array(zeta)
# --seawat input - redefine input data that differ from SWI2
nlay_swt = 120
# --mt3d print times
timprs = (np.arange(8) + 1) * 365.
nprs = len(timprs)
# --
ndecay = 4
ibound = np.ones((nlay_swt, nrow, ncol), 'int')
for k in range(0, nlay_swt):
ibound[k, 0, ncol - 1] = -1
bot = np.zeros((nlay_swt, nrow, ncol), np.float)
zall = [0, -20., -40., -60., -80., -100., -120.]
dz = 120. / nlay_swt
tb = np.arange(nlay_swt) * -dz - dz
sconc = np.zeros((nlay_swt, nrow, ncol), np.float)
icbund = np.ones((nlay_swt, nrow, ncol), np.int)
strt = np.zeros((nlay_swt, nrow, ncol), np.float)
pressure = 0.
g = 9.81
z = - dz / 2. # cell center
for k in range(0, nlay_swt):
for i in range(0, ncol):
bot[k, 0, i] = tb[k]
if bot[k, 0, 0] >= -100.:
sconc[k, 0, :] = 0. / 3. * .025 * 1000. / .7143
else:
sconc[k, 0, :] = 3. / 3. * .025 * 1000. / .7143
icbund[k, 0, -1] = -1
dense = 1000. + 0.7143 * sconc[k, 0, 0]
pressure += 0.5 * dz * dense * g
if k > 0:
z = z - dz
denseup = 1000. + 0.7143 * sconc[k - 1, 0, 0]
pressure += 0.5 * dz * denseup * g
strt[k, 0, :] = z + pressure / dense / g
# print z, pressure, strt[k, 0, 0], sconc[k, 0, 0]
khb = (0.0000000000256 * 1000. * 9.81 / 0.001) * 60 * 60 * 24
kvb = (0.0000000000100 * 1000. * 9.81 / 0.001) * 60 * 60 * 24
ssb = 1e-5
sszb = 0.2
kh = np.zeros((nlay_swt, nrow, ncol), np.float)
kv = np.zeros((nlay_swt, nrow, ncol), np.float)
ss = np.zeros((nlay_swt, nrow, ncol), np.float)
ssz = np.zeros((nlay_swt, nrow, ncol), np.float)
for k in range(0, nlay_swt):
for i in range(0, ncol):
f = r[i] * 2.0 * math.pi
kh[k, 0, i] = khb * f
kv[k, 0, i] = kvb * f
ss[k, 0, i] = ssb * f
ssz[k, 0, i] = sszb * f
# wells and ssm data
itype = flopy.mt3d.Mt3dSsm.itype_dict()
nwell = 1
for k in range(0, nlay_swt):
if bot[k, 0, 0] >= -20.:
nwell = k + 1
print('nlay_swt={} dz={} nwell={}'.format(nlay_swt, dz, nwell))
well_data = {}
ssm_data = {}
wellQ = -2400.
wellbtm = -20.0
wellQpm = wellQ / abs(wellbtm)
for ip in range(0, nper):
welllist = np.zeros((nwell, 4), np.float)
ssmlist = []
for iw in range(0, nwell):
if ip == 0:
q = wellQpm * dz
else:
q = 0.0
welllist[iw, 0] = iw
welllist[iw, 1] = 0
welllist[iw, 2] = 0
welllist[iw, 3] = q
ssmlist.append([iw, 0, 0, 0., itype['WEL']])
well_data[ip] = welllist.copy()
ssm_data[ip] = ssmlist
# Define model name for SEAWAT model
modelname = 'swi2ex5_swt'
swtexe_name = 'swtv4'
# Create the MODFLOW model data
if not skipRuns:
m = flopy.seawat.Seawat(modelname, exe_name=swtexe_name,
model_ws=dirs[1])
discret = flopy.modflow.ModflowDis(m, nrow=nrow, ncol=ncol,
nlay=nlay_swt,
delr=delr, delc=delc, top=0,
botm=bot,
laycbd=0, nper=nper, perlen=perlen,
nstp=nstp, steady=True)
bas = flopy.modflow.ModflowBas(m, ibound=ibound, strt=strt)
lpf = flopy.modflow.ModflowLpf(m, hk=kh, vka=kv, ss=ss, sy=ssz, vkcb=0,
laytyp=0, layavg=1)
wel = flopy.modflow.ModflowWel(m, stress_period_data=well_data)
oc = flopy.modflow.ModflowOc(m, save_every=365,
save_types=['save head'])
pcg = flopy.modflow.ModflowPcg(m, hclose=1.0e-5, rclose=3.0e-3,
mxiter=100,
iter1=50)
# Create the basic MT3DMS model data
adv = flopy.mt3d.Mt3dAdv(m, mixelm=-1,
percel=0.5,
nadvfd=0,
# 0 or 1 is upstream; 2 is central in space
# particle based methods
nplane=4,
mxpart=1e7,
itrack=2,
dceps=1e-4,
npl=16,
nph=16,
npmin=8,
npmax=256)
btn = flopy.mt3d.Mt3dBtn(m, icbund=icbund, prsity=ssz, ncomp=1,
sconc=sconc,
ifmtcn=-1,
chkmas=False, nprobs=10, nprmas=10, dt0=1.0,
ttsmult=1.0,
nprs=nprs, timprs=timprs, mxstrn=1e8)
dsp = flopy.mt3d.Mt3dDsp(m, al=0., trpt=1., trpv=1., dmcoef=0.)
gcg = flopy.mt3d.Mt3dGcg(m, mxiter=1, iter1=50, isolve=1, cclose=1e-7)
ssm = flopy.mt3d.Mt3dSsm(m, stress_period_data=ssm_data)
# Create the SEAWAT model data
vdf = flopy.seawat.SeawatVdf(m, iwtable=0, densemin=0, densemax=0,
denseref=1000., denseslp=0.7143,
firstdt=1e-3)
# write seawat files
m.write_input()
# Run SEAWAT
m = m.run_model(silent=False)
# plot the results
# read seawat model data
ucnfile = os.path.join(dirs[1], 'MT3D001.UCN')
uobj = flopy.utils.UcnFile(ucnfile)
times = uobj.get_times()
print(times)
conc = np.zeros((len(times), nlay_swt, ncol), np.float)
for idx, tt in enumerate(times):
c = uobj.get_data(totim=tt)
for ilay in range(0, nlay_swt):
for jcol in range(0, ncol):
conc[idx, ilay, jcol] = c[ilay, 0, jcol]
# spatial data
# swi2
bot = np.zeros((1, ncol, nlay), np.float)
dz = 100. / float(nlay - 1)
zall = -np.arange(0, 100 + dz, dz)
zall = np.append(zall, -120.)
tb = -np.arange(dz, 100 + dz, dz)
tb = np.append(tb, -120.)
for k in range(0, nlay):
for i in range(0, ncol):
bot[0, i, k] = tb[k]
# seawat
swt_dz = 120. / nlay_swt
swt_tb = np.zeros((nlay_swt), np.float)
zc = -swt_dz / 2.0
for klay in range(0, nlay_swt):
swt_tb[klay] = zc
zc -= swt_dz
X, Z = np.meshgrid(x, swt_tb)
# Make figure
fwid, fhgt = 6.5, 6.5
flft, frgt, fbot, ftop = 0.125, 0.95, 0.125, 0.925
eps = 1.0e-3
lc = ['r', 'c', 'g', 'b', 'k']
cfig = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']
inc = 1.0e-3
xsf = plt.figure(figsize=(fwid, fhgt), facecolor='w')
xsf.subplots_adjust(wspace=0.25, hspace=0.25, left=flft, right=frgt,
bottom=fbot, top=ftop)
# withdrawal and recovery titles
ax = xsf.add_subplot(4, 2, 1)
ax.text(0.0, 1.03, 'Withdrawal', transform=ax.transAxes, va='bottom',
ha='left', size='8')
ax = xsf.add_subplot(4, 2, 2)
ax.text(0.0, 1.03, 'Recovery', transform=ax.transAxes, va='bottom',
ha='left',
size='8')
# dummy items for legend
ax = xsf.add_subplot(4, 2, 1)
ax.plot([-1, -1], [-1, -1], 'bo', markersize=3, markeredgecolor='blue',
markerfacecolor='None', label='SWI2 interface')
ax.plot([-1, -1], [-1, -1], color='k', linewidth=0.75, linestyle='solid',
label='SEAWAT 50% seawater')
ax.plot([-1, -1], [-1, -1], marker='s', color='k', linewidth=0,
linestyle='none', markeredgecolor='w',
markerfacecolor='0.75', label='SEAWAT 5-95% seawater')
leg = ax.legend(loc='upper left', numpoints=1, ncol=1, labelspacing=0.5,
borderaxespad=1, handlelength=3)
leg._drawFrame = False
# data items
for itime in range(0, nswi_times):
zb = np.zeros((ncol), np.float)
zs = np.zeros((ncol), np.float)
for icol in range(0, ncol):
for klay in range(0, nlay):
# top and bottom of layer
ztop = float('{0:10.3e}'.format(zall[klay]))
zbot = float('{0:10.3e}'.format(zall[klay + 1]))
# fresh-salt zeta surface
zt = zeta[itime, klay, 0, icol]
if (ztop - zt) > eps:
zs[icol] = zt
if itime < ndecay:
ic = itime
isp = ic * 2 + 1
ax = xsf.add_subplot(4, 2, isp)
else:
ic = itime - ndecay
isp = (ic * 2) + 2
ax = xsf.add_subplot(4, 2, isp)
# figure title
ax.text(-0.15, 1.025, cfig[itime], transform=ax.transAxes, va='center',
ha='center', size='8')
# swi2
ax.plot(x, zs, 'bo', markersize=3, markeredgecolor='blue',
markerfacecolor='None', label='_None')
# seawat
sc = ax.contour(X, Z, conc[itime, :, :], levels=[17.5], colors='k',
linestyles='solid', linewidths=0.75, zorder=30)
cc = ax.contourf(X, Z, conc[itime, :, :], levels=[0.0, 1.75, 33.250],
colors=['w', '0.75', 'w'])
# set graph limits
ax.set_xlim(0, 500)
ax.set_ylim(-100, -65)
if itime < ndecay:
ax.set_ylabel('Elevation, in meters')
# x labels
ax = xsf.add_subplot(4, 2, 7)
ax.set_xlabel('Horizontal distance, in meters')
ax = xsf.add_subplot(4, 2, 8)
ax.set_xlabel('Horizontal distance, in meters')
# simulation time titles
for itime in range(0, nswi_times):
if itime < ndecay:
ic = itime
isp = ic * 2 + 1
ax = xsf.add_subplot(4, 2, isp)
else:
ic = itime - ndecay
isp = (ic * 2) + 2
ax = xsf.add_subplot(4, 2, isp)
iyr = itime + 1
if iyr > 1:
ctxt = '{} years'.format(iyr)
else:
ctxt = '{} year'.format(iyr)
ax.text(0.95, 0.925, ctxt, transform=ax.transAxes, va='top',
ha='right',
size='8')
outfig = os.path.join(workspace, 'Figure11_swi2ex5.{0}'.format(fext))
xsf.savefig(outfig, dpi=300)
print('created...', outfig)
return 0
if __name__ == '__main__':
success = run()