saturn.py 1.8 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 Saturn(Body):
    """
    土星
    ------------------------
三月三net's avatar
三月三net 已提交
16
      自转倾角: 26.73 度
三月三net's avatar
三月三net 已提交
17
      自转周期: 10.66 小时,自转角速度约为 33.7711 度/小时 = 360/(10.66)
M
march3 已提交
18 19
    远日点距离: 10.1238 天文单位
    近日点距离: 9.0412 天文单位
三月三net's avatar
三月三net 已提交
20
      逃逸速度: 35.49 km/s
M
march3 已提交
21 22 23 24 25
     公转速度: 9.64 km/s
     天体质量: 5.6834✕10²⁶ kg
     平均密度: 0.687 g/cm³ -> 0.687×10³ kg/m³
    """

三月三net's avatar
三月三net 已提交
26
    def __init__(self, name="土星", mass=5.6834e26,
M
march3 已提交
27 28
                 init_position=[10 * AU, 0, 0],
                 init_velocity=[0, 9.64, 0],
三月三net's avatar
三月三net 已提交
29 30
                 texture="saturn.jpg", size_scale=1.0, distance_scale=1.0,
                 rotation_speed=33.7711):
M
march3 已提交
31 32 33 34 35 36
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
            "density": 0.687e3,
M
march3 已提交
37
            "color": (219, 189, 159),
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
        }
        super().__init__(**params)

M
march3 已提交
45 46 47 48 49 50 51 52
    @property
    def has_rings(self):
        """
        土星带光环的天体
        :return:
        """
        return True

M
march3 已提交
53 54 55 56 57 58 59 60
    @property
    def rings_color(self):
        """
        土星光环的颜色
        :return:
        """
        return 173, 121, 92

M
march3 已提交
61 62 63 64

if __name__ == '__main__':
    saturn = Saturn()
    print(saturn)