Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Python_超人
太阳系三体模拟器
提交
d3ac3ff8
太阳系三体模拟器
项目概览
Python_超人
/
太阳系三体模拟器
通知
1074
Star
131
Fork
128
代码
文件
提交
分支
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看板
提交
d3ac3ff8
编写于
3月 16, 2023
作者:
三月三net
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
太阳系三体模拟器
上级
09817f55
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
15 addition
and
5 deletion
+15
-5
scenes/solar_system_2.py
scenes/solar_system_2.py
+1
-1
simulators/mpl_simulator.py
simulators/mpl_simulator.py
+5
-1
simulators/views/mayavi_view.py
simulators/views/mayavi_view.py
+5
-1
simulators/views/mpl_view.py
simulators/views/mpl_view.py
+4
-2
未找到文件。
scenes/solar_system_2.py
浏览文件 @
d3ac3ff8
...
...
@@ -28,7 +28,7 @@ if __name__ == '__main__':
Mercury
(
size_scale
=
4e3
,
distance_scale
=
1.3
),
# 水星放大 4000 倍,距离放大 1.3 倍
Venus
(
size_scale
=
4e3
,
distance_scale
=
1.3
),
# 金星放大 4000 倍,距离放大 1.3 倍
Earth
(
size_scale
=
4e3
,
distance_scale
=
1.3
),
# 地球放大 4000 倍,距离放大 1.3 倍
Asteroids
(
size_scale
=
3e2
,
parent
=
sun
),
# 小行星模拟
Asteroids
(
size_scale
=
3e2
,
parent
=
sun
),
# 小行星模拟
(仅 ursina 模拟器支持)
Mars
(
size_scale
=
4e3
,
distance_scale
=
1.3
),
# 火星放大 4000 倍,距离放大 1.3 倍
Jupiter
(
size_scale
=
0.68e3
,
distance_scale
=
0.65
),
# 木星放大 680 倍,距离缩小到真实距离的 0.65
Saturn
(
size_scale
=
0.68e3
,
distance_scale
=
0.52
),
# 土星放大 680 倍,距离缩小到真实距离的 0.52
...
...
simulators/mpl_simulator.py
浏览文件 @
d3ac3ff8
...
...
@@ -94,6 +94,10 @@ class MplSimulator(Simulator):
update_ax
(
ax
,
styles
)
for
idx
,
body
in
enumerate
(
bodies
):
if
hasattr
(
body
,
"torus_stars"
):
# 暂不支持环状小行星群
continue
if
body
.
is_fixed_star
:
color
=
'red'
else
:
...
...
@@ -116,7 +120,7 @@ class MplSimulator(Simulator):
ax
.
plot3D
(
_his_pos
[
0
],
_his_pos
[
1
],
_his_pos
[
2
],
color
=
color
,
alpha
=
0.5
)
z_range
=
ax
.
get_zlim
()[
1
]
-
ax
.
get_zlim
()[
0
]
ax
.
text
(
pos
[
0
],
pos
[
1
],
pos
[
2
]
+
size
*
(
z_range
/
5000
),
s
=
body
.
name
,
color
=
color
,
fontsize
=
12
)
ax
.
text
(
pos
[
0
],
pos
[
1
],
pos
[
2
]
+
size
*
(
z_range
/
5000
),
s
=
body
.
name
,
color
=
color
,
fontsize
=
12
)
if
pause
>
0
:
plt
.
pause
(
pause
)
...
...
simulators/views/mayavi_view.py
浏览文件 @
d3ac3ff8
...
...
@@ -85,6 +85,10 @@ class MayaviView(BodyView):
天体显示的操作,比如:构建天体视图对象
:return:
"""
if
hasattr
(
self
.
body
,
"torus_stars"
):
# 暂不支持环状小行星群
return
if
not
hasattr
(
self
,
"sphere"
)
or
self
.
sphere
is
None
:
scale_factor
=
self
.
body
.
size_scale
*
self
.
body
.
diameter
sphere
=
mlab
.
points3d
(
self
.
body
.
position
[
0
],
self
.
body
.
position
[
1
],
self
.
body
.
position
[
2
],
...
...
@@ -130,7 +134,7 @@ class MayaviView(BodyView):
:param image_file:
:return:
"""
outfile
=
image_file
.
replace
(
'.jpg'
,
'_flipped.jpg'
)
outfile
=
image_file
.
replace
(
'.jpg'
,
'_flipped.jpg'
)
.
replace
(
'.png'
,
'_flipped.jpg'
)
if
os
.
path
.
exists
(
outfile
):
image_file
=
outfile
else
:
...
...
simulators/views/mpl_view.py
浏览文件 @
d3ac3ff8
...
...
@@ -23,7 +23,9 @@ class MplView(BodyView):
pass
def
appear
(
self
):
pass
if
hasattr
(
self
.
body
,
"torus_stars"
):
# 暂不支持环状小行星群
return
def
disappear
(
self
):
pass
\ No newline at end of file
pass
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录