Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Python_超人
宇宙模拟器
提交
1a6b7807
宇宙模拟器
项目概览
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看板
提交
1a6b7807
编写于
6月 29, 2023
作者:
三月三net
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Python超人-宇宙模拟器
上级
750cbb44
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
15 deletion
+12
-15
bodies/habitable_zone.py
bodies/habitable_zone.py
+1
-1
sim_scenes/solar_system/solar_system_habitable_zone.py
sim_scenes/solar_system/solar_system_habitable_zone.py
+11
-14
未找到文件。
bodies/habitable_zone.py
浏览文件 @
1a6b7807
...
@@ -21,7 +21,7 @@ class HabitableZone(Body):
...
@@ -21,7 +21,7 @@ class HabitableZone(Body):
init_velocity
=
[
0
,
0
,
0
],
init_velocity
=
[
0
,
0
,
0
],
texture
=
"green_alpha_1.png"
,
size_scale
=
1.0
,
texture
=
"green_alpha_1.png"
,
size_scale
=
1.0
,
distance_scale
=
1.0
,
distance_scale
=
1.0
,
rotation_speed
=
0
.1
,
rotation_speed
=
0
,
parent
=
None
):
parent
=
None
):
params
=
{
params
=
{
"name"
:
name
,
"name"
:
name
,
...
...
sim_scenes/solar_system/solar_system_habitable_zone.py
浏览文件 @
1a6b7807
...
@@ -22,9 +22,9 @@ if __name__ == '__main__':
...
@@ -22,9 +22,9 @@ if __name__ == '__main__':
# 其宽度约为2.17亿千米, 按照这个标准,太阳系的宜居带中只有三个大型天体,分别是地球、 月球 以及火星(1.52天文单位)。
# 其宽度约为2.17亿千米, 按照这个标准,太阳系的宜居带中只有三个大型天体,分别是地球、 月球 以及火星(1.52天文单位)。
sun
=
Sun
(
name
=
"太阳"
,
size_scale
=
0.5e2
)
# 太阳放大 80 倍,距离保持不变
sun
=
Sun
(
name
=
"太阳"
,
size_scale
=
0.5e2
)
# 太阳放大 80 倍,距离保持不变
earth
=
Earth
(
name
=
"地球"
,
size_scale
=
1.5e3
)
# 地球放大 1500 倍,距离保持不变
earth
=
Earth
(
name
=
"地球"
,
size_scale
=
1.5e3
)
# 地球放大 1500 倍,距离保持不变
moon_d
=
20000000
earth_moon_d
=
20000000
# 因为地球放大 1500 倍,为了较好的效果,地月距离要比实际大才行
moon
=
Moon
(
name
=
"月球"
,
size_scale
=
1.5e3
,
moon
=
Moon
(
name
=
"月球"
,
size_scale
=
1.5e3
,
init_position
=
[
moon_d
,
0
,
AU
],
init_position
=
[
earth_
moon_d
,
0
,
AU
],
init_velocity
=
[
0
,
0
,
0
],
init_velocity
=
[
0
,
0
,
0
],
ignore_mass
=
True
,
ignore_mass
=
True
,
# gravity_only_for_earth=True
# gravity_only_for_earth=True
...
@@ -33,34 +33,31 @@ if __name__ == '__main__':
...
@@ -33,34 +33,31 @@ if __name__ == '__main__':
sun
,
sun
,
Venus
(
name
=
"金星"
,
size_scale
=
1.5e3
),
# 金星放大 1500 倍,距离保持不变
Venus
(
name
=
"金星"
,
size_scale
=
1.5e3
),
# 金星放大 1500 倍,距离保持不变
earth
,
moon
,
earth
,
moon
,
# Moon(name="月球", size_scale=2e3,
# # init_position=[0, 0, 363104 + 1.12 * AU],
# # init_velocity=[-(29.79 + 1.03), 0, 0]
# init_position=[15000000, 0, AU],
# init_velocity=[-32.79, 0, 2.03], gravity_only_for_earth=True
# ), # 月球放大 2000 倍,距离保持不变
Mars
(
name
=
"火星"
,
size_scale
=
2e3
),
# 火星放大 2000 倍,距离保持不变
Mars
(
name
=
"火星"
,
size_scale
=
2e3
),
# 火星放大 2000 倍,距离保持不变
Asteroids
(
name
=
"小行星群"
,
size_scale
=
3.2e2
,
Asteroids
(
name
=
"小行星群"
,
size_scale
=
3.2e2
,
parent
=
sun
),
# 小行星群模拟(仅 ursina 模拟器支持)
parent
=
sun
),
# 小行星群模拟(仅 ursina 模拟器支持)
HabitableZone
(
name
=
"宜居带"
,
size_scale
=
1
e2
,
HabitableZone
(
name
=
"宜居带"
,
size_scale
=
0.9
e2
,
parent
=
sun
),
# 宜居带模拟(仅 ursina 模拟器支持)
parent
=
sun
),
# 宜居带模拟(仅 ursina 模拟器支持)
Jupiter
(
name
=
"木星"
,
size_scale
=
2e2
),
# 木星放大 200 倍,距离保持不变
Jupiter
(
name
=
"木星"
,
size_scale
=
2e2
),
# 木星放大 200 倍,距离保持不变
]
]
def
on_ready
():
def
on_ready
():
# UrsinaConfig.trail_length = 1000
pass
pass
def
on_timer_changed
(
time_data
:
TimeData
):
def
on_timer_changed
(
time_data
:
TimeData
):
# 1个月有多少天
# 1个月有多少天
days_per_month
=
365
/
12
# 360度
days_per_month
=
27.323
# 1天多少角度
# 1天多少角度
angle_per_day
=
days_per_month
/
360
angle_per_day
=
360
/
days_per_month
# 当前的角度(度)
angle
=
time_data
.
total_days
*
angle_per_day
angle
=
time_data
.
total_days
*
angle_per_day
angle
=
angle
*
np
.
pi
# 当前的角度(弧度)
px
=
moon_d
*
np
.
cos
(
angle
)
angle
=
angle
*
np
.
pi
/
180
pz
=
moon_d
*
np
.
sin
(
angle
)
px
=
earth_moon_d
*
np
.
cos
(
angle
)
pz
=
earth_moon_d
*
np
.
sin
(
angle
)
moon
.
position
=
[
earth
.
position
[
0
]
+
px
,
0
,
earth
.
position
[
2
]
+
pz
]
moon
.
position
=
[
earth
.
position
[
0
]
+
px
,
0
,
earth
.
position
[
2
]
+
pz
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录