-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05-poisson2D-Neuman.py
221 lines (180 loc) · 4.95 KB
/
05-poisson2D-Neuman.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
#%%
"""
Solución de la ecuación de Poisson en 2D
\nabla^2 u = f
en el dominio [0,2]x[0,1]
con condiciones de frontera
u(0,y) = 0
u(2,y) = 2
u_n(x,0) = 0 Neumann
u(x,1) = x
y fuente
f(x,y) = -5
"""
import numpy as np
from scipy import sparse
import matplotlib.pyplot as plt
plt.style.use(['seaborn-v0_8','paper.mplstyle'])
""" Discretización del dominio """
print("\nDiscretizando el dominio")
n = 13 # número de nodos en la dirección x
m = 11 # número de nodos en la dirección y
N = n*m # número total de nodos
a0 = 0 # inicio x, dominio
b0 = 2 # fin x, dominio
a1 = 0 # inicio y, dominio
b1 = 1 # fin y, dominio
X = np.linspace(a0,b0,n)
Y = np.linspace(a1,b1,m)
h = X[1] - X[0]
k = Y[1] - Y[0]
x, y = np.meshgrid(X,Y)
p = np.vstack((x.T.flatten(), y.T.flatten())).T
""" Parámetros del problema """
f = lambda p: -5 # fuente
u_izq = lambda p: 0 # dirichlet izquierda
u_der = lambda p: 2 + np.sin(np.pi*p[1]) # dirichlet derecha
u_inf = lambda p: -10*p[0] # Neumann inferior
u_sup = lambda p: p[0] # dirichlet superior
""" Ensamble del sistema KU=F """
K = sparse.lil_matrix((N,N))
F = sparse.lil_matrix((N,1))
print("\nIdentificando los nodos de frontera")
b_izq = np.arange(0,m)
b_der = np.arange(N-m,N)
b_inf = np.arange(m,N-m,m)
b_sup = np.arange(2*m-1,N-m,m)
B = np.hstack((b_izq,b_der,b_sup))
interiores = np.setdiff1d(np.arange(N), B)
# Gráfia de los nodos
fig = plt.figure(figsize=(16,8))
plt.scatter(p[interiores,0], p[interiores,1], label="Nodos Interiores")
plt.scatter(p[b_izq,0], p[b_izq,1], label="Frontera Izquierda")
plt.scatter(p[b_der,0], p[b_der,1], label="Frontera Derecha")
plt.scatter(p[b_inf,0], p[b_inf,1], label="Frontera Inferior")
plt.scatter(p[b_sup,0], p[b_sup,1], label="Frontera Superior")
# for i in np.hstack((B,interiores)):
# plt.text(p[i,0], p[i,1], str(i))
plt.xlabel("$x$")
plt.ylabel("$y$")
plt.legend(loc="center")
# llenado de la matriz K
print("\nEnsamblando la matriz K")
for i in interiores:
K[i,i] = - 2/h**2 - 2/k**2
K[i,i-1] = 1/k**2
K[i,i+1] = 1/k**2
K[i,i+m] = 1/h**2
K[i,i-m] = 1/h**2
for i in b_inf:
K[i,i] = - 2/h**2 - 2/k**2
K[i,i+1] = 2/k**2
K[i,i+m] = 1/h**2
K[i,i-m] = 1/h**2
# llenado del vector F
print("\nEnsamblando el vector F")
for i in interiores:
F[i] = f(p[i])
for i in b_inf:
F[i] = f(p[i]) - 2 * u_inf(p[i]) / k
# Valores que pasan al lado derecho
K = sparse.csr_array(K)
F = sparse.csr_array(F)
print("\nDespejando valores conocidos al lado derecho")
print(" - Frontera Izquierda: " + str(b_izq.shape[0]) + " nodos")
for i in b_izq:
F -= K[:,[i]] * u_izq(p[i])
print(" - Frontera Derecha: " + str(b_der.shape[0]) + " nodos")
for i in b_der:
F -= K[:,[i]] * u_der(p[i])
print(" - Frontera Superior: " + str(b_sup.shape[0]) + " nodos")
for i in b_sup:
F -= K[:,[i]] * u_sup(p[i])
# valores en las fronteras
print("\nCorrigiendo los valores de frontera")
K = sparse.lil_matrix(K)
F = sparse.lil_matrix(F)
K[:,B] = 0
K[B,B] = 1
for i in b_izq:
F[[i]] = u_izq(p[i])
for i in b_der:
F[[i]] = u_der(p[i])
for i in b_sup:
F[[i]] = u_sup(p[i])
""" Solución del sistema KU=F """
K = sparse.csr_array(K)
F = sparse.csr_array(F)
print("\nResolviendo el sistema KU=F")
U = sparse.linalg.spsolve(K,F)
plt.style.use(['seaborn-v0_8','paper3dplot.mplstyle'])
mapa_de_color = "plasma"
print("\nGraficando")
fig = plt.figure(figsize=(10,8))
ax = plt.axes(projection="3d")
ax.plot_surface(
p[:,0].reshape((n,m)),
p[:,1].reshape((n,m)),
U.reshape((n,m)),
cmap=mapa_de_color,
linewidth=1,
antialiased=False
)
ax.view_init(azim=-120, elev=20)
plt.title("Solución (3D)")
ax.set_xlabel("$x$")
ax.set_ylabel("$y$")
ax.set_zlabel("$u(x,y)$")
from scipy.interpolate import griddata
resolution_factor = 3 # máximo 3
x_grid, y_grid = np.meshgrid(
np.linspace(a0,b0,n*resolution_factor),
np.linspace(a1,b1,m*resolution_factor)
)
z_grid = griddata(p, U, (x_grid, y_grid), method="cubic")
fig = plt.figure(figsize=(10,8))
ax = plt.axes(projection="3d")
ax.plot_surface(
x_grid,
y_grid,
z_grid,
cmap=mapa_de_color,
linewidth=0,
antialiased=False
)
ax.view_init(azim=-120, elev=20)
plt.title("Solución (3D) Interpolada")
ax.set_xlabel("$x$")
ax.set_ylabel("$y$")
ax.set_zlabel("$u(x,y)$")
plt.style.use(['seaborn-v0_8','paper.mplstyle'])
fig = plt.figure(figsize=(16,8))
plt.tricontourf(
p[:,0],
p[:,1],
U,
levels=20,
cmap=mapa_de_color,
)
plt.colorbar()
plt.axis('equal')
plt.ylim([a1,b1])
plt.xlabel('$x$')
plt.ylabel('$y$')
plt.title("Solución (Contorno)")
# fig4 = plt.figure(figsize=(16,8))
# plt.pcolormesh(
# x,
# y,
# U.reshape((n,m)).T,
# cmap=mapa_de_color,
# shading='gouraud'
# )
# plt.axis("equal")
# plt.ylim([a1,b1])
# plt.xlabel('$x$')
# plt.ylabel('$y$')
# plt.colorbar()
# plt.title("Solución (Interpolación)")
plt.show()
# %%