pluto.py 1.6 KB
Newer Older
M
march3 已提交
1
# -*- coding:utf-8 -*-
M
march3 已提交
2 3
# title           :冥王星
# description     :冥王星(从太阳系的行星中排除)
M
march3 已提交
4
# author          :Python超人
M
march3 已提交
5 6
# date            :2023-02-11
# link            :https://gitcode.net/pythoncr/
M
march3 已提交
7 8 9 10 11 12 13 14 15
# python_version  :3.8
# ==============================================================================
from bodies.body import Body, AU


class Pluto(Body):
    """
    冥王星
    ------------------------
三月三net's avatar
三月三net 已提交
16
      转轴倾角: 119.591±0.014°
三月三net's avatar
三月三net 已提交
17
      自转周期: 6.39 地球日,自转角速度约为 -2.3474 度/小时(逆时针自转) = 360/(6.39*24)
M
march3 已提交
18 19
    远日点距离: 49.305 天文单位(73.760 亿千米)
    近日点距离: 29.658 天文单位(44.368 亿千米)
三月三net's avatar
三月三net 已提交
20
      逃逸速度: 1.212 km/s
M
march3 已提交
21 22 23 24 25
     公转速度: 4.7 km/s
     天体质量: 1.303✕10²² kg(±0.003)
     平均密度: 1.854 g/cm³(±0.006) -> 1.854×10³ kg/m³
    """

三月三net's avatar
三月三net 已提交
26
    def __init__(self, name="冥王星", mass=1.303e22,
M
march3 已提交
27 28
                 init_position=[40 * AU, 0, 0],
                 init_velocity=[0, 4.7, 0],
三月三net's avatar
三月三net 已提交
29
                 texture="pluto.png", size_scale=1.0, distance_scale=1.0,
三月三net's avatar
三月三net 已提交
30
                 rotation_speed=-2.3474):
M
march3 已提交
31 32 33 34 35 36
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
            "density": 1.854e3,
M
march3 已提交
37
            "color": (67, 28, 7),
M
march3 已提交
38 39
            "texture": texture,
            "size_scale": size_scale,
三月三net's avatar
三月三net 已提交
40 41
            "distance_scale": distance_scale,
            "rotation_speed": rotation_speed
M
march3 已提交
42 43 44 45 46 47 48
        }
        super().__init__(**params)


if __name__ == '__main__':
    pluto = Pluto()
    print(pluto)