mercury.py 1.3 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 16 17 18 19 20 21 22 23 24 25 26
# python_version  :3.8
# ==============================================================================
from bodies.body import Body, AU


class Mercury(Body):
    """
    水星
    ------------------------
    远日点距离: 0.466697 天文单位
    近日点距离: 0.307499 天文单位
    逃逸速度: 4.25 km/s
     公转速度: 47.87 km/s
     天体质量: 3.3011✕10²³ kg
     平均密度: 5.427 g/cm³ -> 5.427×10³ kg/m³
    """

    def __init__(self, name="Mercury", mass=3.3011e23,
                 init_position=[0.4 * AU, 0, 0],
                 init_velocity=[0, 47.87, 0],
M
march3 已提交
27
                 texture="mercury.jpg", size_scale=1.0, distance_scale=1.0):
M
march3 已提交
28 29 30 31 32 33
        params = {
            "name": name,
            "mass": mass,
            "init_position": init_position,
            "init_velocity": init_velocity,
            "density": 5.427e3,
M
march3 已提交
34
            "color": (1, 89, 162),
M
march3 已提交
35 36 37 38 39 40 41 42 43 44
            "texture": texture,
            "size_scale": size_scale,
            "distance_scale": distance_scale
        }
        super().__init__(**params)


if __name__ == '__main__':
    mercury = Mercury()
    print(mercury)