-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_plots.py
446 lines (362 loc) · 13.3 KB
/
create_plots.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 17 13:57:16 2023.
@author: Judith Angel
Create plots and gifs for bathymetry reconstruction.
"""
import numpy as np
import h5py
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
from subprocess import call
from dedalus.extras.plot_tools import quad_mesh, pad_limits
import importlib
#####################################################################
# ------------------- Insert folder name here --------------------- #
# E.g. folder = "2024_02_22_09_12_AM_sensor234"
folder = "2024_04_24_01_09_PM"
# ----------------------------------------------------------------- #
#####################################################################
path = "ProblemRelatedFiles/" + folder
params = importlib.import_module("ProblemRelatedFiles." + folder + ".params")
pa = params.params()
if pa.data != "sim_everywhere":
pos = pa.pos
#####################################################################
# ------- Set to True if you want to save the plots. -------------- #
save = True
#####################################################################
with h5py.File(path+"/opt_data.hdf5", "r") as sol:
f_vals = np.array(sol["f_vals"][:])
f_err1s = np.array(sol["f_err1s"][:])
f_err2s = np.array(sol["f_err2s"][:])
f_regs = np.array(sol["f_regs"][:])
f_b_exct = np.array(sol["f_b_exct"])
alpha_js = np.array(sol["alpha_js"][:])
v_norms = np.array(sol["v_norms"][:])
b_exact = np.array(sol["b_exact"][:])
bs = np.array(sol["bs"][:])
vs = np.array(sol["vs"][:])
saveall = sol.attrs.get("saveall")
if saveall:
qs = np.array(sol["qs"][:])
ps = np.array(sol["ps"][:])
else:
q = np.array(sol["q"][:])
obs = np.array(sol["obs"][:])
x = np.array(sol["x"][:])
t = np.array(sol["t"][:])
j = sol.attrs.get("jmax")
b_errs = np.zeros(j)
# Compute relative l2-error.
for i in range(j):
if np.linalg.norm(b_exact) > 1e-16:
b_errs[i] = np.linalg.norm(bs[i]-b_exact)/np.linalg.norm(b_exact)
else:
b_errs[i] = np.linalg.norm(bs[i]-b_exact)
# Range for plots.
bmin = np.min(b_exact)
bmax = np.max(b_exact)
ymin = np.min(obs)
ymax = np.max(obs)
if saveall:
p1min = np.min(ps[:, :, :, 0])
p1max = np.max(ps[:, :, :, 0])
p2min = np.min(ps[:, :, :, 1])
p2max = np.max(ps[:, :, :, 1])
b = bs[j]
fs = 6
lw = 0.8
fh = 1.5
# Plot values of objective functional.
plt.figure()
plt.semilogy(range(j-1), f_vals[0:j-1], '-*', label=r"value at $b_j$")
plt.semilogy(range(j-1), f_err1s[0:j-1]+f_err2s[0:j-1], '--', label="mismatch")
plt.semilogy(range(j-1), f_regs[0:j-1], '--', label="regularisation")
plt.semilogy(range(j-1), f_b_exct*np.ones(j-1), 'r-', label="value at exact b")
plt.xlabel(r'Optimisation iteration $j$')
plt.legend()
plt.title("Values of objective functional")
if save:
plt.savefig(path + "/values_f.pdf", bbox_inches='tight')
# Plot relative error against iteration.
fig, ax = plt.subplots(figsize=[1.95, fh]) # Size for paper.
ax.semilogy(range(j), b_errs[0:j], 'k:', linewidth=lw)
ax.set_xlabel(r'Optimisation iteration $j$', fontsize=fs, labelpad=0.25)
ax.set_ylabel(r"$||b_j-b_{ex}||_2 \ / \ ||b_{ex}||_2$", fontsize=fs,
labelpad=0.5)
# plt.title("Relative error to exact bathymetry")
ax.tick_params(axis='both', which='major', labelsize=fs, pad=2)
ax.tick_params(axis='both', which='minor', labelsize=fs, pad=2)
plt.tight_layout()
if save:
filename = path + "/errors_rel.pdf"
plt.savefig(filename, bbox_inches='tight')
call(["pdfcrop", filename, filename])
if j > 1:
plt.figure()
plt.semilogy(range(1, j+1), alpha_js[0:j], '-*')
plt.xlabel('iteration')
plt.ylabel(r'$\alpha$')
plt.title("Chosen step size")
if save:
plt.savefig(path + "/stepsize.pdf", bbox_inches='tight')
plt.figure()
plt.semilogy(range(1, j+1), v_norms[0:j], '-*')
plt.xlabel('Optimisation iteration')
plt.ylabel(r"$||\cdot||$")
plt.title("Norm of the gradient")
if save:
plt.savefig(path + "/norms.pdf", bbox_inches='tight')
############################
# ----- Bathymetries ----- #
x_10 = np.argmin(abs(x-10)) # Only plot until x=10m.
# Plot reconstructed bathymetry after last iteration.
fig, ax = plt.subplots(figsize=[3.79, fh]) # Size for paper.
ax.plot(x[:x_10], b_exact[:x_10], "-k", label="exact", linewidth=lw)
ax.plot(x[:x_10], bs[j][:x_10], "k:", label="reconstructed", linewidth=lw)
if pa.data != "sim_everywhere":
ax.plot(pos, np.zeros(len(pos)), "k*", label="sensor position",
markersize=fs)
plt.ylim([min(np.min(b_exact), np.min(bs))-0.01,
max(np.max(b_exact), np.max(bs))+0.01])
ax.set_xlabel(r'$x [m]$', fontsize=fs, labelpad=0.25)
ax.set_ylabel(r'$b [m]$', fontsize=fs, labelpad=0.5)
ax.tick_params(axis='both', which='major', labelsize=fs, pad=3)
plt.legend(loc="upper right", bbox_to_anchor=(1, 1), ncol=2, fontsize=fs)
plt.tight_layout()
ax.spines[['right', 'top']].set_visible(False)
# plt.title(f"Exact and computed bathymetry at $j={{{j}}}$")
if save:
filename = path + "/bathymetry_" + str(j) + ".pdf"
plt.savefig(filename, bbox_inches='tight')
call(["pdfcrop", filename, filename])
# Create gif of bathymetries along iterations.
fig1 = plt.figure(figsize=[6.4, fh])
def update_plot1(i):
plt.clf()
plt.plot(x[:x_10], b_exact[:x_10], "k", label="exact")
plt.plot(x[:x_10], bs[i][:x_10], "k:", label="reconstructed")
if pa.data != "sim_everywhere":
plt.plot(pos, np.zeros(len(pos)), "k*", label="sensor position",
markersize=10)
plt.ylim([min(np.min(b_exact), np.min(bs))-0.01,
max(np.max(b_exact), np.max(bs))+0.01])
plt.xlabel('x [m]')
plt.ylabel('b [m]')
plt.legend()
plt.tight_layout()
plt.title(f"Exact and computed bathymetry at j={i}")
anim1 = FuncAnimation(
fig1, update_plot1, frames=np.arange(0, j, max(1, j//20)))
if save:
anim1.save(path + "/bathymetries.gif", dpi=150, fps=2)
############################
# ----- Water height ----- #
if saveall:
fig2 = plt.figure()
def update_plot2(i):
plt.clf()
xmesh, ymesh = quad_mesh(x=x, y=t)
plt.pcolormesh(xmesh, ymesh, qs[i, :, :, 0]+bs[i], cmap='plasma',
vmin=ymin, vmax=ymax, rasterized=True)
plt.axis(pad_limits(xmesh, ymesh))
plt.colorbar()
plt.xlabel('x')
plt.ylabel('t')
plt.title(f"Water height at j={i}")
anim2 = FuncAnimation(fig2, update_plot2, frames=np.arange(
0, j-1, max(1, (j-1)//20)))
if save:
anim2.save(path + "/states.gif", dpi=150, fps=2)
########################
# ----- Mismatch ----- #
if saveall:
fig3 = plt.figure()
mmin = np.min(qs[0, :, :, 0]+bs[0]-obs)
mmax = np.max(qs[0, :, :, 0]+bs[0]-obs)
def update_plot3(i):
plt.clf()
xmesh, ymesh = quad_mesh(x=x, y=t)
plt.pcolormesh(xmesh, ymesh, qs[i, :, :, 0]+bs[i]-obs, cmap='plasma',
vmin=mmin, vmax=mmax, rasterized=True)
plt.axis(pad_limits(xmesh, ymesh))
plt.colorbar()
plt.xlabel('x')
plt.ylabel('t')
plt.title(f"Mismatch j={i}")
anim3 = FuncAnimation(fig3, update_plot3, frames=np.arange(
0, j-1, max(1, (j-1)//20)))
if save:
anim3.save(path + "/mismatch.gif", dpi=150, fps=2)
#################################################
# ----- Adjoint variable, first component ----- #
if saveall:
fig4 = plt.figure()
def update_plot4(i):
plt.clf()
xmesh, ymesh = quad_mesh(x=x, y=t)
plt.pcolormesh(xmesh, ymesh, ps[i, :, :, 0], cmap='plasma', vmin=p1min,
vmax=p1max, rasterized=True)
plt.axis(pad_limits(xmesh, ymesh))
plt.colorbar()
plt.xlabel('x')
plt.ylabel('t')
plt.title(f"Adjoint, first component at j={i}")
anim4 = FuncAnimation(fig4, update_plot4, frames=np.arange(
0, j-1, max(1, (j-1)//20)))
if save:
anim4.save(path + "/adjoints1.gif", dpi=150, fps=2)
##################################################
# ----- Adjoint variable, second component ----- #
if saveall:
fig5 = plt.figure()
def update_plot5(i):
plt.clf()
xmesh, ymesh = quad_mesh(x=x, y=t)
plt.pcolormesh(xmesh, ymesh, ps[i, :, :, 1], cmap='plasma', vmin=p2min,
vmax=p2max, rasterized=True)
plt.axis(pad_limits(xmesh, ymesh))
plt.colorbar()
plt.xlabel('x')
plt.ylabel('t')
plt.title(f"Adjoint, second component at j={i}")
anim5 = FuncAnimation(fig5, update_plot5, frames=np.arange(
0, j-1, max(1, (j-1)//20)))
if save:
anim5.save(path + "/adjoints2.gif", dpi=150, fps=2)
###################################
# ----- Error in bathymetry ----- #
diff = np.zeros((j, b_exact.size))
for i in range(j):
diff[i] = bs[i]-b_exact
fig6 = plt.figure()
def update_plot6(i):
plt.clf()
plt.plot(x, diff[i])
plt.ylim([np.min(diff), np.max(diff)])
plt.xlabel('x')
plt.title(f"Difference bathymetry to exact bathymetry at j={i}")
anim6 = FuncAnimation(fig6, update_plot6, frames=np.arange(
0, j, max(1, j//20)))
if save:
anim6.save(path + "/errors.gif", dpi=150, fps=2)
########################
# ----- Gradient ----- #
fig7 = plt.figure()
def update_plot7(i):
plt.clf()
plt.plot(x, vs[i])
plt.ylim([np.min(vs), np.max(vs)])
plt.xlabel('x')
plt.title(f"Gradient at j={i}")
anim7 = FuncAnimation(fig7, update_plot7, frames=np.arange(
0, j-1, max(1, (j-1)//20)))
if save:
anim7.save(path + "/gradients.gif", dpi=150, fps=2)
###########################
# ----- Observation ----- #
xmesh, ymesh = quad_mesh(
x=x, y=t)
plt.figure()
plt.pcolormesh(xmesh, ymesh, obs, cmap='plasma', rasterized=True)
plt.axis(pad_limits(xmesh, ymesh))
plt.colorbar()
plt.xlabel('x')
plt.ylabel('t')
plt.title("Observation")
if save:
plt.savefig(path + "/observation.png", bbox_inches='tight')
####################################################################
# ----- Bathymetry and free surface elevation last iteration ----- #
if saveall:
H = qs[j-1, :, :, 0] + bs[j-1]
else:
H = q[:, :, 0] + bs[j-1]
Hmax = np.amax(H)
fig10 = plt.figure()
mask = obs == 0
obs[mask] = np.nan
# start = np.argmin(abs(t-4))
start = 0
def update_plot10(i):
plt.clf()
plt.plot(x, b_exact, "k", label="exact")
plt.plot(x, bs[j-1], "tab:orange", label="computed")
plt.plot(x, obs[i], "k*")
plt.plot(x, H[i], "tab:orange")
plt.ylim([0, Hmax+0.01])
plt.xlabel('x [m]')
plt.ylabel('H [m]')
plt.legend()
plt.title(f"Time t={round(t[i], 1)}")
anim10 = FuncAnimation(fig10, update_plot10, frames=np.arange(
start, t.size-1, max(1, (t.size-1)//100)))
if save:
anim10.save(path + "/Hb.gif", dpi=150, fps=2)
#####################################################################
# ----- Surface elevation and observation at sensor positions ----- #
if pa.data != "sim_everywhere":
pos_n = len(pos)
if pos_n > 1:
posi = np.zeros((pos_n), dtype=int)
fig, axs = plt.subplots(pos_n)
for i in range(pos_n):
posi[i] = np.argmin(abs(x-pos[i]))
fig.tight_layout(pad=2.0)
for i in range(pos_n):
axs[i].plot(t[start:], obs[start:, posi[i]], color="grey",
label=r"$H_{obs}$")
axs[i].plot(t[start:], H[start:, posi[i]], "k--",
label=r"$H(b_j)$")
if i == pos_n-1:
axs[i].set_xlabel('Time [s]')
axs[i].set_ylabel('H [m]')
axs[i].set_title(f"Sensor {i+2} at {pos[i]}m")
if i == pos_n-1:
# Shrink current axis's height by 10% on the bottom
box = axs[i].get_position()
axs[i].set_position([box.x0, box.y0 + box.height * 0.12,
box.width, box.height * 0.9])
# Put a legend below current axis
axs[i].legend(loc='upper center', bbox_to_anchor=(0, -0.3),
fancybox=True, shadow=True, ncol=5)
# plt.tight_layout()
if save:
plt.savefig(path + "/H_Hobs.pdf", bbox_inches='tight')
plt.show()
fig, axs = plt.subplots(pos_n)
fig.tight_layout(pad=2.0)
for i in range(pos_n):
axs[i].plot(t[start:], H[start:, posi[i]]-obs[start:, posi[i]])
axs[i].set_xlabel('Time [s]')
axs[i].set_ylabel(r'$H - H_{obs} \ [m]$')
axs[i].set_title(f"Sensor {i+2} at {pos[i]}m")
plt.tight_layout()
if save:
plt.savefig(path + "/H-Hobs.pdf", bbox_inches='tight')
plt.show()
else:
pos1 = np.argmin(abs(x-pos[0]))
plt.figure()
plt.plot(t[start:], obs[start:, pos1], color="dimgray",
label=r"$H_{obs}$")
plt.plot(t[start:], H[start:, pos1], "k--", label=r"$H(b_j)$")
plt.xlabel('Time [s]')
plt.ylabel('H [m]')
plt.legend()
plt.title(f"Sensor at {pos[0]}m")
if save:
plt.savefig(path + "/H_Hobs.pdf", bbox_inches='tight')
plt.show()
plt.figure()
plt.plot(
t[start:],
H[start:, pos1]-obs[start:, pos1])
plt.xlabel('Time [s]')
plt.ylabel(r'$H - H_{obs} \ [m]$')
plt.title(f"Sensor 2 at {pos[0]}m")
if save:
plt.savefig(path + "/H-Hobs.pdf", bbox_inches='tight')
plt.show()