mars.py 1.6 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 Mars(Body):
    """
    火星
    ------------------------
三月三net's avatar
三月三net 已提交
16
      转轴倾角: 25.19°
三月三net's avatar
三月三net 已提交
17
      自转周期: 24.62 小时,自转角速度约为 14.6223 度/小时 = 360/(24.62)
M
march3 已提交
18 19
    远日点距离: 1.666 天文单位
    近日点距离: 1.382 天文单位
三月三net's avatar
三月三net 已提交
20
      逃逸速度: 5.027 km/s
M
march3 已提交
21 22 23 24
     公转速度: 24.13 km/s
     天体质量: 6.4171✕10²³
     平均密度: 3.9335 g/cm³ -> 3.9335✕10³ kg/m³
    """
三月三net's avatar
三月三net 已提交
25
    def __init__(self, name="火星", mass=6.4171e23,
M
march3 已提交
26 27
                 init_position=[1.5 * AU, 0, 0],
                 init_velocity=[0, 24.13, 0],
三月三net's avatar
三月三net 已提交
28
                 texture="mars.jpg", size_scale=1.0, distance_scale=1.0,
三月三net's avatar
三月三net 已提交
29
                 rotation_speed=14.6223, ignore_mass=False, trail_color=None):
M
march3 已提交
30 31 32 33 34 35
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
            "density": 3.9335e3,
M
march3 已提交
36
            "color": (213, 97, 59),
M
march3 已提交
37 38
            "texture": texture,
            "size_scale": size_scale,
三月三net's avatar
三月三net 已提交
39
            "distance_scale": distance_scale,
三月三net's avatar
三月三net 已提交
40 41 42
            "rotation_speed": rotation_speed,
            "ignore_mass": ignore_mass,
            "trail_color": trail_color
M
march3 已提交
43 44 45 46 47 48 49
        }
        super().__init__(**params)


if __name__ == '__main__':
    mars = Mars()
    print(mars)