Exercise 11:chaotic tumbling of hyperion

Problem 4.19:Study the behavior of our model for Hyperion for different initial conditions.Estimate the Lyapunov exponent .Examine how this exponent varies as a function of the eccentricity of the orbit.

background:

The Main Body:

The model has been simplified as figure 4.16 in textbook.There are two forces acting on each of the masses, the force of the gravity from Saturn and the force from the rod. Since we are interested in the motion about the center of mass, the force from the rod does not contribute. The gravitational force on m1 can be written as


where Msat is the mass of Saturn, r1 is the distance from Saturn to m1, i and j are unit vectors in the x and y directions. The coordinates of the center of mass are (xc,yc), so that (x1-xc)i+(y1-yc)j is the vector from the center of mass to m1. The torque on m1 is then

with a similar expression for r2. The total torque on the moon is just r1+r2 and this is related to the time derivative of omega by:


Hence,we have


rc is the distance from the center of mass to Saturn.

Code:

import numpy as np

import pylab as pl

import math

class hyperion:

 def __init__(self,x0=1,y0=0,vx=0,vy=2*math.pi,dt=0.0001,total_time=10,initial_theta=0,initial_omega=0):

 self.x=[x0]

 self.y=[y0]

 self.r=[math.sqrt(x0**2+y0**2)]

 self.vx=[vx]

 self.vy=[vy]

 self.dt=dt

 self.t=[0]

 self.tt=total_time

 self.th=[initial_theta]

 self.om=[initial_omega]

 self.a=0

 self.b=0

 self.ecc=0

 self.dtheta=[]

 def run(self):

 while self.t[-1]<self.tt:

 self.vx.append(self.vx[-1]-4*math.pi**2*self.x[-1]/self.r[-1]**3*self.dt)

 self.vy.append(self.vy[-1]-4*math.pi**2*self.y[-1]/self.r[-1]**3*self.dt)

 self.x.append(self.x[-1]+self.vx[-1]*self.dt)

 self.y.append(self.y[-1]+self.vy[-1]*self.dt)

 self.r.append(math.sqrt(self.x[-1]**2+self.y[-1]**2))

 temp=-12*math.pi**2*(self.x[-1]*math.sin(self.th[-1])-self.y[-1]*math.cos(self.th[-1]))\

 *(self.x[-1]*math.cos(self.th[-1])+self.y[-1]*math.sin(self.th[-1]))

 self.om.append(self.om[-1]+temp*self.dt)

 self.th.append(self.th[-1]+self.om[-1]*self.dt)

 if self.th[-1]>math.pi:

 self.th[-1]-=2*math.pi

 elif self.th[-1]<-math.pi:

 self.th[-1]+=2*math.pi

 self.t.append(self.t[-1]+self.dt)

 self.a=(max(self.x)-min(self.x))/2

 self.b=(max(self.y)-min(self.y))/2

 self.ecc=math.sqrt(math.fabs(self.a**2-self.b**2))/self.a

 def showth(self):

 pl.title("Hyperion $\\theta$ versus time")

 pl.xlabel("time(Hyperion-year)")

 pl.ylabel("$\\theta (radius)$")

 pl.xlim(0,10)

 pl.plot(self.t, self.th,label="eccentricity=%.2f"%self.ecc) 

 pl.legend()

 pl.grid(True)

 pl.show()

 def showom(self):

 pl.title("Hyperion $\\omega$ versus time")

 pl.xlabel("time(Hyperion-year)")

 pl.ylabel("$\\omega (radius)$")

 pl.xlim(0,10)

 pl.plot(self.t, self.om,label="eccentricity=%.2f"%self.ecc) 

 pl.legend()

 pl.grid(True)

 pl.show()

#plot theta or omega versus time

a=hyperion()

a.run()

a.showth()

a=hyperion()

a.run()

a.showom()

#plot delta theta versus time and calculate the lyapuniv exponent

class qwer(hyperion):

 def haha(self):

 _d=0.01

 _vy=2*math.pi-1.1

 a=hyperion(vy=_vy)

 a.run()

 print(a.ecc)

 tempth1=a.th

 a=hyperion(vy=_vy,initial_theta=_d)

 a.run()

 tempth2=a.th

 for i in range(len(tempth2)):

 a.dtheta.append(math.log(math.fabs(tempth2[i]-tempth1[i])))

 pl.plot(a.t,a.dtheta,label="eccentricity=%.4f"%a.ecc)

 dd=[]

 tt=[]

 for j in range(len(a.dtheta)):

 dd.append(a.dtheta[j])

 tt.append(a.t[j])

 z=np.polyfit(tt,dd,1)

 p=np.poly1d(z)

 print(p)

 linspx=np.linspace(0,8)

 linspy=z[0]*linspx+z[1]

 pl.plot(linspx,linspy,label="lyapunov exp=%.4f"%z[0])

 pl.xlabel("time(Hyperion-year)")

 pl.ylabel("$\\Delta\\theta(radius)$")

 pl.title("Hyperion $\\Delta\\theta$ versus time for initial $\\Delta\\theta$=%.3f"%_d)

 pl.legend()

b=qwer()

b.haha()

as the eccentricity is not zero,the system become more and more chaotic:

How the lyapunov exponnet varies with the eccentricity:

Conclusion:

This extreme sensitivity to initial conditions is one of the hallmarks of chaotic behavior.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容

  • 黄昏的微光 透过云层 洒在广场的铜像上 街边的花灯 迷乱了游人的双眼 冲天的烟火 编织着绚烂的苍穹 煮一杯咖啡 坐...
    浩宇_90阅读 111评论 0 1
  • RDB快照持久化 aof二进制整块,恢复很快。 RDB的工作原理 每隔N分钟或N次写操作后,从内存中dump数据形...
    Dafanzi阅读 636评论 0 0
  • 一个人对故园家国的眷恋,随着年龄的增长,会愈加浓烈。因此才会有“叶落归根”之说。很多英雄才子,在外闯荡一辈...
    蔡文兵阅读 2,454评论 7 20