body.py 10.2 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
# python_version  :3.8
# ==============================================================================
M
march3 已提交
9
from abc import ABCMeta, abstractmethod
M
march3 已提交
10 11 12
import json
import numpy as np
import math
M
march3 已提交
13
from common.consts import AU
三月三net's avatar
三月三net 已提交
14
import copy
M
march3 已提交
15 16


M
march3 已提交
17
class Body(metaclass=ABCMeta):
M
march3 已提交
18
    """
M
march3 已提交
19
    天体基类
M
march3 已提交
20
    """
M
march3 已提交
21

M
march3 已提交
22 23
    def __init__(self, name, mass, init_position, init_velocity,
                 density=5e3, color=(125 / 255, 125 / 255, 125 / 255),
三月三net's avatar
三月三net 已提交
24
                 texture=None, size_scale=1.0, distance_scale=1.0,
三月三net's avatar
三月三net 已提交
25 26
                 rotation_speed=None, parent=None, ignore_mass=False,
                 is_fixed_star=False):
M
march3 已提交
27 28 29 30 31 32 33 34 35 36 37
        """
        天体类
        :param name: 天体名称
        :param mass: 天体质量 (kg)
        :param init_position: 初始位置 (km)
        :param init_velocity: 初始速度 (km/s)
        :param density: 平均密度 (kg/m³)
        :param color: 天体颜色(纹理图片优先)
        :param texture: 纹理图片
        :param size_scale: 尺寸缩放
        :param distance_scale: 距离缩放
三月三net's avatar
三月三net 已提交
38
        :param rotation_speed: 自旋速度(度/小时)
三月三net's avatar
三月三net 已提交
39 40 41
        :param parent: 天体的父对象
        :param ignore_mass: 是否忽略质量(如果为True,则不计算引力)
        :param is_fixed_star: 是否为恒星
M
march3 已提交
42
        """
M
march3 已提交
43 44 45
        self.__his_pos = []
        self.__his_vel = []
        self.__his_acc = []
三月三net's avatar
三月三net 已提交
46
        self.__his_reserved_num = 200
三月三net's avatar
三月三net 已提交
47
        # 是否忽略质量(如果为True,则不计算引力)
三月三net's avatar
三月三net 已提交
48
        self.ignore_mass = ignore_mass
M
march3 已提交
49

M
march3 已提交
50 51 52
        if name is None:
            name = getattr(self.__class__, '__name__')

M
march3 已提交
53 54 55
        self.name = name
        self.__mass = mass

三月三net's avatar
三月三net 已提交
56 57 58
        self.__init_position = None
        self.__init_velocity = None

M
march3 已提交
59 60 61
        self.init_position = np.array(init_position, dtype='float32')
        self.init_velocity = np.array(init_velocity, dtype='float32')

三月三net's avatar
三月三net 已提交
62 63
        # self.__position = copy.deepcopy(self.init_position)
        # self.__velocity = copy.deepcopy(self.init_velocity)
M
march3 已提交
64 65

        self.__density = density
三月三net's avatar
三月三net 已提交
66
        self.__rotation_speed = rotation_speed
M
march3 已提交
67 68 69 70 71 72 73 74

        self.color = color
        self.texture = texture

        self.size_scale = size_scale
        self.distance_scale = distance_scale

        # 初始化后,加速度为0,只有多个天体的引力才会影响到加速度
M
march3 已提交
75
        # km/s²
M
march3 已提交
76 77
        self.__acceleration = np.array([0, 0, 0], dtype='float32')
        self.__record_history()
M
march3 已提交
78

M
march3 已提交
79 80
        # 是否显示
        self.appeared = True
三月三net's avatar
三月三net 已提交
81
        self.parent = parent
三月三net's avatar
三月三net 已提交
82
        self.__is_fixed_star = is_fixed_star
M
march3 已提交
83

三月三net's avatar
三月三net 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    @property
    def init_position(self):
        """
        获取天体的初始位置(单位:km)
        :return:
        """
        return self.__init_position

    @init_position.setter
    def init_position(self, value):
        """
        设置天体的初始位置(单位:km)
        :param value:
        :return:
        """
        self.__init_position = np.array(value, dtype='float32')
        self.__position = copy.deepcopy(self.__init_position)

    @property
    def init_velocity(self):
        """
        获取天体的初始速度 (km/s)
        :return:
        """
        return self.__init_velocity

    @init_velocity.setter
    def init_velocity(self, value):
        """
        设置天体的初始速度 (km/s)
        :param value:
        :return:
        """
        self.__init_velocity = np.array(value, dtype='float32')
        self.__velocity = copy.deepcopy(self.__init_velocity)

M
march3 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133
    @property
    def has_rings(self):
        """
        是否为带光环的天体(土星为 True)
        :return:
        """
        return False

    @property
    def is_fixed_star(self):
        """
        是否为恒星(太阳为 True)
        :return:
        """
三月三net's avatar
三月三net 已提交
134 135 136 137 138
        return self.__is_fixed_star

    @is_fixed_star.setter
    def is_fixed_star(self, value):
        self.__is_fixed_star = value
M
march3 已提交
139

M
march3 已提交
140 141
    @property
    def position(self):
M
march3 已提交
142 143 144 145
        """
        获取天体的位置(单位:km)
        :return:
        """
M
march3 已提交
146 147 148 149
        return self.__position

    @position.setter
    def position(self, value):
M
march3 已提交
150 151 152 153 154
        """
        设置天体的位置(单位:km)
        :param value:
        :return:
        """
M
march3 已提交
155 156 157 158 159
        self.__position = value
        self.__record_history()

    @property
    def acceleration(self):
M
march3 已提交
160 161 162 163
        """
        获取天体的加速度(单位:km/s²)
        :return:
        """
M
march3 已提交
164 165 166 167
        return self.__acceleration

    @acceleration.setter
    def acceleration(self, value):
M
march3 已提交
168 169 170 171 172
        """
        设置天体的加速度(单位:km/s²)
        :param value:
        :return:
        """
M
march3 已提交
173 174 175 176 177
        self.__acceleration = value
        self.__record_history()

    @property
    def velocity(self):
M
march3 已提交
178 179 180 181
        """
        获取天体的速度(单位:km/s)
        :return:
        """
M
march3 已提交
182 183 184 185
        return self.__velocity

    @velocity.setter
    def velocity(self, value):
M
march3 已提交
186 187 188 189 190
        """
        设置天体的速度(单位:km/s)
        :param value:
        :return:
        """
M
march3 已提交
191 192 193 194
        self.__velocity = value
        self.__record_history()

    def __append_history(self, his_list, data):
M
march3 已提交
195
        """
M
march3 已提交
196
        追加每个位置时刻的历史数据
M
march3 已提交
197 198 199 200 201 202 203 204 205
        :param his_list:
        :param data:
        :return:
        """
        # 如果历史记录为0 或者 新增数据和最后的历史数据不相同,则添加
        if len(his_list) == 0 or \
                np.sum(data == his_list[-1]) < len(data):
            his_list.append(data.copy())

M
march3 已提交
206
    def __record_history(self):
M
march3 已提交
207
        """
M
march3 已提交
208
        记录每个位置时刻的历史数据
M
march3 已提交
209 210 211 212
        :return:
        """
        # 如果历史记录数超过了保留数量,则截断,只保留 __his_reserved_num 数量的历史
        if len(self.__his_pos) > self.__his_reserved_num:
M
march3 已提交
213 214 215
            self.__his_pos = self.__his_pos[len(self.__his_pos) - self.__his_reserved_num:]
            self.__his_vel = self.__his_vel[len(self.__his_vel) - self.__his_reserved_num:]
            self.__his_acc = self.__his_acc[len(self.__his_acc) - self.__his_reserved_num:]
M
march3 已提交
216 217

        # 追加历史记录(位置、速度、加速度)
M
march3 已提交
218 219 220 221
        self.__append_history(self.__his_pos, self.position)
        self.__append_history(self.__his_vel, self.velocity)
        self.__append_history(self.__his_acc, self.acceleration)
        # print(self.name, "his pos->", self.__his_pos)
M
march3 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

    def his_position(self):
        """
        历史位置
        :return:
        """
        return self.__his_pos

    def his_velocity(self):
        """
        历史瞬时速度
        :return:
        """
        return self.__his_vel

    def his_acceleration(self):
        """
        历史瞬时加速度
        :return:
        """
        return self.__his_acc

    @property
    def mass(self):
        """
M
march3 已提交
247
        天体质量 (单位:kg)
M
march3 已提交
248 249 250 251
        :return:
        """
        return self.__mass

三月三net's avatar
三月三net 已提交
252 253 254 255 256 257 258 259
    @property
    def rotation_speed(self):
        """
        自旋速度(度/小时)
        :return:
        """
        return self.__rotation_speed

M
march3 已提交
260 261 262
    @property
    def density(self):
        """
M
march3 已提交
263
        平均密度 (单位:kg/m³)
M
march3 已提交
264 265 266 267 268 269 270
        :return:
        """
        return self.__density

    @property
    def volume(self):
        """
M
march3 已提交
271
        天体的体积(单位:km³)
M
march3 已提交
272 273 274
        """
        # v = m/ρ
        # 体积(m³) = 质量(kg) / 密度(kg/m³)
M
march3 已提交
275 276
        # 体积(km³) = 体积(m³)  / 1e9
        v = self.mass / self.density / 1e9
M
march3 已提交
277 278 279 280 281
        return v

    @property
    def raduis(self):
        """
M
march3 已提交
282
        天体的半径(单位:km)
M
march3 已提交
283 284 285 286 287 288 289 290
        :return:
        """
        # V = ⁴⁄₃πr³  -> r = pow((3V)/(4π),1/3)
        return pow(3 * self.volume / (4 * math.pi), 1 / 3)

    @property
    def diameter(self):
        """
M
march3 已提交
291
        天体的直径(单位:km)
M
march3 已提交
292 293 294 295 296 297 298 299 300
        :return:
        """
        return self.raduis * 2

    def __repr__(self):
        return '<%s> m=%.3e(kg), r=%.3e(km), p=[%.3e,%.3e,%.3e](km), v=%s(km/s)' % \
               (self.name, self.mass, self.raduis,
                self.position[0], self.position[1], self.position[2], self.velocity)

M
march3 已提交
301 302 303 304 305 306 307 308 309
    def ignore_gravity(self, body):
        """
        是否忽略引力
        :param body:
        :return:
        """

        return False

M
march3 已提交
310
    def position_au(self):
M
march3 已提交
311 312 313 314
        """
        获取天体的位置(单位:天文单位 A.U.)
        :return:
        """
M
march3 已提交
315 316 317 318
        pos = self.position
        pos_au = pos / AU
        return pos_au

M
march3 已提交
319 320 321 322 323
    # def change_velocity(self, dv):
    #     self.velocity += dv
    #
    # def move(self, dt):
    #     self.position += self.velocity * dt
M
march3 已提交
324 325

    def reset(self):
M
march3 已提交
326 327 328 329
        """
        重新设置初始速度和初始位置
        :return:
        """
三月三net's avatar
三月三net 已提交
330 331
        self.position = copy.deepcopy(self.init_position)
        self.velocity = copy.deepcopy(self.init_velocity)
M
march3 已提交
332

M
march3 已提交
333 334 335 336 337 338 339 340 341 342
    # def kinetic_energy(self):
    #     """
    #     计算动能(千焦耳)
    #     表示动能,单位为焦耳j,m为质量,单位为千克,v为速度,单位为米/秒。
    #     ek=(1/2).m.v^2
    #     m(kg) v(m/s) -> j
    #     m(kg) v(km/s) -> kj
    #     """
    #     v = self.velocity
    #     return 0.5 * self.mass * (v[0] ** 2 + v[1] ** 2 + v[2] ** 2)
M
march3 已提交
343 344 345

    @staticmethod
    def build_bodies_from_json(json_file):
M
march3 已提交
346 347 348 349 350
        """
        JSON文件转为天体对象
        :param json_file:
        :return:
        """
M
march3 已提交
351
        bodies = []
三月三net's avatar
三月三net 已提交
352 353
        params = {}
        with open(json_file, "r", encoding='utf-8') as read_content:
M
march3 已提交
354 355 356 357 358
            json_data = json.load(read_content)
            for body_data in json_data["bodies"]:
                # print(body_data)
                body = Body(**body_data)
                bodies.append(body)
三月三net's avatar
三月三net 已提交
359 360
            if "params" in json_data:
                params = json_data["params"]
M
march3 已提交
361
                # print(body.position_au())
三月三net's avatar
三月三net 已提交
362
        return bodies, params
M
march3 已提交
363 364 365 366


if __name__ == '__main__':
    # build_bodies_from_json('../data/sun.json')
三月三net's avatar
三月三net 已提交
367
    bodies, params = Body.build_bodies_from_json('../data/sun_earth.json')
M
march3 已提交
368
    # 太阳半径 / 地球半径
M
march3 已提交
369
    print("太阳半径 / 地球半径 =", bodies[0].raduis / bodies[1].raduis)
三月三net's avatar
三月三net 已提交
370
    print("params:", params)
M
march3 已提交
371
    for body in bodies:
M
march3 已提交
372
        print(body)