sirius.py 1.7 KB
Newer Older
三月三net's avatar
三月三net 已提交
1 2 3 4 5 6 7 8
# -*- coding:utf-8 -*-
# title           :天狼星
# description     :天狼星
# author          :Python超人
# date            :2023-02-11
# link            :https://gitcode.net/pythoncr/
# python_version  :3.8
# ==============================================================================
三月三net's avatar
三月三net 已提交
9
from bodies import FixedStar, Sun
三月三net's avatar
三月三net 已提交
10 11 12 13 14 15
from common.consts import MO


class Sirius(FixedStar):
    """
    天狼星 (Sirius)
三月三net's avatar
三月三net 已提交
16 17
    质量:2.02太阳质量 TODO: ???
    密度:2.6 g/cm³ TODO: ???
三月三net's avatar
三月三net 已提交
18 19 20 21 22 23 24 25 26
    颜色值:#FFF0E4
    直径:1.71倍太阳直径
    ------------------------
    == 太阳参数 ==
    自转周期: 24.47 地球日,自转角速度约为 0.6130 度/小时 = 360/(24.47*24)
    天体质量: 1.9891×10³⁰ kg
    平均密度: 1.408×10³ kg/m³
    """

三月三net's avatar
三月三net 已提交
27
    def __init__(self, name="天狼星", mass=2.06 * MO,
三月三net's avatar
三月三net 已提交
28 29 30 31 32 33 34 35 36 37
                 init_position=[0, 0, 0],
                 init_velocity=[0, 0, 0],
                 color=(0xFF, 0xF0, 0xE4),
                 texture="fixed_star.png", size_scale=1.0, distance_scale=1.0,
                 rotation_speed=0.1, ignore_mass=False):
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
三月三net's avatar
三月三net 已提交
38
            "density": 0.58e3,
三月三net's avatar
三月三net 已提交
39 40 41 42 43 44 45 46 47 48 49
            "color": color,
            "texture": texture,
            "size_scale": size_scale,
            "distance_scale": distance_scale,
            "rotation_speed": rotation_speed,
            "ignore_mass": ignore_mass
        }
        super().__init__(**params)


if __name__ == '__main__':
三月三net's avatar
三月三net 已提交
50 51 52
    fixed_star = Sirius()
    sun = Sun()
    print(fixed_star)
三月三net's avatar
三月三net 已提交
53
    print(sun)
三月三net's avatar
三月三net 已提交
54 55
    print("质量倍数", fixed_star.mass / sun.mass)
    print("半径倍数", fixed_star.raduis / sun.raduis)