-
Notifications
You must be signed in to change notification settings - Fork 1
/
advection_solidbody_FCT_PDECO_finaltime.py
385 lines (300 loc) · 14.1 KB
/
advection_solidbody_FCT_PDECO_finaltime.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
from dolfin import *
import numpy as np
import matplotlib.pyplot as plt
from scipy.sparse import diags, block_diag, vstack, hstack, csr_matrix, lil_matrix, spdiags, triu, tril
from timeit import default_timer as timer
from datetime import timedelta
from scipy.integrate import simps
from helpers import *
import data_helpers
# ---------------------------------------------------------------------------
### PDE-constrained optimisation problem for the advection-diffusion equation
### with Flux-corrected transport method
# min_{u,v,a,b} 1/2*||u(T)-\hat{u}_T||^2 + beta/2*||c||^2 (norms in L^2)
# subject to:
# du/dt - eps*grad^2(u) + div( u (omega*w + c*m) ) = 0 in Ωx[0,T]
# dot(grad u, n) = 0 on ∂Ωx[0,T]
# du/dn = 0 on ∂Ωx[0,T]
# u(0) = u0(x) in Ω
# w = velocity/wind vector with the following properties:
# div (w) = 0 in Ωx[0,T]
# w \dot n = 0 on ∂Ωx[0,T]
# b = drift vector, e.g. (1,1)
# c = control variable, velocity of the drift
# Optimality conditions:
# du/dt - eps*grad^2(u) + w \dot grad(u)) = 0 in Ωx[0,T]
# -dp/dt - eps*grad^2 p - w \dot grad(p)= 0 in Ωx[0,T]
# dp/dn = du/dn = 0 on ∂Ωx[0,T]
# u(0) = u0(x) in Ω
# p(T) = hat{u}_T - u(T) in Ω
# gradient equation: beta*c - u*dot(m, grad(p)) = 0 in Ωx[0,T]
# ---------------------------------------------------------------------------
## Define the parameters
a1 = -1
a2 = 1
deltax = 0.1/2/2
intervals_line = round((a2-a1)/deltax)
beta = 1
# box constraints for c, exact solution is in [0,1]
c_upper = 5
c_lower = 0
e1 = 0.2
e2 = 0.3
k1 = 1
k2 = 1
# diffusion coefficient
eps = 0
om = np.pi/40
t0 = 0
dt = 0.001 #deltax**2 #0.01
T = 0.25
num_steps = round((T-t0)/dt)
tol = 10**-4 # !!!
example_name = 'solidbody'
# Initialize a square mesh
mesh = RectangleMesh(Point(a1, a1), Point(a2, a2), intervals_line, intervals_line)
V = FunctionSpace(mesh, 'CG', 1)
nodes = V.dim()
sqnodes = round(np.sqrt(nodes))
u = TrialFunction(V)
v = TestFunction(V)
X = np.arange(a1, a2 + deltax, deltax)
Y = np.arange(a1, a2 + deltax, deltax)
X, Y = np.meshgrid(X,Y)
show_plots = True
def u_init(X,Y):
'''
Initialisation of the position of the solid body at time zero.
Input = mesh grid (X,Y = square 2D arrays with the same dimensions), time
'''
out = np.zeros(X.shape)
R = np.sqrt(X**2 + (Y-1/3)**2)
for i in range(X.shape[0]):
for j in range(X.shape[1]):
if R[i,j] < 1/3 and (abs(X[i,j]) > 0.05 or Y[i,j] > 0.5):
out[i,j] = 1
else:
out[i,j] = 0
return out
def rotation(X,Y):
wind = Expression(('-x[1]','x[0]'), degree=4)
return 1/om*wind
drift = Constant(('1','1'))
rot = rotation(X,Y)
vertextodof = vertex_to_dof_map(V)
boundary_nodes, boundary_nodes_dof = generate_boundary_nodes(nodes, vertextodof)
mesh.init(0, 1)
dof_neighbors = find_node_neighbours(mesh, nodes, vertextodof)
# ----------------------------------------------------------------------------
###############################################################################
################### Define the stationary matrices ###########################
###############################################################################
# Mass matrix
M = assemble_sparse_lil(u * v * dx)
M_diag = M.diagonal()
# Row-lumped mass matrix
M_Lump = row_lump(M,nodes)
# Stiffness matrix
Ad = assemble_sparse(dot(grad(u), grad(v)) * dx)
# Advection matrix for rotation
Arot = assemble_sparse(dot(rot, grad(v))*u * dx)
###############################################################################
########################### Initial guesses for GD ############################
###############################################################################
vec_length = (num_steps + 1)*nodes # include zero and final time
u0_orig = u_init(X, Y).reshape(nodes)
# importing data in dof ordering
uhat_T = data_helpers.get_data_array('u', example_name, T)
zeros_nt = np.zeros(vec_length)
uk = np.zeros(vec_length)
pk = np.zeros(vec_length)
dot_drift_grad_pk = np.zeros(vec_length)
ck = np.zeros(vec_length)
dk = np.zeros(vec_length)
u0 = reorder_vector_to_dof_time(u0_orig, 1, nodes, vertextodof)
uhat_T_re = reorder_vector_from_dof_time(uhat_T, 1, nodes, vertextodof).reshape((sqnodes,sqnodes))
uk[:nodes] = u0
uk[num_steps*nodes:] = uhat_T ## new
###############################################################################
###################### PROJECTED GRADIENT DESCENT #############################
###############################################################################
it = 0
# cost_fun_k = 10*cost_functional_proj_FT(uk, zeros_nt, ck, zeros_nt, 0, uhat_T, np.zeros(nodes), num_steps, dt, M, c_lower, c_upper, beta)
cost_fun_k = 10*cost_functional(uk, uhat_T, ck, num_steps, dt, M, beta, optim='finaltime')
stop_crit = 5
stop_crit2 = 5
print(f'dx={deltax}, {dt=}, {T=}, {beta=}')
print('Starting projected gradient descent method...')
# while (stop_crit >= tol ) and it<1000:
while ((stop_crit >= tol ) or (stop_crit2 >= tol)) and it < 1000:
it += 1
print(f'\n{it=}')
# In k-th iteration we solve for u^k, p^k using c^k (S1 & S2)
# and calculate c^{k+1} (S5)
###########################################################################
############### 1. solve the state equation using FCT #####################
###########################################################################
print('Solving state equation...')
t=0
uk[nodes:] = np.zeros(num_steps * nodes) # initialise uk, keep IC
for i in range(1, num_steps + 1): # solve for uk(t_{n+1})
start = i * nodes
end = (i + 1) * nodes
t += dt
if i % 50 == 0:
print('t = ', round(t, 4))
uk_n = uk[start - nodes : start] # uk(t_n), i.e. previous time step at k-th GD iteration
ck_np1_fun = vec_to_function(ck[start : end], V)
u_rhs = np.zeros(nodes)
Adrift1 = assemble_sparse(dot(drift, grad(ck_np1_fun))*u * v * dx) # pseudo-mass matrix
Adrift2 = assemble_sparse(dot(drift, grad(v)) * ck_np1_fun * u * dx) # pseudo-stiffness matrix
## System matrix for the state equation
A_u = - eps * Ad + Arot + Adrift1 + Adrift2
uk[start:end] = FCT_alg(A_u, u_rhs, uk_n, dt, nodes, M, M_Lump, dof_neighbors)
###########################################################################
############### 2. solve the adjoint equation using FCT ###################
###########################################################################
pk = np.zeros(vec_length)
pk[num_steps * nodes :] = uhat_T - uk[num_steps * nodes :]
dot_drift_grad_pk = np.zeros(vec_length)
t=T
print('Solving adjoint equation...')
for i in reversed(range(0, num_steps)):
start = i * nodes
end = (i + 1) * nodes
t -= dt
if i % 50 == 0:
print('t = ', round(t, 4))
pk_np1 = pk[end : end + nodes] # pk(t_{n+1})
uk_n_fun = vec_to_function(uk[start : end], V) # uk(t_n)
ck_n_fun = vec_to_function(ck[start : end], V)
Adrift1 = assemble_sparse(dot(drift, grad(ck_n_fun))*u * v * dx) # pseudo-mass matrix
Adrift2 = assemble_sparse(dot(drift, grad(v)) * ck_n_fun * u * dx) # pseudo-stiffness matrix
A_p = - eps * Ad - Arot - Adrift1 - Adrift2
p_rhs = np.zeros(nodes)
pk[start:end] = FCT_alg(A_p, p_rhs, pk_np1, dt, nodes, M, M_Lump, dof_neighbors)
###########################################################################
##################### 3. choose the descent direction #####################
###########################################################################
for i in range(num_steps + 1): # calculate dk, across all time steps (incl. 0 and T)
start = i * nodes
end = (i + 1) * nodes
uk_fun = vec_to_function(uk[start:end], V)
pk_fun = vec_to_function(pk[start:end], V)
rhs_dk = -(beta*M*ck[start:end] \
+ np.asarray(assemble(pk_fun * dot(drift, grad(uk_fun))*v*dx)))
dk[start:end] = ChebSI(rhs_dk, M, M_diag, 20, 0.5, 2)
###########################################################################
########################## 4. step size control ###########################
###########################################################################
print('Starting Armijo line search...')
sk, u_inc = armijo_line_search_sbr_drift(uk, pk, ck, dk, uhat_T, eps, drift,
num_steps, dt, nodes, M, M_Lump, Ad, Arot, c_lower, c_upper,
beta, V, dof_neighbors, optim='finaltime')
###########################################################################
## 5. Calculate new control and project onto admissible set
###########################################################################
ckp1 = np.clip(ck + sk*dk,c_lower,c_upper)
stop_crit = L2_norm_sq_Q(ckp1-ck, num_steps, dt, M) / L2_norm_sq_Q(ck, num_steps, dt, M)
# Check the cost functional - stopping criterion
# cost_fun_kp1 = cost_functional_proj_FT(u_inc, zeros_nt, ckp1, dk, sk, uhat_T, np.zeros(nodes), num_steps, dt, M, c_lower, c_upper, beta)
cost_fun_kp1 = cost_functional(u_inc, uhat_T, ckp1, num_steps, dt, M, beta, optim='finaltime')
stop_crit2 = np.abs(cost_fun_k - cost_fun_kp1) / np.abs(cost_fun_k)
cost_fun_k = cost_fun_kp1
ck = ckp1
print(f'{stop_crit=}')
print(f'{stop_crit2=}')
uk.tofile('solidbody_pdeco/solidbody_it' + str(it) + '_u.csv', sep = ',')
ck.tofile('solidbody_pdeco/solidbody_it' + str(it) + '_c.csv', sep = ',')
pk.tofile('solidbody_pdeco/solidbody_it' + str(it) + '_p.csv', sep = ',')
uk_re = reorder_vector_from_dof_time(uk, num_steps + 1, nodes, vertextodof)
ck_re = reorder_vector_from_dof_time(ck, num_steps + 1, nodes, vertextodof)
pk_re = reorder_vector_from_dof_time(pk, num_steps + 1, nodes, vertextodof)
for i in range(num_steps):
startP = i * nodes
endP = (i+1) * nodes
tP = i * dt
startU = (i+1) * nodes
endU = (i+2) * nodes
tU = (i+1) * dt
u_dof = uk[startU : endU]
u_dof.tofile('solidbody_pdeco/solidbody_t' + str(tU) + '.csv', sep = ',')
u_re = uk_re[startU : endU]
c_re = ck_re[startP : endP]
p_re = pk_re[startP : endP]
u_re = u_re.reshape((sqnodes,sqnodes))
c_re = c_re.reshape((sqnodes,sqnodes))
p_re = p_re.reshape((sqnodes,sqnodes))
if show_plots is True and i%10 == 0:
fig2 = plt.figure(figsize = (20, 5))
fig2.tight_layout(pad = 3.0)
ax2 = plt.subplot(1,4,1)
im1 = plt.imshow(uhat_T_re)
fig2.colorbar(im1)
plt.title(f'Desired state for $u$ at t = {T}')
fig2.tight_layout(pad = 3.0)
ax2 = plt.subplot(1,4,2)
im1 = plt.imshow(u_re)
fig2.colorbar(im1)
plt.title(f'Computed state $u$ at t = {round(tU,5)}')
ax2 = plt.subplot(1,4,3)
im2 = plt.imshow(p_re)
fig2.colorbar(im2)
plt.title(f'Computed adjoint $p$ at t = {round(tP,5)}')
ax2 = plt.subplot(1,4,4)
im1 = plt.imshow(c_re)
fig2.colorbar(im1)
plt.title(f'Computed control $c$ at t = {round(tP,5)}')
plt.show()
print('------------------------------------------------------')
###############################################################################
# Mapping to order the solution vectors based on vertex indices
uk_re = reorder_vector_from_dof_time(uk, num_steps + 1, nodes, vertextodof)
ck_re = reorder_vector_from_dof_time(ck, num_steps + 1, nodes, vertextodof)
pk_re = reorder_vector_from_dof_time(pk, num_steps + 1, nodes, vertextodof)
# min_u = min(np.amin(uk), np.amin(uex(T, X, Y, e1, k1)))
# min_c = min(np.amin(ck), np.amin(cex(0, X, Y, e2, k2)))
# min_p = min(np.amin(pk), np.amin(pex(0, X, Y, e2, k2)))
# max_u = max(np.amax(uk), np.amax(uex(0,X,Y,e1,k1)))
# max_c = max(np.amax(ck), np.amax(cex((num_steps - 1) * dt, X, Y, e2, k2)))
# max_p = max(np.amax(pk), np.amax(pex((num_steps - 1) * dt, X, Y, e2, k2)))
uhat_T_re = reorder_vector_from_dof_time(uhat_T, 1, nodes, vertextodof).reshape((sqnodes,sqnodes))
for i in range(num_steps):
startP = i * nodes
endP = (i+1) * nodes
tP = i * dt
startU = (i+1) * nodes
endU = (i+2) * nodes
tU = (i+1) * dt
u_dof = uk[startU : endU]
u_dof.tofile('solidbody_pdeco/solidbody_t' + str(tU) + '.csv', sep = ',')
u_re = uk_re[startU : endU]
c_re = ck_re[startP : endP]
p_re = pk_re[startP : endP]
u_re = u_re.reshape((sqnodes,sqnodes))
c_re = c_re.reshape((sqnodes,sqnodes))
p_re = p_re.reshape((sqnodes,sqnodes))
if show_plots is True and i%10 == 0:
fig2 = plt.figure(figsize = (20, 5))
fig2.tight_layout(pad = 3.0)
ax2 = plt.subplot(1,4,1)
im1 = plt.imshow(uhat_T_re)
fig2.colorbar(im1)
plt.title(f'Desired state for $u$ at t = {T}')
fig2.tight_layout(pad = 3.0)
ax2 = plt.subplot(1,4,2)
im1 = plt.imshow(u_re)
fig2.colorbar(im1)
plt.title(f'Computed state $u$ at t = {round(tU,5)}')
ax2 = plt.subplot(1,4,3)
im2 = plt.imshow(p_re)
fig2.colorbar(im2)
plt.title(f'Computed adjoint $p$ at t = {round(tP,5)}')
ax2 = plt.subplot(1,4,4)
im1 = plt.imshow(c_re)
fig2.colorbar(im1)
plt.title(f'Computed control $c$ at t = {round(tP,5)}')
plt.show()
print('------------------------------------------------------')
print(f'Exit:\n Stop. crit.: {stop_crit}\n Iterations: {it}\n dx={deltax}')
print(f'{dt=}, {T=}, {beta=}')