python求解四阶微分方程_【Python学习之路】Scipy 解微分方程

解微分方程

%pylab inline

Populating the interactive namespace from numpy and matplotlib

积分求解

简单的例子

d y d t = s i n ( t ) \frac{dy}{dt} = sin(t)dtdy​=sin(t)

def dy_dt(y, t):

return np.sin(t)

积分求解:

from scipy.integrate import odeint

t = np.linspace(0, 2*pi, 100)

result = odeint(dy_dt, 0, t)

fig = figure(figsize=(12,4))

p = plot(t, result, "rx", label=r"$\int_{0}^{x}sin(t) dt $")

p = plot(t, -cos(t) + cos(0), label=r"$cos(0) - cos(t)$")

p = plot(t, dy_dt(0, t), "g-", label=r"$\frac{dy}{dt}(t)$")

l = legend(loc="upper right")

xl = xlabel("t")

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-HGOfLjqO-1576402299272)(04.07-ODEs_files/04.07-ODEs_8_0.png)]

高阶微分方程

抛物运动(竖直方向):

d 2 x d t 2 = g − D m d x d t \frac{d^2x}{dt^2} = g - \frac{D}{m}\frac{dx}{dt}dt2d2x​=g−mD​dtdx​

改写成如下形式:

y = [ x , d x d t ] y = \left[x, \frac{dx}{dt}\right]y=[x,dtdx​]

KaTeX parse error: Undefined control sequence: \ at position 42: …}{dt} &= y_1 \\\̲ ̲\frac{dy_1}{dt}…

def dy_dt(y, t):

"""Governing equations for projectile motion with drag.

y[0] = position

y[1] = velocity

g = gravity (m/s2)

D = drag (1/s) = force/velocity

m = mass (kg)

"""

g = -9.8

D = 0.1

m = 0.15

dy1 = g - (D/m) * y[1]

dy0 = y[1] if y[0] >= 0 else 0.

return [dy0, dy1]

position_0 = 0.

velocity_0 = 100

t = linspace(0, 12, 100)

y = odeint(dy_dt, [position_0, velocity_0], t)

p = plot(t, y[:,0])

yl = ylabel("Height (m)")

xl = xlabel("Time (s)")

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-7LbFTdSF-1576402299273)(04.07-ODEs_files/04.07-ODEs_13_0.png)]

y, infodict = odeint(dy_dt, [position_0, velocity_0], t, full_output=True, printmessg=True, )

print sorted(infodict.keys())

print "cumulative number of function evaluations at each calculated point:", infodict['nfe']

print "cumulative number of time steps", infodict['nst']

Integration successful.

['hu', 'imxer', 'leniw', 'lenrw', 'message', 'mused', 'nfe', 'nje', 'nqu', 'nst', 'tcur', 'tolsf', 'tsw']

cumulative number of function evaluations at each calculated point: [ 45 49 51 53 55 59 61 61 63 65 67 67 69 71 73 73 75 77

77 79 79 81 81 83 85 85 87 87 89 89 91 91 93 95 95 97

97 99 99 101 101 103 103 105 107 107 109 109 111 111 113 113 115 115

117 117 119 119 121 121 123 123 123 125 125 127 127 129 129 131 131 131

133 133 135 135 135 137 137 139 139 139 141 141 143 143 143 145 145 147

147 149 149 149 154 158 274 280 280]

cumulative number of time steps [ 20 22 23 24 25 27 28 28 29 30 31 31 32 33 34 34 35 36

36 37 37 38 38 39 40 40 41 41 42 42 43 43 44 45 45 46

46 47 47 48 48 49 49 50 51 51 52 52 53 53 54 54 55 55

56 56 57 57 58 58 59 59 59 60 60 61 61 62 62 63 63 63

64 64 65 65 65 66 66 67 67 67 68 68 69 69 69 70 70 71

71 72 72 72 73 75 130 133 133]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值