快速FD 有限差分仿真库。 该软件包可让您快速构建简单的数值模拟。 特征 快速构建具有任意数量的域,标量,尺寸和边界条件的有限差分仿真。 简洁明了的语法。 使用Scipy或Cupy稀疏库为CPU或GPU建立模型。 任意导数阶和逼近精度。 部分模型更新可最大程度地减少迭代解决方案中的开销。 隐式瞬态仿真。 用法 # Import fastfd and select the scipy sparse library (or cupy for GPU support) import fastfd as ffd ffd . sparse_lib ( 'scipy' ) import numpy as np # Define axes x = ffd . LinearAxis ( 'x' , start = 0 , stop = 1 , num = 201 ) y = ffd . LinearAxi