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


class Aldebaran(FixedStar):
    """
    毕宿五 (Aldebaran)
三月三net's avatar
三月三net 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    --------------- 维基百科 ---------------
    观测资料
    历元 J2000.0
    星座	金牛座
    星官	毕(毕宿)
    赤经	04h 35m 55.23907s[1]
    赤纬	+16° 30′ 33.4885″[1]
    视星等(V)	0.75–0.95[2]
    特性
    演化阶段	红巨星分支[3]
    光谱分类	K5+ III[4]
    视星等 (J)	−2.095[5]
    U−B 色指数	+1.92[6]
    B−V 色指数	+1.44[6]
    变星类型	LB[2]
    天体测定
    径向速度 (Rv)	+54.26±0.03[7] km/s
    自行 (μ)	赤经:63.45±0.84[1] mas/yr
    赤纬:−188.94±0.65[1] mas/yr
    视差 (π)	49.97 ± 0.75[8] mas
    距离	65.3 ± 1 ly
    (20 ± 0.3 pc)
    绝对星等 (MV)	−0.641±0.034[8]
    详细资料
    质量	1.16±0.07[9] M☉
    半径	44.13±0.84[10] R☉
    表面重力 (log g)	1.45±0.3[11]
    亮度	439±17[12] L☉
    温度	3,900±50[11] K
    金属量 [Fe/H]	−0.33±0.1[11] dex
    自转	520 days[13]
    自转速度 (v sin i)	3.5±1.5[11] km/s
    年龄	6.4Gyr[9] Gyr
三月三net's avatar
三月三net 已提交
49 50 51 52 53 54 55 56

    ------------------------
    == 太阳参数 ==
    自转周期: 24.47 地球日,自转角速度约为 0.6130 度/小时 = 360/(24.47*24)
    天体质量: 1.9891×10³⁰ kg
    平均密度: 1.408×10³ kg/m³
    """

三月三net's avatar
三月三net 已提交
57
    def __init__(self, name="毕宿五", mass=1.16 * MO,
三月三net's avatar
三月三net 已提交
58 59 60 61
                 init_position=[0, 0, 0],
                 init_velocity=[0, 0, 0],
                 color=(250, 195, 47),
                 texture="fixed_star.png", size_scale=1.0, distance_scale=1.0,
三月三net's avatar
三月三net 已提交
62
                 rotation_speed=0.35, ignore_mass=False):
三月三net's avatar
三月三net 已提交
63 64 65 66 67
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
三月三net's avatar
三月三net 已提交
68
            "density": 0.019004605622458228,
三月三net's avatar
三月三net 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81
            "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__':
    fixed_star = Aldebaran()
    print(fixed_star)
三月三net's avatar
三月三net 已提交
82 83
    fixed_star.compare_with_sun()
    fixed_star.density_by_radius(num_sun_raduis=44.13)