diff --git a/sim_scenes/earth/earth_satellites.py b/sim_scenes/earth/earth_satellites.py index 566e37cb67611c51afe6e44f5712a8774e4552ca..ed0116d565543c5bc31bf12b4de42746470d26b3 100644 --- a/sim_scenes/earth/earth_satellites.py +++ b/sim_scenes/earth/earth_satellites.py @@ -1,8 +1,8 @@ # -*- coding:utf-8 -*- -# title :地月场景模拟 -# description :地月场景模拟 +# title :地球和卫星模拟 +# description :地球和卫星模拟 # author :Python超人 -# date :2023-02-11 +# date :2023-04-09 # link :https://gitcode.net/pythoncr/ # python_version :3.8 # ============================================================================== diff --git a/sim_scenes/science/gravity_slingshot_2.py b/sim_scenes/science/gravity_slingshot_2.py index 85793183cb1f6f9a7fdd473fab8af447f29645cd..903ca8ffd3c098ab95d3999962232874af5739d1 100644 --- a/sim_scenes/science/gravity_slingshot_2.py +++ b/sim_scenes/science/gravity_slingshot_2.py @@ -1,6 +1,6 @@ # -*- coding:utf-8 -*- -# title :模拟流浪地球通过木星、土星加速 -# description :模拟流浪地球通过木星、土星加速 +# title :引力弹弓模拟演示2(模拟流浪地球通过木星、土星加速) +# description :引力弹弓模拟演示2(模拟流浪地球通过木星、土星加速) # author :Python超人 # date :2023-02-11 # link :https://gitcode.net/pythoncr/ @@ -13,7 +13,7 @@ from bodies.body import AU if __name__ == '__main__': """ - 模拟流浪地球通过木星、土星加速 + 引力弹弓模拟演示2(模拟流浪地球通过木星、土星加速) """ # params 为不同参数量的加速效果,j_pos为木星位置;s_pos为土星位置;e_vel为地球初始速度 # 地球初始速度≈36km/s,通过木星加速到 42.43km/s(加速度为0时的速度),再通过土星加速到 108.64km/s(加速度为0时的速度) diff --git a/sim_scenes/science/parabolic_curve.py b/sim_scenes/science/parabolic_curve.py index 6fbe248d1de9251d49d33c08f7c29065333224a9..7fe9563afd929ae878a4d77d01b6290799b005b7 100644 --- a/sim_scenes/science/parabolic_curve.py +++ b/sim_scenes/science/parabolic_curve.py @@ -2,7 +2,7 @@ # title :抛物线模拟 # description :抛物线模拟 # author :Python超人 -# date :2023-02-11 +# date :2023-04-09 # link :https://gitcode.net/pythoncr/ # python_version :3.8 # ============================================================================== diff --git a/sim_scenes/solar_system/earth_clouds.py b/sim_scenes/solar_system/earth_clouds.py index ff09eabf28efe1a27d778cad8fe60d2d4de4198a..f27f6c53a7a870ba8dfb9f6197ef271ebcb27bd5 100644 --- a/sim_scenes/solar_system/earth_clouds.py +++ b/sim_scenes/solar_system/earth_clouds.py @@ -2,7 +2,7 @@ # title :带有云层地球模拟 # description :带有云层地球模拟 # author :Python超人 -# date :2023-02-11 +# date :2023-04-09 # link :https://gitcode.net/pythoncr/ # python_version :3.8 # ============================================================================== diff --git a/sim_scenes/solar_system/solar_system_4.py b/sim_scenes/solar_system/solar_system_4.py index 4c8b8479b7f686a5f896191ef92ddbc35a412bea..d6608018ebee7c743f191489a4b922ccf76bf5d3 100644 --- a/sim_scenes/solar_system/solar_system_4.py +++ b/sim_scenes/solar_system/solar_system_4.py @@ -1,6 +1,6 @@ # -*- coding:utf-8 -*- -# title :太阳系场景模拟(展示用) -# description :太阳系场景模拟(为了更好的展示效果,对距离进行的调整,不是太阳系的真实距离) +# title :太阳系场景模拟4(展示用) +# description :太阳系场景模拟4(为了更好的展示效果,对距离进行的调整,不是太阳系的真实距离) # author :Python超人 # date :2023-02-11 # link :https://gitcode.net/pythoncr/