作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有用于绘制以下捕食者猎物模型的代码:
dx/dt = x − xy, dy/dt = −y + xy
from pylab import *
xvalues, yvalues = meshgrid(arange(0, 3, 0.1), arange(0, 3, 0.1))
xdot = xvalues - xvalues * yvalues
ydot = - yvalues + xvalues * yvalues
streamplot(xvalues, yvalues, xdot, ydot)
show()
d^2θ/dt^2 = (−g/L)sin(θ)
最佳答案
你也一样,先把它变成一阶系统
thetadot = omega
omegadot = -g/L*sin(theta)
theta, omega
至
x,y
为简短起见,然后像以前一样继续:
g,L = 1,1
xvalues, yvalues = meshgrid(arange(-8, 8, 0.1), arange(-3, 3, 0.1))
xdot = yvalues
ydot = -g/L*sin(xvalues)
streamplot(xvalues, yvalues, xdot, ydot)
grid(); show()
关于python - 如何使用 pylab 绘制钟摆运动的相平面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49807524/
我是一名优秀的程序员,十分优秀!