body.py 11.8 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
                 rotation_speed=None, parent=None, ignore_mass=False,
三月三net's avatar
三月三net 已提交
26
                 is_fixed_star=False, trail_color=None):
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: 是否为恒星
三月三net's avatar
三月三net 已提交
42
        :param trail_color: 天体拖尾颜色(默认天体颜色)
M
march3 已提交
43
        """
M
march3 已提交
44 45 46
        self.__his_pos = []
        self.__his_vel = []
        self.__his_acc = []
三月三net's avatar
三月三net 已提交
47
        self.__his_reserved_num = 200
三月三net's avatar
三月三net 已提交
48
        # 是否忽略质量(如果为True,则不计算引力)
三月三net's avatar
三月三net 已提交
49
        self.ignore_mass = ignore_mass
M
march3 已提交
50

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

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

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

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

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

        self.__density = density
三月三net's avatar
三月三net 已提交
67
        self.__rotation_speed = rotation_speed
M
march3 已提交
68 69

        self.color = color
三月三net's avatar
三月三net 已提交
70
        self.trail_color = color if trail_color is None else trail_color
M
march3 已提交
71 72 73 74 75 76
        self.texture = texture

        self.size_scale = size_scale
        self.distance_scale = distance_scale

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

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

三月三net's avatar
三月三net 已提交
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 120 121
    @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 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135
    @property
    def has_rings(self):
        """
        是否为带光环的天体(土星为 True)
        :return:
        """
        return False

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

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

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

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

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

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

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

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

    def __append_history(self, his_list, data):
M
march3 已提交
197
        """
M
march3 已提交
198
        追加每个位置时刻的历史数据
M
march3 已提交
199 200 201 202 203 204 205 206 207
        :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 已提交
208
    def __record_history(self):
M
march3 已提交
209
        """
M
march3 已提交
210
        记录每个位置时刻的历史数据
M
march3 已提交
211 212 213 214
        :return:
        """
        # 如果历史记录数超过了保留数量,则截断,只保留 __his_reserved_num 数量的历史
        if len(self.__his_pos) > self.__his_reserved_num:
M
march3 已提交
215 216 217
            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 已提交
218 219

        # 追加历史记录(位置、速度、加速度)
M
march3 已提交
220 221 222 223
        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 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

    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 已提交
249
        天体质量 (单位:kg)
M
march3 已提交
250 251 252 253
        :return:
        """
        return self.__mass

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

三月三net's avatar
三月三net 已提交
262 263 264 265 266 267 268 269
    @rotation_speed.setter
    def rotation_speed(self, value):
        """
        自旋速度(度/小时)
        :return:
        """
        self.__rotation_speed = value

M
march3 已提交
270 271 272
    @property
    def density(self):
        """
M
march3 已提交
273
        平均密度 (单位:kg/m³)
M
march3 已提交
274 275 276 277 278 279 280
        :return:
        """
        return self.__density

    @property
    def volume(self):
        """
M
march3 已提交
281
        天体的体积(单位:km³)
M
march3 已提交
282 283 284
        """
        # v = m/ρ
        # 体积(m³) = 质量(kg) / 密度(kg/m³)
M
march3 已提交
285 286
        # 体积(km³) = 体积(m³)  / 1e9
        v = self.mass / self.density / 1e9
M
march3 已提交
287 288 289 290 291
        return v

    @property
    def raduis(self):
        """
M
march3 已提交
292
        天体的半径(单位:km)
M
march3 已提交
293 294 295 296 297 298 299 300
        :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 已提交
301
        天体的直径(单位:km)
M
march3 已提交
302 303 304 305 306
        :return:
        """
        return self.raduis * 2

    def __repr__(self):
三月三net's avatar
三月三net 已提交
307 308
        return '<%s(%s)> m=%.3e(kg), r|d=%.3e|%.3e(km), v=%.3e(km³), d=%.3e(kg/m³), p=[%.3e,%.3e,%.3e](km), v=%s(km/s)' % \
               (self.name,self.__class__.__name__, self.mass, self.raduis, self.diameter, self.volume, self.density,
M
march3 已提交
309 310
                self.position[0], self.position[1], self.position[2], self.velocity)

M
march3 已提交
311 312 313 314 315 316 317 318 319
    def ignore_gravity(self, body):
        """
        是否忽略引力
        :param body:
        :return:
        """

        return False

M
march3 已提交
320
    def position_au(self):
M
march3 已提交
321 322 323 324
        """
        获取天体的位置(单位:天文单位 A.U.)
        :return:
        """
M
march3 已提交
325 326 327 328
        pos = self.position
        pos_au = pos / AU
        return pos_au

M
march3 已提交
329 330 331 332 333
    # def change_velocity(self, dv):
    #     self.velocity += dv
    #
    # def move(self, dt):
    #     self.position += self.velocity * dt
M
march3 已提交
334 335

    def reset(self):
M
march3 已提交
336 337 338 339
        """
        重新设置初始速度和初始位置
        :return:
        """
三月三net's avatar
三月三net 已提交
340 341
        self.position = copy.deepcopy(self.init_position)
        self.velocity = copy.deepcopy(self.init_velocity)
M
march3 已提交
342

M
march3 已提交
343 344 345 346 347 348 349 350 351 352
    # 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 已提交
353 354 355

    @staticmethod
    def build_bodies_from_json(json_file):
M
march3 已提交
356 357 358 359 360
        """
        JSON文件转为天体对象
        :param json_file:
        :return:
        """
M
march3 已提交
361
        bodies = []
三月三net's avatar
三月三net 已提交
362
        params = {}
三月三net's avatar
三月三net 已提交
363
        from bodies import FixedStar
三月三net's avatar
三月三net 已提交
364
        with open(json_file, "r", encoding='utf-8') as read_content:
M
march3 已提交
365 366
            json_data = json.load(read_content)
            for body_data in json_data["bodies"]:
三月三net's avatar
三月三net 已提交
367 368 369 370 371
                try:
                    body_data = Body.exp(body_data)  # print(body_data)
                except Exception as e:
                    err_msg = f"{json_file} 格式错误:" + str(e)
                    raise Exception(err_msg)
三月三net's avatar
三月三net 已提交
372 373 374 375 376 377
                if "is_fixed_star" in body_data:
                    if body_data["is_fixed_star"]:
                        body_data.pop("is_fixed_star")
                        body = FixedStar(**body_data)
                else:
                    body = FixedStar(**body_data)
M
march3 已提交
378
                bodies.append(body)
三月三net's avatar
三月三net 已提交
379 380
            if "params" in json_data:
                params = json_data["params"]
M
march3 已提交
381
                # print(body.position_au())
三月三net's avatar
三月三net 已提交
382
        return bodies, params
M
march3 已提交
383

三月三net's avatar
三月三net 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
    @staticmethod
    def exp(body_data):
        """
        进行表达式分析,将表达式改为eval执行后的结果
        :param body_data:
        :return:
        """
        #
        for k in body_data.keys():
            v = body_data[k]
            if isinstance(v, str):
                if v.startswith("$exp:"):
                    exp = v[5:]
                    body_data[k] = eval(exp)
            elif isinstance(v, list):
三月三net's avatar
三月三net 已提交
399
                for idx, item in enumerate(v):
三月三net's avatar
三月三net 已提交
400 401 402 403 404 405 406
                    if isinstance(item, str):
                        if item.startswith("$exp:"):
                            exp = item[5:]
                            v[idx] = eval(exp)

        return body_data

M
march3 已提交
407 408 409

if __name__ == '__main__':
    # build_bodies_from_json('../data/sun.json')
三月三net's avatar
三月三net 已提交
410
    bodies, params = Body.build_bodies_from_json('../data/sun_earth.json')
M
march3 已提交
411
    # 太阳半径 / 地球半径
M
march3 已提交
412
    print("太阳半径 / 地球半径 =", bodies[0].raduis / bodies[1].raduis)
三月三net's avatar
三月三net 已提交
413
    print("params:", params)
M
march3 已提交
414
    for body in bodies:
M
march3 已提交
415
        print(body)