【发布时间】:2020-10-18 16:37:56
【问题描述】:
我正在尝试使用欧拉方案来实现热方程求解器进行时间积分,这是实现的特定方程:
Nt = 20
Nx = 100
x = np.linspace(0,1,Nx+1)
t = np.linspace(0,1,Nt+1)
dx = 1/Nx
dt = 1/Nt
F = dt/(dx**2)
T_temps = np.zeros(Nx+1)
T = np.zeros(Nx+1)
for i in range(Nx+1):
T_temps[i] = np.sin(x[i])
for n in range(0,Nt):
for i in range(1,Nx):
T[i] = T_temps[i] + F*(T_temps[i-1]-2*T_temps[i]+T_temps[i+1]) + ((np.pi**2)-1)*np.exp(-t[i])*np.sin(x[i])
T[0] = 0.
T[Nx] = 0.
T_temps[:] = T
plt.plot(t,T)
plt.show()
当 Nt 和 Nx 的两个值相同但当我必须修改 Nt 的值以进行必须执行的练习时,它会产生此错误:
ValueError: x and y must have same first dimension, but have shapes (101,) and (21,)
我不知道如何处理它:我理解它的含义但我不知道如何避免它?
非常感谢您的帮助,
最好的问候,
【问题讨论】:
标签: python matplotlib valueerror