uranus.py 1.5 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 Uranus(Body):
    """
    天王星
    ------------------------
三月三net's avatar
三月三net 已提交
16
      转轴倾角: 97.77°
三月三net's avatar
三月三net 已提交
17
      自转周期: 17.24 小时,自转角速度约为 -20.8816 度/小时(逆时针自转) = 360/(17.24)
M
march3 已提交
18 19
    远日点距离: 20.11 天文单位
    近日点距离: 18.33 天文单位
三月三net's avatar
三月三net 已提交
20
      逃逸速度: 21.3 km/s
M
march3 已提交
21 22 23 24 25 26 27 28
     公转速度: 6.81 km/s
     天体质量: 8.681✕10²⁵ kg(±0.0013)
     平均密度: 1.27 g/cm³ -> 1.27×10³ kg/m³
    """

    def __init__(self, name="Uranus", mass=8.681e25,
                 init_position=[19 * AU, 0, 0],
                 init_velocity=[0, 6.81, 0],
三月三net's avatar
三月三net 已提交
29 30
                 texture="uranus.jpg", size_scale=1.0, distance_scale=1.0,
                 rotation_speed=-20.8816):
M
march3 已提交
31 32 33 34 35 36
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
            "density": 1.27e3,
M
march3 已提交
37
            "color": (94, 124, 193),
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__':
    uranus = Uranus()
    print(uranus)