asteroids.py 2.0 KB
Newer Older
三月三net's avatar
三月三net 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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
# -*- coding:utf-8 -*-
# title           :小行星
# description     :小行星
# author          :Python超人
# date            :2023-02-11
# link            :https://gitcode.net/pythoncr/
# python_version  :3.8
# ==============================================================================
from bodies.body import Body, AU


class Asteroids(Body):
    """
    小行星群
质量 (kg):~4.1×1010 kg
密度 :2.3±0.3 g/cm³
    ------------------------
    小行星带距离太阳约2.17-3.64天文单位的空间区域内,聚集了大约50万颗以上的小行星。
    这么多小行星能够被凝聚在小行星带中,除了太阳的引力作用以外,木星的引力也起着作用。
    [小行星25143的数据如下]:
     远日点距离: 253.520Gm (1.695AU)
     近日点距离: 142.568Gm (0.953AU)
       逃逸速度: 0.0002 km/s
      公转速度: 25.37 km/s
      天体质量: 4.1✕10¹⁰ kg
      平均密度: 2.3✕10³ kg/m³
    """

    def __init__(self, name="Asteroids", mass=1.9891e30,
                 init_position=[0, 0, 0],
                 init_velocity=[0, 0, 0],
                 texture="asteroids.png", size_scale=1.0, distance_scale=1.0,rotation_speed=0.6130):
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
            "density": 1.408e3,
            "color": (179, 231, 255),
            "texture": texture,
            "size_scale": size_scale,
            "distance_scale": distance_scale,
            "rotation_speed": rotation_speed
        }
        super().__init__(**params)
        # 环状星群
三月三net's avatar
三月三net 已提交
47
        self.torus_stars = True
三月三net's avatar
三月三net 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

    def ignore_gravity(self, body):
        """
        是否忽略引力
        :param body:
        :return:
        """
        # 小行星只对恒星有引力,忽略其他行星的引力
        # if body.is_fixed_star:
        return True

        # return True


if __name__ == '__main__':
    asteroids = Asteroids()
    print(asteroids)