Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Python_超人
宇宙模拟器
提交
455a9e64
宇宙模拟器
项目概览
Python_超人
/
宇宙模拟器
通知
19
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
宇宙模拟器
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
455a9e64
编写于
4月 26, 2023
作者:
三月三net
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Python超人-宇宙模拟器
上级
bfd2c270
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
146 addition
and
1 deletion
+146
-1
sim_scenes/science/lagrangian_points_1.py
sim_scenes/science/lagrangian_points_1.py
+145
-0
sim_scenes/science/lagrangian_points_2.py
sim_scenes/science/lagrangian_points_2.py
+1
-1
未找到文件。
sim_scenes/science/lagrangian_points_1.py
0 → 100644
浏览文件 @
455a9e64
# -*- coding:utf-8 -*-
# title :拉格朗日点模拟
# description :拉格朗日点模拟
# author :Python超人
# date :2023-02-11
# link :https://gitcode.net/pythoncr/
# python_version :3.8
# ==============================================================================
from
bodies
import
Body
,
Sun
,
Earth
,
Moon
from
objs
import
Obj
,
Satellite
,
Satellite2
from
common.consts
import
SECONDS_PER_HOUR
,
SECONDS_PER_DAY
,
SECONDS_PER_WEEK
,
SECONDS_PER_MONTH
from
sim_scenes.func
import
ursina_run
,
camera_look_at
from
simulators.ursina.entities.body_timer
import
TimeData
from
simulators.ursina.entities.entity_utils
import
create_directional_light
from
simulators.ursina.ursina_event
import
UrsinaEvent
from
simulators.ursina.ursina_mesh
import
create_line
import
math
bodies
=
[
Earth
(
init_position
=
[
0
,
0
,
0
],
texture
=
"earth_hd.jpg"
,
init_velocity
=
[
0
,
0
,
0
],
size_scale
=
0.5e1
),
# 地球放大 5 倍,距离保持不变
Moon
(
init_position
=
[
0
,
0
,
363104
],
# 距地距离约: 363104 至 405696 km
init_velocity
=
[
-
1.054152222
,
0
,
0
],
size_scale
=
1e1
)
# 月球放大 10 倍,距离保持不变
]
earth
=
bodies
[
0
]
moon
=
bodies
[
1
]
def
get_lagrangian_points
(
m1
,
m2
,
r
):
"""
@param m1: 大质量
@param m2: 小质量
@param r: 半径
@return:
"""
a
=
m2
/
(
m1
+
m2
)
l1
=
(
0
,
0
,
r
*
(
1
-
pow
(
a
/
3
,
1
/
3
)))
l2
=
(
0
,
0
,
r
*
(
1
+
pow
(
a
/
3
,
1
/
3
)))
l3
=
(
0
,
0
,
-
r
*
(
1
+
(
5
*
a
)
/
12
))
l4
=
(
pow
(
3
,
1
/
2
)
/
2
*
r
,
0
,
(
r
/
2
)
*
((
m1
-
m2
)
/
(
m1
+
m2
)))
l5
=
(
-
pow
(
3
,
1
/
2
)
/
2
*
r
,
0
,
(
r
/
2
)
*
((
m1
-
m2
)
/
(
m1
+
m2
)))
return
l1
,
l2
,
l3
,
l4
,
l5
# 计算地月拉格朗日点
L1_p
,
L2_p
,
L3_p
,
L4_p
,
L5_p
=
get_lagrangian_points
(
earth
.
mass
,
moon
.
mass
,
363104
)
def
create_satellite
(
name
,
init_position
,
init_velocity
):
"""
在 L1, L2, L3, L4, L5 创建卫星
@param name:
@param init_position:
@param init_velocity:
@return:
"""
satellite
=
Satellite
(
name
=
name
,
mass
=
1.4e10
,
size_scale
=
4e3
,
color
=
(
255
,
200
,
0
),
init_position
=
init_position
,
init_velocity
=
init_velocity
,
gravity_only_for
=
[
earth
,
moon
])
return
satellite
# L1:point=[0,0,308536.70059015526] velocity=[-0.890136271716, 0, 0]
satelliteL1
=
create_satellite
(
name
=
f
'卫星L1'
,
init_position
=
L1_p
,
init_velocity
=
[
-
0.890136271716
,
0
,
0
])
bodies
.
append
(
satelliteL1
)
# L2:point=[0,0, 423338.5083198447] velocity=[-1.24, 0, 0]
satelliteL2
=
create_satellite
(
name
=
f
'卫星L2'
,
init_position
=
L2_p
,
init_velocity
=
[
-
1.24
,
0
,
0
])
bodies
.
append
(
satelliteL2
)
vel_L345
=
1.048
# L3:point=[0,0, -364941.3043941873] velocity=[1.039 , 0, 0]
satelliteL3
=
create_satellite
(
name
=
f
'卫星L3'
,
init_position
=
L3_p
,
init_velocity
=
[
vel_L345
,
0
,
0
])
bodies
.
append
(
satelliteL3
)
# L4:point=[0,0, 177142.46945395062] velocity=[1.039 , 0, 0]
satelliteL4
=
create_satellite
(
name
=
f
'卫星L4'
,
init_position
=
L4_p
,
init_velocity
=
[
-
math
.
sin
(
math
.
pi
*
30
/
180
)
*
vel_L345
,
0
,
math
.
cos
(
math
.
pi
*
30
/
180
)
*
vel_L345
])
bodies
.
append
(
satelliteL4
)
# L5:point=[0,0, 177142.46945395062] velocity=[1.039 , 0, 0]
satelliteL5
=
create_satellite
(
name
=
f
'卫星L5'
,
init_position
=
L5_p
,
init_velocity
=
[
-
math
.
sin
(
math
.
pi
*
30
/
180
)
*
vel_L345
,
0
,
-
math
.
cos
(
math
.
pi
*
30
/
180
)
*
vel_L345
])
bodies
.
append
(
satelliteL5
)
def
create_connecting_lines
(
satellites_list
):
"""
创建连接线(将卫星列表用线条连接起来)
@param satellites_list:
@return:
"""
lines
=
[]
for
satellites
in
satellites_list
:
line
=
create_line
(
from_pos
=
satellites
[
0
].
planet
.
position
,
to_pos
=
satellites
[
1
].
planet
.
position
,
alpha
=
0.3
)
lines
.
append
(
line
)
return
lines
if
__name__
==
'__main__'
:
def
on_ready
():
# 运行前触发
# 摄像机看向地球
camera_look_at
(
earth
)
def
on_timer_changed
(
time_data
:
TimeData
):
# 删除和创建连接线
from
ursina
import
destroy
if
hasattr
(
earth
,
"lines"
):
for
line
in
earth
.
lines
:
destroy
(
line
)
earth
.
lines
=
create_connecting_lines
([
[
satelliteL2
,
satelliteL3
],
[
satelliteL4
,
satelliteL1
],
[
satelliteL5
,
satelliteL1
],
[
satelliteL4
,
satelliteL2
],
[
satelliteL5
,
satelliteL2
],
[
satelliteL4
,
satelliteL3
],
[
satelliteL5
,
satelliteL3
],
])
# 订阅事件后,上面的函数功能才会起作用
# 运行前会触发 on_ready
UrsinaEvent
.
on_ready_subscription
(
on_ready
)
# 运行中,每时每刻都会触发 on_timer_changed
UrsinaEvent
.
on_timer_changed_subscription
(
on_timer_changed
)
# 使用 ursina 查看的运行效果
# 常用快捷键: P:运行和暂停 O:重新开始 I:显示天体轨迹
# position = 左-右+、上+下-、前+后-
ursina_run
(
bodies
,
SECONDS_PER_HOUR
*
5
,
# position=(-300000, 1500000, -100),
position
=
(
0
,
1500000
,
0
),
show_timer
=
True
,
# show_trail=True
)
sim_scenes/science/lagrangian_points.py
→
sim_scenes/science/lagrangian_points
_2
.py
浏览文件 @
455a9e64
...
@@ -120,7 +120,7 @@ if __name__ == '__main__':
...
@@ -120,7 +120,7 @@ if __name__ == '__main__':
# position = 左-右+、上+下-、前+后-
# position = 左-右+、上+下-、前+后-
ursina_run
(
bodies
,
SECONDS_PER_HOUR
*
5
,
ursina_run
(
bodies
,
SECONDS_PER_HOUR
*
5
,
# position=(-300000, 1500000, -100),
# position=(-300000, 1500000, -100),
position
=
(
0
,
1500000
,
0
),
position
=
(
0
,
1500000
,
0
),
show_timer
=
True
,
show_timer
=
True
,
# show_trail=True
# show_trail=True
)
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录