第16堂課
單擺程式碼:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # -*- coding: utf8 -*-
# 匯入視覺化套件
from vpython import *
scene = canvas(width=800, height=800, background=vector(0.5,0.5,0))
scene.forward = vector(0, -1, 0)
G=6.673E-11
def G_force(mass, pos_vector):
return -G * sun.mass * mass / mag2(pos_vector) * norm(pos_vector)
sun = sphere(radius = 2.1E10, color = color.orange, texture = textures.stucco)
sun.mass = 1.989E30
sun.pos = vector(0,0,0)
earth = sphere(radius = 9.56E9, texture = textures.earth, make_trail = True)
earth.mass = 5.972E24
earth.distance = 1.495E11
earth.v = vector(0,0,2.9783E4)
earth.pos = vector(earth.distance, 0, 0)
dt = 60*60
while True:
rate(6*24)
earth.a = G_force(earth.mass, earth.pos) / earth.mass
earth.v = earth.v + earth.a * dt
earth.pos = earth.pos + earth.v * dt
|
作業:
增加一顆火星
mars.radius = 4.9E9
mars.mass = 6.42E23
mars.distance = 2.279E11
mars.v = vector(0, 0, 2.4077E4)
作業:增加一顆哈雷慧星
halley.radius = 1.0E10
halley.mass = 2.2E14
halley.distance = 8.7665E10
halley.v = vector(0, 0, 54563.3)
本單元課程自2018.7.5日起已被瀏覽 263 次