-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconvection_point_optimization.py
More file actions
155 lines (119 loc) · 4.85 KB
/
convection_point_optimization.py
File metadata and controls
155 lines (119 loc) · 4.85 KB
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
import torch
import torch.nn as nn
import matplotlib.pyplot as plt
import random
from torch.optim import LBFGS, Adam
from tqdm import tqdm
import os
import argparse
from util import *
from model_dict import get_model
import time
seed = 0
np.random.seed(seed)
random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
parser = argparse.ArgumentParser('Training Point Optimization')
parser.add_argument('--model', type=str, default='pinn')
parser.add_argument('--device', type=str, default='cuda:0')
parser.add_argument('--layers', type=int, default=3)
parser.add_argument('--beta', type=float, default=50) # convection coefficient
args = parser.parse_args()
device = args.device
res, b_left, b_right, b_upper, b_lower = get_data([0, 2 * np.pi], [0, 1], 101, 101)
res_test, _, _, _, _ = get_data([0, 2 * np.pi], [0, 1], 101, 101)
res = torch.tensor(res, dtype=torch.float32, requires_grad=True).to(device)
b_left = torch.tensor(b_left, dtype=torch.float32, requires_grad=True).to(device)
b_right = torch.tensor(b_right, dtype=torch.float32, requires_grad=True).to(device)
b_upper = torch.tensor(b_upper, dtype=torch.float32, requires_grad=True).to(device)
b_lower = torch.tensor(b_lower, dtype=torch.float32, requires_grad=True).to(device)
x_res, t_res = res[:, ..., 0:1], res[:, ..., 1:2]
x_left, t_left = b_left[:, ..., 0:1], b_left[:, ..., 1:2]
x_right, t_right = b_right[:, ..., 0:1], b_right[:, ..., 1:2]
x_upper, t_upper = b_upper[:, ..., 0:1], b_upper[:, ..., 1:2]
x_lower, t_lower = b_lower[:, ..., 0:1], b_lower[:, ..., 1:2]
def init_weights(m):
if isinstance(m, nn.Linear):
torch.nn.init.xavier_uniform(m.weight)
m.bias.data.fill_(0.0)
if args.model == 'ProPINN':
model = get_model(args).Model(in_dim=2, hidden_dim=32, out_dim=1, num_layer=args.layers).to(device)
model.apply(init_weights)
optim = LBFGS(model.parameters(), line_search_fn='strong_wolfe')
print(model)
print(get_n_params(model))
loss_track = []
keep_residual = []
start_time = time.time()
for i in tqdm(range(1000)):
print("iteration: ", i)
def closure():
pred_res = model(x_res, t_res)
pred_left = model(x_left, t_left)
pred_right = model(x_right, t_right)
pred_upper = model(x_upper, t_upper)
pred_lower = model(x_lower, t_lower)
u_x = torch.autograd.grad(pred_res, x_res, grad_outputs=torch.ones_like(pred_res), retain_graph=True,
create_graph=True)[0]
u_t = torch.autograd.grad(pred_res, t_res, grad_outputs=torch.ones_like(pred_res), retain_graph=True,
create_graph=True)[0]
keep_residual.append(((u_t + args.beta * u_x) ** 2).detach())
loss_res = torch.mean((u_t + args.beta * u_x) ** 2)
loss_bc = torch.mean((pred_upper - pred_lower) ** 2)
loss_ic = torch.mean((pred_left[:, 0] - torch.sin(x_left[:, 0])) ** 2)
loss_track.append([loss_res.item(), loss_bc.item(), loss_ic.item()])
loss = loss_res + loss_bc + loss_ic
optim.zero_grad()
loss.backward()
return loss
optim.step(closure)
print('Loss Res: {:4f}, Loss_BC: {:4f}, Loss_IC: {:4f}'.format(loss_track[-1][0], loss_track[-1][1], loss_track[-1][2]))
print('Train Loss: {:4f}'.format(np.sum(loss_track[-1])))
if not os.path.exists('./results/'):
os.makedirs('./results/')
torch.save(model.state_dict(), f'./results/1dconvection_{args.model}_point.pt')
res_test = torch.tensor(res_test, dtype=torch.float32, requires_grad=True).to(device)
x_test, t_test = res_test[:, ..., 0:1], res_test[:, ..., 1:2]
with torch.no_grad():
model.eval()
pred = model(x_test, t_test)[:, 0:1]
pred = pred.cpu().detach().numpy()
pred = pred.reshape(101, 101)
def u_res(x, t):
print(x.shape)
print(t.shape)
return np.sin(x - args.beta * t)
res_test, _, _, _, _ = get_data([0, 2 * np.pi], [0, 1], 101, 101)
u = u_res(res_test[:, 0], res_test[:, 1]).reshape(101, 101)
rl1 = np.sum(np.abs(u - pred)) / np.sum(np.abs(u))
rl2 = np.sqrt(np.sum((u - pred) ** 2) / np.sum(u ** 2))
print('relative L1 error: {:4f}'.format(rl1))
print('relative L2 error: {:4f}'.format(rl2))
plt.figure(figsize=(4, 3))
plt.imshow(pred, aspect='equal')
plt.xlabel('x')
plt.ylabel('t')
plt.title('Predicted u(x,t)')
plt.colorbar()
plt.tight_layout()
plt.axis('off')
plt.savefig(f'./results/1dconvection_{args.model}_pred.pdf', bbox_inches='tight')
plt.figure(figsize=(4, 3))
plt.imshow(u, aspect='equal')
plt.xlabel('x')
plt.ylabel('t')
plt.title('Exact u(x,t)')
plt.colorbar()
plt.tight_layout()
plt.axis('off')
plt.savefig('./results/1dconvection_exact.pdf', bbox_inches='tight')
plt.figure(figsize=(4, 3))
plt.imshow(pred - u, aspect='equal', cmap='coolwarm', vmin=-1, vmax=1)
plt.xlabel('x')
plt.ylabel('t')
plt.title('Absolute Error')
plt.colorbar()
plt.tight_layout()
plt.axis('off')
plt.savefig(f'./results/1dconvection_{args.model}_error.pdf', bbox_inches='tight')