偏微分方程的求解

import numpy as np
import matplotlib.pyplot as plt

h = 0.001                                      #空间步长
N = 1000                                       #空间步数
dt = 0.0001                                    #时间步长
M = 10000                                      #时间的步数
n = np.

猜你喜欢

转载自blog.csdn.net/weixin_40653652/article/details/115233397