如何用Python解决僵化的颂歌?
我是Python初学者。我正在尝试切换 matlab 中的一些程序。 我需要求解一个刚性颂方程,其输入都是矩阵。在matlab中我使用
[ttT,uT] = ode23s('SST',t,fT);
I'm a Python beginner. I'm trying to switch some programs that I have in matlab.
I need solve a stiff ode equation, whose inputs are all matrices. In matlab I use
[ttT,uT] = ode23s('SST',t,fT);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您在 Matlab 中执行的大多数操作,您可以使用 Python 中的 NumPy 模块来执行。可以在此处找到。
您可能还会发现相关模块 SciPy 也很有用。
PyDSTool可能也与您相关。它是 Radau 解算器的包装器。
那么您可能想尝试 matplotlib 进行绘图。它的工作原理很像 Matlab 的绘图功能。
以下链接也可能有所帮助:
http://www.ews.uiuc .edu/~mrgates2/ode/
http://wiki.python.org/moin/NumericAndScientific?action=show&redirect=SciPy
将刚性 ODE 与 Python 集成
For most things you do in Matlab, you can do them with the NumPy module in Python. It can be found here.
You might also find the related module SciPy useful as well.
PyDSTool might also be of relevance to you. It's a wrapper around the Radau solver.
Then you might like to try matplotlib for plotting. It works quite like Matlab's plotting thing.
The following links might help, too:
http://www.ews.uiuc.edu/~mrgates2/ode/
http://wiki.python.org/moin/NumericAndScientific?action=show&redirect=SciPy
Integrate stiff ODEs with Python
如果您向我展示微分方程,我可以为您提供更多帮助,但一般来说,求解刚性 ODE 系统的一个好方法是通过下一句话:
您的函数必须事先以这种方式定义: function(t, 对于刚性
ODE 系统,我建议使用“BDF”方法(通常用于求解反应堆中的微运动系统,其中时间的重要性可能会发生很大变化)
以获取有关代码选项的更多信息:<一href="https://docs.scipy.org/doc/scipy/reference/ generated/scipy.integrate.solve_ivp.html" rel="nofollow noreferrer">https://docs.scipy.org/doc/scipy/参考/生成/scipy.integrate.solve_ivp.html
If you show me the differential equations I can help you a little more, but in general, a good way to solve a stiff ODE system is through the next sentence:
where your function has to be defined previously in this way: function(t,variable,parameters)
For stiff ODE system, I suggest use the method 'BDF' (is typically used in the solve of microkinetic systems in reactors, where the importance of the time could change a lot)
for more infomation about the options of the code: https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.solve_ivp.html